From f2c08a6e8f8e4f56cb492a1cfe89011018bbd985 Mon Sep 17 00:00:00 2001 From: LucasLvy Date: Thu, 19 Sep 2024 14:39:24 +0200 Subject: [PATCH] feat(grammar): add range --- grammar.js | 38 +- src/grammar.json | 84 +- src/node-types.json | 87 +- src/parser.c | 82400 +++++++++++++++++++++--------------------- 4 files changed, 42178 insertions(+), 40431 deletions(-) diff --git a/grammar.js b/grammar.js index d83b3ef..80fd818 100644 --- a/grammar.js +++ b/grammar.js @@ -12,6 +12,7 @@ const PREC = { comparative: 4, and: 3, or: 2, + range: 1, assign: 0, closure: -1, }; @@ -95,6 +96,7 @@ module.exports = grammar({ ], supertypes: ($) => [ $.expression, + $.expression_except_range, $._type, $._literal, $._literal_pattern, @@ -587,11 +589,29 @@ module.exports = grammar({ $.slice_pattern, $.macro_invocation, $.tuple_enum_pattern, + $.range_pattern, '_', ), // for example in let (a, b) = c; it would be `(a, b)` tuple_pattern: ($) => seq('(', sepBy(',', choice($._pattern, $.closure_expression)), optional(','), ')'), + range_pattern: $ => seq( + choice( + $._literal_pattern, + $._path, + ), + choice( + seq( + '..', + choice( + $._literal_pattern, + $._path, + ), + ), + '..', + ), + ), + // for example in let [a, b] = c; it would be `[a, b]` slice_pattern: ($) => seq('[', sepBy(',', $._pattern), optional(','), ']'), @@ -780,7 +800,13 @@ module.exports = grammar({ expression_statement: ($) => choice(seq($.expression, ';'), prec(1, $._expression_ending_with_block)), - expression: ($) => + + expression: $ => choice( + $.expression_except_range, + $.range_expression, + ), + + expression_except_range: ($) => choice( prec.left($.identifier), alias(choice(...primitiveTypes), $.identifier), @@ -918,6 +944,14 @@ module.exports = grammar({ unary_expression: ($) => prec(PREC.unary, seq(choice('-', '*', '!', '~', '@'), $.expression)), + range_expression: $ => prec.left(PREC.range, choice( + seq($.expression, '..', $.expression), + seq($.expression, '..'), + seq('..', $.expression), + '..', + )), + + // for example in let a = try_smth?; it would be `try_smth?` try_expression: ($) => prec(PREC.try, seq($.expression, '?')), @@ -1106,7 +1140,7 @@ module.exports = grammar({ call_expression: ($) => prec( PREC.call, - seq(field('function', $.expression), field('arguments', $.arguments)), + seq(field('function', $.expression_except_range), field('arguments', $.arguments)), ), // for example in foo(a, b, c) it would be `(a, b, c)` arguments: ($) => diff --git a/src/grammar.json b/src/grammar.json index 65e1382..9188444 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3921,6 +3921,19 @@ ] }, "expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression_except_range" + }, + { + "type": "SYMBOL", + "name": "range_expression" + } + ] + }, + "expression_except_range": { "type": "CHOICE", "members": [ { @@ -4638,6 +4651,62 @@ ] } }, + "range_expression": { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ".." + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "STRING", + "value": ".." + } + ] + } + }, "try_expression": { "type": "PREC", "value": 13, @@ -5178,18 +5247,6 @@ "content": { "type": "SEQ", "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "static" - }, - { - "type": "BLANK" - } - ] - }, { "type": "CHOICE", "members": [ @@ -5777,7 +5834,7 @@ "name": "function", "content": { "type": "SYMBOL", - "name": "expression" + "name": "expression_except_range" } }, { @@ -6144,6 +6201,7 @@ ], "supertypes": [ "expression", + "expression_except_range", "_type", "_literal", "_literal_pattern", diff --git a/src/node-types.json b/src/node-types.json index 6c7d7f3..07d4670 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -228,6 +228,20 @@ { "type": "expression", "named": true, + "subtypes": [ + { + "type": "expression_except_range", + "named": true + }, + { + "type": "range_expression", + "named": true + } + ] + }, + { + "type": "expression_except_range", + "named": true, "subtypes": [ { "type": "_literal", @@ -744,7 +758,7 @@ "required": true, "types": [ { - "type": "expression", + "type": "expression_except_range", "named": true } ] @@ -763,6 +777,10 @@ "type": "_", "named": false }, + { + "type": "block", + "named": true + }, { "type": "expression", "named": true @@ -1133,9 +1151,33 @@ "multiple": false, "required": true, "types": [ + { + "type": "block", + "named": true + }, { "type": "expression", "named": true + }, + { + "type": "for_expression", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "loop_expression", + "named": true + }, + { + "type": "match_expression", + "named": true + }, + { + "type": "while_expression", + "named": true } ] } @@ -1911,9 +1953,33 @@ "multiple": false, "required": true, "types": [ + { + "type": "block", + "named": true + }, { "type": "expression", "named": true + }, + { + "type": "for_expression", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "loop_expression", + "named": true + }, + { + "type": "match_expression", + "named": true + }, + { + "type": "while_expression", + "named": true } ] } @@ -2070,6 +2136,10 @@ { "type": "expression", "named": true + }, + { + "type": "identifier", + "named": true } ] } @@ -2187,6 +2257,21 @@ ] } }, + { + "type": "range_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, { "type": "ref_specifier", "named": true, diff --git a/src/parser.c b/src/parser.c index a9d6357..e2d3ad2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1748 -#define LARGE_STATE_COUNT 234 -#define SYMBOL_COUNT 239 +#define STATE_COUNT 1755 +#define LARGE_STATE_COUNT 245 +#define SYMBOL_COUNT 241 #define ALIAS_COUNT 4 #define TOKEN_COUNT 106 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 130 +#define PRODUCTION_ID_COUNT 128 enum ts_symbol_identifiers { anon_sym_LBRACE = 1, @@ -198,74 +198,76 @@ enum ts_symbol_identifiers { sym_type_arguments = 172, sym_expression_statement = 173, sym_expression = 174, - sym_generic_function = 175, - sym_tuple_expression = 176, - sym_return_expression = 177, - sym_struct_expression = 178, - sym_assignment_expression = 179, - sym_break_expression = 180, - sym_continue_expression = 181, - sym_index_expression = 182, - sym_array_expression = 183, - sym_parenthesized_expression = 184, - sym_unit_expression = 185, - sym_compound_assignment_expr = 186, - sym__expression_ending_with_block = 187, - sym_unary_expression = 188, - sym_try_expression = 189, - sym_field_expression = 190, - sym_block = 191, - sym_if_expression = 192, - sym__condition = 193, - sym_let_condition = 194, - sym_else_clause = 195, - sym_match_expression = 196, - sym_match_block = 197, - sym_match_arm = 198, - sym_last_match_arm = 199, - sym_tuple_enum_pattern = 200, - sym_match_pattern = 201, - sym_while_expression = 202, - sym_closure_expression = 203, - sym_closure_parameters = 204, - sym_for_expression = 205, - sym_loop_expression = 206, - sym_binary_expression = 207, - sym_snapshot_type = 208, - sym_call_expression = 209, - sym_arguments = 210, - sym_named_argument = 211, - sym_reference_expression = 212, - sym_visibility_modifier = 213, - sym_extern = 214, - sym_nopanic = 215, - sym_ref_specifier = 216, - aux_sym_source_file_repeat1 = 217, - aux_sym_declaration_list_repeat1 = 218, - aux_sym_enum_variant_list_repeat1 = 219, - aux_sym_enum_variant_list_repeat2 = 220, - aux_sym_field_declaration_list_repeat1 = 221, - aux_sym_function_repeat1 = 222, - aux_sym_use_list_repeat1 = 223, - aux_sym_parameters_repeat1 = 224, - aux_sym_type_parameters_repeat1 = 225, - aux_sym_delim_token_tree_repeat1 = 226, - aux_sym__non_special_token_repeat1 = 227, - aux_sym_tuple_pattern_repeat1 = 228, - aux_sym_slice_pattern_repeat1 = 229, - aux_sym_struct_pattern_repeat1 = 230, - aux_sym_field_initializer_list_repeat1 = 231, - aux_sym_type_arguments_repeat1 = 232, - aux_sym_tuple_expression_repeat1 = 233, - aux_sym_array_expression_repeat1 = 234, - aux_sym_match_block_repeat1 = 235, - aux_sym_match_arm_repeat1 = 236, - aux_sym_closure_parameters_repeat1 = 237, - aux_sym_arguments_repeat1 = 238, - alias_sym_field_identifier = 239, - alias_sym_primitive_type = 240, - alias_sym_shorthand_field_identifier = 241, - alias_sym_type_identifier = 242, + sym_expression_except_range = 175, + sym_generic_function = 176, + sym_tuple_expression = 177, + sym_return_expression = 178, + sym_struct_expression = 179, + sym_assignment_expression = 180, + sym_break_expression = 181, + sym_continue_expression = 182, + sym_index_expression = 183, + sym_array_expression = 184, + sym_parenthesized_expression = 185, + sym_unit_expression = 186, + sym_compound_assignment_expr = 187, + sym__expression_ending_with_block = 188, + sym_unary_expression = 189, + sym_range_expression = 190, + sym_try_expression = 191, + sym_field_expression = 192, + sym_block = 193, + sym_if_expression = 194, + sym__condition = 195, + sym_let_condition = 196, + sym_else_clause = 197, + sym_match_expression = 198, + sym_match_block = 199, + sym_match_arm = 200, + sym_last_match_arm = 201, + sym_tuple_enum_pattern = 202, + sym_match_pattern = 203, + sym_while_expression = 204, + sym_closure_expression = 205, + sym_closure_parameters = 206, + sym_for_expression = 207, + sym_loop_expression = 208, + sym_binary_expression = 209, + sym_snapshot_type = 210, + sym_call_expression = 211, + sym_arguments = 212, + sym_named_argument = 213, + sym_reference_expression = 214, + sym_visibility_modifier = 215, + sym_extern = 216, + sym_nopanic = 217, + sym_ref_specifier = 218, + aux_sym_source_file_repeat1 = 219, + aux_sym_declaration_list_repeat1 = 220, + aux_sym_enum_variant_list_repeat1 = 221, + aux_sym_enum_variant_list_repeat2 = 222, + aux_sym_field_declaration_list_repeat1 = 223, + aux_sym_function_repeat1 = 224, + aux_sym_use_list_repeat1 = 225, + aux_sym_parameters_repeat1 = 226, + aux_sym_type_parameters_repeat1 = 227, + aux_sym_delim_token_tree_repeat1 = 228, + aux_sym__non_special_token_repeat1 = 229, + aux_sym_tuple_pattern_repeat1 = 230, + aux_sym_slice_pattern_repeat1 = 231, + aux_sym_struct_pattern_repeat1 = 232, + aux_sym_field_initializer_list_repeat1 = 233, + aux_sym_type_arguments_repeat1 = 234, + aux_sym_tuple_expression_repeat1 = 235, + aux_sym_array_expression_repeat1 = 236, + aux_sym_match_block_repeat1 = 237, + aux_sym_match_arm_repeat1 = 238, + aux_sym_closure_parameters_repeat1 = 239, + aux_sym_arguments_repeat1 = 240, + alias_sym_field_identifier = 241, + alias_sym_primitive_type = 242, + alias_sym_shorthand_field_identifier = 243, + alias_sym_type_identifier = 244, }; static const char * const ts_symbol_names[] = { @@ -444,6 +446,7 @@ static const char * const ts_symbol_names[] = { [sym_type_arguments] = "type_arguments", [sym_expression_statement] = "expression_statement", [sym_expression] = "expression", + [sym_expression_except_range] = "expression_except_range", [sym_generic_function] = "generic_function", [sym_tuple_expression] = "tuple_expression", [sym_return_expression] = "return_expression", @@ -458,6 +461,7 @@ static const char * const ts_symbol_names[] = { [sym_compound_assignment_expr] = "compound_assignment_expr", [sym__expression_ending_with_block] = "_expression_ending_with_block", [sym_unary_expression] = "unary_expression", + [sym_range_expression] = "range_expression", [sym_try_expression] = "try_expression", [sym_field_expression] = "field_expression", [sym_block] = "block", @@ -690,6 +694,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_type_arguments] = sym_type_arguments, [sym_expression_statement] = sym_expression_statement, [sym_expression] = sym_expression, + [sym_expression_except_range] = sym_expression_except_range, [sym_generic_function] = sym_generic_function, [sym_tuple_expression] = sym_tuple_expression, [sym_return_expression] = sym_return_expression, @@ -704,6 +709,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_compound_assignment_expr] = sym_compound_assignment_expr, [sym__expression_ending_with_block] = sym__expression_ending_with_block, [sym_unary_expression] = sym_unary_expression, + [sym_range_expression] = sym_range_expression, [sym_try_expression] = sym_try_expression, [sym_field_expression] = sym_field_expression, [sym_block] = sym_block, @@ -1466,6 +1472,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, + [sym_expression_except_range] = { + .visible = false, + .named = true, + .supertype = true, + }, [sym_generic_function] = { .visible = true, .named = true, @@ -1522,6 +1533,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_range_expression] = { + .visible = true, + .named = true, + }, [sym_try_expression] = { .visible = true, .named = true, @@ -1861,72 +1876,70 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [58] = {.index = 60, .length = 2}, [59] = {.index = 62, .length = 2}, [60] = {.index = 64, .length = 3}, - [61] = {.index = 67, .length = 2}, - [62] = {.index = 69, .length = 1}, - [63] = {.index = 70, .length = 3}, - [64] = {.index = 73, .length = 1}, - [65] = {.index = 74, .length = 2}, - [66] = {.index = 73, .length = 1}, - [67] = {.index = 74, .length = 2}, - [68] = {.index = 76, .length = 1}, - [69] = {.index = 77, .length = 1}, - [70] = {.index = 78, .length = 2}, - [72] = {.index = 78, .length = 2}, - [73] = {.index = 31, .length = 1}, - [74] = {.index = 80, .length = 1}, - [75] = {.index = 81, .length = 1}, - [76] = {.index = 82, .length = 3}, - [77] = {.index = 85, .length = 4}, - [78] = {.index = 89, .length = 4}, - [79] = {.index = 0, .length = 1}, + [61] = {.index = 67, .length = 1}, + [62] = {.index = 68, .length = 3}, + [63] = {.index = 71, .length = 1}, + [64] = {.index = 72, .length = 2}, + [65] = {.index = 71, .length = 1}, + [66] = {.index = 72, .length = 2}, + [67] = {.index = 74, .length = 1}, + [68] = {.index = 75, .length = 1}, + [69] = {.index = 76, .length = 2}, + [71] = {.index = 76, .length = 2}, + [72] = {.index = 31, .length = 1}, + [73] = {.index = 78, .length = 1}, + [74] = {.index = 79, .length = 1}, + [75] = {.index = 80, .length = 3}, + [76] = {.index = 83, .length = 4}, + [77] = {.index = 87, .length = 4}, + [78] = {.index = 0, .length = 1}, + [79] = {.index = 91, .length = 2}, [80] = {.index = 93, .length = 2}, - [81] = {.index = 95, .length = 2}, - [83] = {.index = 97, .length = 3}, - [84] = {.index = 100, .length = 3}, - [85] = {.index = 103, .length = 2}, - [86] = {.index = 103, .length = 2}, - [87] = {.index = 105, .length = 1}, - [88] = {.index = 106, .length = 2}, - [89] = {.index = 108, .length = 3}, - [90] = {.index = 111, .length = 1}, - [92] = {.index = 112, .length = 1}, - [93] = {.index = 113, .length = 2}, - [94] = {.index = 115, .length = 3}, - [95] = {.index = 118, .length = 1}, - [96] = {.index = 119, .length = 2}, - [97] = {.index = 121, .length = 4}, - [98] = {.index = 125, .length = 5}, - [99] = {.index = 130, .length = 4}, - [100] = {.index = 134, .length = 5}, + [82] = {.index = 95, .length = 3}, + [83] = {.index = 98, .length = 3}, + [84] = {.index = 101, .length = 2}, + [85] = {.index = 101, .length = 2}, + [86] = {.index = 103, .length = 1}, + [87] = {.index = 104, .length = 2}, + [88] = {.index = 106, .length = 3}, + [89] = {.index = 109, .length = 1}, + [91] = {.index = 110, .length = 1}, + [92] = {.index = 111, .length = 2}, + [93] = {.index = 113, .length = 3}, + [94] = {.index = 116, .length = 1}, + [95] = {.index = 117, .length = 2}, + [96] = {.index = 119, .length = 4}, + [97] = {.index = 123, .length = 5}, + [98] = {.index = 128, .length = 4}, + [99] = {.index = 132, .length = 5}, + [100] = {.index = 137, .length = 2}, [101] = {.index = 139, .length = 2}, [102] = {.index = 141, .length = 2}, - [103] = {.index = 143, .length = 2}, - [104] = {.index = 145, .length = 1}, + [103] = {.index = 143, .length = 1}, + [104] = {.index = 144, .length = 2}, [105] = {.index = 146, .length = 2}, - [106] = {.index = 148, .length = 3}, - [107] = {.index = 151, .length = 2}, - [108] = {.index = 151, .length = 2}, - [109] = {.index = 153, .length = 1}, - [110] = {.index = 154, .length = 2}, - [111] = {.index = 154, .length = 2}, - [112] = {.index = 156, .length = 2}, - [113] = {.index = 158, .length = 4}, - [114] = {.index = 162, .length = 3}, - [115] = {.index = 78, .length = 2}, - [116] = {.index = 165, .length = 5}, - [117] = {.index = 170, .length = 5}, - [118] = {.index = 175, .length = 6}, + [106] = {.index = 146, .length = 2}, + [107] = {.index = 148, .length = 1}, + [108] = {.index = 149, .length = 2}, + [109] = {.index = 149, .length = 2}, + [110] = {.index = 151, .length = 2}, + [111] = {.index = 153, .length = 4}, + [112] = {.index = 157, .length = 3}, + [113] = {.index = 76, .length = 2}, + [114] = {.index = 160, .length = 5}, + [115] = {.index = 165, .length = 5}, + [116] = {.index = 170, .length = 6}, + [117] = {.index = 176, .length = 2}, + [118] = {.index = 178, .length = 3}, [119] = {.index = 181, .length = 2}, - [120] = {.index = 183, .length = 3}, - [121] = {.index = 186, .length = 2}, - [122] = {.index = 188, .length = 1}, - [123] = {.index = 189, .length = 2}, - [124] = {.index = 191, .length = 3}, - [125] = {.index = 194, .length = 6}, - [126] = {.index = 200, .length = 6}, - [127] = {.index = 206, .length = 3}, - [128] = {.index = 209, .length = 3}, - [129] = {.index = 212, .length = 7}, + [120] = {.index = 183, .length = 1}, + [121] = {.index = 184, .length = 2}, + [122] = {.index = 186, .length = 3}, + [123] = {.index = 189, .length = 6}, + [124] = {.index = 195, .length = 6}, + [125] = {.index = 201, .length = 3}, + [126] = {.index = 204, .length = 3}, + [127] = {.index = 207, .length = 7}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1976,10 +1989,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_value, 1}, [27] = {field_body, 2}, - {field_parameters, 1}, + {field_condition, 1}, [29] = {field_body, 2}, - {field_condition, 1}, + {field_parameters, 1}, [31] = {field_value, 2}, [32] = @@ -2036,207 +2049,200 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_condition, 1}, {field_consequence, 2}, [67] = - {field_body, 3}, - {field_parameters, 2}, - [69] = {field_type, 1}, - [70] = + [68] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [73] = + [71] = {field_name, 2}, - [74] = + [72] = {field_body, 3}, {field_name, 2}, - [76] = + [74] = {field_argument, 2}, - [77] = + [75] = {field_body, 4}, - [78] = + [76] = {field_name, 1}, {field_type, 3}, - [80] = + [78] = {field_length, 3}, - [81] = + [79] = {field_variant, 1}, - [82] = + [80] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [85] = + [83] = {field_implicit_arguments, 3}, {field_implicit_arguments, 4}, {field_name, 1}, {field_parameters, 2}, - [89] = + [87] = {field_implicit_arguments, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [93] = + [91] = {field_pattern, 1}, {field_type, 3}, + [93] = + {field_pattern, 1}, + {field_value, 3}, [95] = + {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [97] = + [98] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [100] = - {field_body, 4}, - {field_pattern, 1}, - {field_value, 3}, - [103] = + [101] = {field_field, 0}, {field_value, 2}, - [105] = + [103] = {field_element, 1}, - [106] = + [104] = {field_name, 2}, {field_type_parameters, 3}, - [108] = + [106] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [111] = + [109] = {field_name, 3}, - [112] = + [110] = {field_type_parameters, 2}, - [113] = + [111] = {field_body, 5}, {field_type_parameters, 2}, - [115] = + [113] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [118] = + [116] = {field_length, 4}, - [119] = + [117] = {field_name, 0}, {field_type, 2}, - [121] = + [119] = {field_implicit_arguments, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [125] = + [123] = {field_implicit_arguments, 3}, {field_implicit_arguments, 4}, {field_implicit_arguments, 5}, {field_name, 1}, {field_parameters, 2}, - [130] = + [128] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [134] = + [132] = {field_implicit_arguments, 4}, {field_implicit_arguments, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [139] = + [137] = {field_name, 0}, {field_pattern, 2}, - [141] = + [139] = {field_pattern, 2}, {field_type, 4}, - [143] = + [141] = {field_pattern, 2}, {field_value, 4}, - [145] = + [143] = {field_condition, 2}, - [146] = + [144] = {field_pattern, 0}, {field_value, 2}, - [148] = - {field_body, 5}, - {field_parameters, 2}, - {field_return_type, 4}, - [151] = + [146] = {field_field, 1}, {field_value, 3}, - [153] = + [148] = {field_body, 5}, - [154] = + [149] = {field_name, 2}, {field_type, 4}, - [156] = + [151] = {field_name, 3}, {field_type_parameters, 4}, - [158] = + [153] = {field_bound, 3}, {field_left, 0}, {field_left, 1}, {field_left, 2}, - [162] = + [157] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [165] = + [160] = {field_implicit_arguments, 5}, {field_implicit_arguments, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [170] = + [165] = {field_implicit_arguments, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [175] = + [170] = {field_implicit_arguments, 4}, {field_implicit_arguments, 5}, {field_implicit_arguments, 6}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [181] = + [176] = {field_name, 1}, {field_pattern, 3}, - [183] = + [178] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [186] = + [181] = {field_element, 1}, {field_length, 3}, - [188] = + [183] = {field_type_parameters, 3}, - [189] = + [184] = {field_body, 6}, {field_type_parameters, 3}, - [191] = + [186] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [194] = + [189] = {field_implicit_arguments, 5}, {field_implicit_arguments, 6}, {field_implicit_arguments, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [200] = + [195] = {field_implicit_arguments, 6}, {field_implicit_arguments, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [206] = + [201] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [209] = + [204] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [212] = + [207] = {field_implicit_arguments, 6}, {field_implicit_arguments, 7}, {field_implicit_arguments, 8}, @@ -2325,70 +2331,70 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [58] = { [0] = sym_identifier, }, - [64] = { + [63] = { [2] = alias_sym_type_identifier, }, - [65] = { + [64] = { [2] = alias_sym_type_identifier, }, - [70] = { + [69] = { [1] = alias_sym_type_identifier, }, - [71] = { + [70] = { [1] = alias_sym_type_identifier, }, - [73] = { + [72] = { [0] = sym_identifier, }, - [79] = { + [78] = { [1] = alias_sym_shorthand_field_identifier, }, - [82] = { + [81] = { [3] = sym_identifier, }, - [86] = { + [85] = { [0] = alias_sym_field_identifier, }, - [88] = { + [87] = { [2] = alias_sym_type_identifier, }, - [89] = { + [88] = { [2] = alias_sym_type_identifier, }, - [90] = { + [89] = { [3] = alias_sym_type_identifier, }, - [91] = { + [90] = { [2] = alias_sym_type_identifier, }, - [94] = { + [93] = { [1] = alias_sym_type_identifier, }, - [96] = { + [95] = { [0] = alias_sym_field_identifier, }, - [101] = { + [100] = { [0] = alias_sym_field_identifier, }, - [108] = { + [106] = { [1] = alias_sym_field_identifier, }, - [110] = { + [108] = { [2] = alias_sym_type_identifier, }, - [112] = { + [110] = { [3] = alias_sym_type_identifier, }, - [113] = { + [111] = { [1] = alias_sym_type_identifier, }, - [115] = { + [113] = { [1] = alias_sym_field_identifier, }, - [119] = { + [117] = { [1] = alias_sym_field_identifier, }, - [124] = { + [122] = { [2] = alias_sym_type_identifier, }, }; @@ -2404,173 +2410,173 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, + [3] = 2, [4] = 2, [5] = 5, - [6] = 5, - [7] = 2, - [8] = 3, - [9] = 3, - [10] = 3, - [11] = 3, - [12] = 2, - [13] = 3, + [6] = 2, + [7] = 7, + [8] = 8, + [9] = 2, + [10] = 7, + [11] = 2, + [12] = 8, + [13] = 7, [14] = 2, - [15] = 2, - [16] = 3, - [17] = 2, - [18] = 3, - [19] = 2, - [20] = 20, + [15] = 7, + [16] = 2, + [17] = 7, + [18] = 7, + [19] = 7, + [20] = 7, [21] = 21, [22] = 22, - [23] = 21, - [24] = 22, - [25] = 21, - [26] = 22, - [27] = 27, - [28] = 28, - [29] = 28, - [30] = 30, - [31] = 31, - [32] = 32, - [33] = 31, - [34] = 30, - [35] = 31, - [36] = 36, - [37] = 32, - [38] = 38, - [39] = 32, - [40] = 38, - [41] = 31, - [42] = 28, - [43] = 36, - [44] = 38, - [45] = 30, - [46] = 36, - [47] = 28, - [48] = 31, - [49] = 32, - [50] = 28, - [51] = 36, - [52] = 30, - [53] = 38, - [54] = 32, - [55] = 38, - [56] = 36, - [57] = 30, - [58] = 58, - [59] = 59, - [60] = 60, - [61] = 61, - [62] = 62, - [63] = 63, - [64] = 64, - [65] = 65, - [66] = 66, - [67] = 67, - [68] = 68, - [69] = 68, + [23] = 23, + [24] = 23, + [25] = 25, + [26] = 21, + [27] = 21, + [28] = 23, + [29] = 22, + [30] = 25, + [31] = 23, + [32] = 21, + [33] = 22, + [34] = 25, + [35] = 21, + [36] = 23, + [37] = 21, + [38] = 23, + [39] = 39, + [40] = 40, + [41] = 41, + [42] = 42, + [43] = 40, + [44] = 44, + [45] = 45, + [46] = 44, + [47] = 45, + [48] = 44, + [49] = 49, + [50] = 40, + [51] = 42, + [52] = 49, + [53] = 41, + [54] = 45, + [55] = 44, + [56] = 49, + [57] = 40, + [58] = 45, + [59] = 42, + [60] = 41, + [61] = 41, + [62] = 42, + [63] = 49, + [64] = 42, + [65] = 40, + [66] = 44, + [67] = 49, + [68] = 45, + [69] = 41, [70] = 70, [71] = 71, [72] = 72, [73] = 73, [74] = 74, [75] = 75, - [76] = 64, - [77] = 66, + [76] = 76, + [77] = 77, [78] = 78, [79] = 79, [80] = 80, - [81] = 75, + [81] = 80, [82] = 82, [83] = 83, [84] = 84, - [85] = 85, - [86] = 86, - [87] = 70, + [85] = 83, + [86] = 84, + [87] = 82, [88] = 88, [89] = 89, - [90] = 90, - [91] = 84, + [90] = 88, + [91] = 89, [92] = 92, [93] = 93, [94] = 94, [95] = 92, - [96] = 94, + [96] = 93, [97] = 97, [98] = 98, - [99] = 97, - [100] = 98, - [101] = 101, - [102] = 102, + [99] = 99, + [100] = 75, + [101] = 72, + [102] = 99, [103] = 103, [104] = 104, - [105] = 103, + [105] = 105, [106] = 106, [107] = 107, - [108] = 83, - [109] = 107, - [110] = 106, + [108] = 108, + [109] = 109, + [110] = 110, [111] = 111, - [112] = 111, - [113] = 88, - [114] = 71, - [115] = 104, + [112] = 112, + [113] = 113, + [114] = 108, + [115] = 115, [116] = 116, - [117] = 116, - [118] = 118, - [119] = 119, - [120] = 118, + [117] = 117, + [118] = 106, + [119] = 109, + [120] = 113, [121] = 121, [122] = 122, - [123] = 118, - [124] = 116, - [125] = 116, + [123] = 123, + [124] = 124, + [125] = 125, [126] = 126, - [127] = 127, - [128] = 127, + [127] = 124, + [128] = 125, [129] = 129, [130] = 130, [131] = 131, [132] = 132, - [133] = 132, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 135, - [138] = 131, - [139] = 136, + [133] = 129, + [134] = 125, + [135] = 124, + [136] = 124, + [137] = 137, + [138] = 138, + [139] = 139, [140] = 140, - [141] = 130, - [142] = 122, - [143] = 134, - [144] = 132, - [145] = 136, - [146] = 140, - [147] = 147, - [148] = 131, - [149] = 149, - [150] = 149, - [151] = 149, - [152] = 152, - [153] = 153, + [141] = 141, + [142] = 139, + [143] = 143, + [144] = 138, + [145] = 139, + [146] = 105, + [147] = 110, + [148] = 141, + [149] = 138, + [150] = 139, + [151] = 143, + [152] = 137, + [153] = 138, [154] = 154, - [155] = 155, - [156] = 156, + [155] = 111, + [156] = 140, [157] = 157, [158] = 158, - [159] = 159, + [159] = 157, [160] = 160, - [161] = 161, + [161] = 157, [162] = 162, [163] = 163, [164] = 164, [165] = 165, [166] = 166, - [167] = 167, + [167] = 166, [168] = 168, - [169] = 155, + [169] = 169, [170] = 170, [171] = 171, [172] = 172, @@ -2578,86 +2584,86 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [174] = 174, [175] = 175, [176] = 176, - [177] = 172, + [177] = 177, [178] = 178, [179] = 179, [180] = 180, [181] = 181, [182] = 182, - [183] = 154, - [184] = 156, - [185] = 157, - [186] = 153, - [187] = 181, - [188] = 165, - [189] = 158, - [190] = 159, - [191] = 160, - [192] = 192, - [193] = 175, - [194] = 161, - [195] = 195, - [196] = 196, - [197] = 197, - [198] = 182, - [199] = 170, - [200] = 166, - [201] = 201, - [202] = 162, - [203] = 163, - [204] = 176, - [205] = 165, - [206] = 196, - [207] = 164, - [208] = 178, + [183] = 163, + [184] = 172, + [185] = 185, + [186] = 170, + [187] = 168, + [188] = 188, + [189] = 175, + [190] = 163, + [191] = 191, + [192] = 176, + [193] = 180, + [194] = 179, + [195] = 177, + [196] = 177, + [197] = 185, + [198] = 179, + [199] = 165, + [200] = 181, + [201] = 176, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 175, + [207] = 173, + [208] = 180, [209] = 173, - [210] = 181, - [211] = 211, - [212] = 164, + [210] = 168, + [211] = 185, + [212] = 169, [213] = 213, - [214] = 182, - [215] = 154, - [216] = 156, - [217] = 157, - [218] = 218, - [219] = 158, - [220] = 201, - [221] = 221, + [214] = 170, + [215] = 158, + [216] = 171, + [217] = 165, + [218] = 182, + [219] = 219, + [220] = 220, + [221] = 169, [222] = 222, - [223] = 176, - [224] = 196, - [225] = 197, - [226] = 159, - [227] = 160, - [228] = 192, - [229] = 161, - [230] = 162, - [231] = 231, - [232] = 178, - [233] = 163, - [234] = 82, + [223] = 172, + [224] = 178, + [225] = 225, + [226] = 220, + [227] = 178, + [228] = 171, + [229] = 166, + [230] = 230, + [231] = 230, + [232] = 219, + [233] = 233, + [234] = 234, [235] = 235, - [236] = 64, - [237] = 85, - [238] = 66, - [239] = 88, - [240] = 71, - [241] = 83, - [242] = 242, - [243] = 83, - [244] = 88, - [245] = 71, - [246] = 246, - [247] = 247, - [248] = 248, - [249] = 249, - [250] = 250, - [251] = 251, + [236] = 225, + [237] = 237, + [238] = 164, + [239] = 234, + [240] = 202, + [241] = 241, + [242] = 237, + [243] = 243, + [244] = 244, + [245] = 116, + [246] = 75, + [247] = 72, + [248] = 122, + [249] = 105, + [250] = 111, + [251] = 110, [252] = 252, [253] = 253, - [254] = 254, - [255] = 255, - [256] = 256, + [254] = 110, + [255] = 105, + [256] = 111, [257] = 257, [258] = 258, [259] = 259, @@ -2728,125 +2734,125 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [324] = 324, [325] = 325, [326] = 326, - [327] = 101, + [327] = 327, [328] = 328, - [329] = 326, + [329] = 329, [330] = 330, - [331] = 328, - [332] = 332, + [331] = 331, + [332] = 126, [333] = 333, - [334] = 88, - [335] = 71, + [334] = 334, + [335] = 335, [336] = 336, - [337] = 333, - [338] = 338, - [339] = 83, - [340] = 333, - [341] = 341, - [342] = 72, - [343] = 74, - [344] = 88, - [345] = 78, - [346] = 80, - [347] = 86, - [348] = 71, - [349] = 89, + [337] = 337, + [338] = 110, + [339] = 339, + [340] = 340, + [341] = 340, + [342] = 105, + [343] = 343, + [344] = 111, + [345] = 339, + [346] = 346, + [347] = 104, + [348] = 103, + [349] = 349, [350] = 350, - [351] = 83, - [352] = 79, - [353] = 353, - [354] = 90, - [355] = 73, + [351] = 115, + [352] = 352, + [353] = 123, + [354] = 107, + [355] = 105, [356] = 356, - [357] = 357, - [358] = 357, - [359] = 357, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 362, - [365] = 362, - [366] = 366, - [367] = 367, - [368] = 367, + [357] = 112, + [358] = 98, + [359] = 359, + [360] = 121, + [361] = 117, + [362] = 111, + [363] = 110, + [364] = 364, + [365] = 365, + [366] = 365, + [367] = 365, + [368] = 368, [369] = 369, - [370] = 370, - [371] = 370, - [372] = 372, + [370] = 369, + [371] = 371, + [372] = 369, [373] = 373, - [374] = 372, - [375] = 375, + [374] = 373, + [375] = 373, [376] = 376, [377] = 377, [378] = 378, [379] = 379, [380] = 380, - [381] = 381, + [381] = 380, [382] = 382, - [383] = 380, - [384] = 255, - [385] = 381, - [386] = 382, + [383] = 382, + [384] = 384, + [385] = 385, + [386] = 385, [387] = 387, [388] = 388, [389] = 389, [390] = 390, [391] = 391, [392] = 392, - [393] = 389, - [394] = 390, - [395] = 391, - [396] = 392, - [397] = 388, - [398] = 387, + [393] = 392, + [394] = 394, + [395] = 282, + [396] = 394, + [397] = 391, + [398] = 398, [399] = 399, [400] = 400, - [401] = 399, + [401] = 400, [402] = 402, [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 399, - [408] = 408, - [409] = 409, - [410] = 405, - [411] = 408, - [412] = 403, + [404] = 403, + [405] = 399, + [406] = 398, + [407] = 407, + [408] = 402, + [409] = 407, + [410] = 410, + [411] = 411, + [412] = 412, [413] = 413, [414] = 414, [415] = 415, - [416] = 416, - [417] = 413, - [418] = 404, - [419] = 402, + [416] = 413, + [417] = 417, + [418] = 417, + [419] = 419, [420] = 420, - [421] = 416, - [422] = 406, - [423] = 423, + [421] = 421, + [422] = 419, + [423] = 419, [424] = 424, - [425] = 425, - [426] = 423, - [427] = 423, - [428] = 425, - [429] = 425, - [430] = 430, - [431] = 430, - [432] = 430, - [433] = 433, + [425] = 415, + [426] = 426, + [427] = 427, + [428] = 420, + [429] = 429, + [430] = 426, + [431] = 414, + [432] = 421, + [433] = 411, [434] = 434, [435] = 435, [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, + [437] = 436, + [438] = 435, + [439] = 435, + [440] = 436, [441] = 441, - [442] = 442, - [443] = 443, + [442] = 441, + [443] = 441, [444] = 444, - [445] = 101, + [445] = 445, [446] = 446, [447] = 447, [448] = 448, @@ -2857,20 +2863,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [453] = 453, [454] = 454, [455] = 455, - [456] = 88, - [457] = 83, - [458] = 458, + [456] = 456, + [457] = 126, + [458] = 110, [459] = 459, [460] = 460, [461] = 461, [462] = 462, - [463] = 71, + [463] = 111, [464] = 464, [465] = 465, [466] = 466, [467] = 467, [468] = 468, - [469] = 469, + [469] = 105, [470] = 470, [471] = 471, [472] = 472, @@ -2878,12 +2884,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [474] = 474, [475] = 475, [476] = 476, - [477] = 63, + [477] = 477, [478] = 478, - [479] = 479, + [479] = 73, [480] = 480, - [481] = 481, - [482] = 482, + [481] = 76, + [482] = 78, [483] = 483, [484] = 484, [485] = 485, @@ -2921,495 +2927,495 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [517] = 517, [518] = 518, [519] = 519, - [520] = 62, + [520] = 520, [521] = 521, - [522] = 60, + [522] = 522, [523] = 523, - [524] = 256, - [525] = 314, - [526] = 287, - [527] = 288, - [528] = 321, - [529] = 322, - [530] = 323, - [531] = 247, - [532] = 325, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, [533] = 533, - [534] = 250, - [535] = 292, - [536] = 248, - [537] = 252, - [538] = 306, - [539] = 539, - [540] = 261, - [541] = 265, - [542] = 268, - [543] = 269, - [544] = 278, - [545] = 279, - [546] = 280, - [547] = 255, - [548] = 283, - [549] = 297, - [550] = 282, - [551] = 286, - [552] = 259, - [553] = 310, - [554] = 246, - [555] = 275, - [556] = 274, - [557] = 257, - [558] = 311, - [559] = 303, - [560] = 302, - [561] = 301, - [562] = 298, - [563] = 300, - [564] = 264, - [565] = 263, - [566] = 296, - [567] = 254, - [568] = 273, - [569] = 270, - [570] = 272, - [571] = 295, - [572] = 320, - [573] = 271, - [574] = 319, - [575] = 533, - [576] = 258, - [577] = 285, - [578] = 290, - [579] = 315, - [580] = 313, - [581] = 309, - [582] = 291, - [583] = 308, - [584] = 281, - [585] = 307, - [586] = 277, - [587] = 299, - [588] = 276, - [589] = 294, - [590] = 305, - [591] = 289, - [592] = 312, - [593] = 324, - [594] = 435, - [595] = 293, - [596] = 596, - [597] = 318, - [598] = 267, - [599] = 596, - [600] = 284, - [601] = 266, - [602] = 262, - [603] = 260, - [604] = 304, - [605] = 316, - [606] = 253, - [607] = 251, - [608] = 249, - [609] = 609, - [610] = 446, - [611] = 444, - [612] = 443, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 442, - [618] = 618, - [619] = 619, - [620] = 620, - [621] = 621, - [622] = 622, - [623] = 623, - [624] = 624, + [534] = 534, + [535] = 449, + [536] = 536, + [537] = 273, + [538] = 303, + [539] = 337, + [540] = 313, + [541] = 302, + [542] = 260, + [543] = 257, + [544] = 336, + [545] = 316, + [546] = 315, + [547] = 334, + [548] = 267, + [549] = 269, + [550] = 312, + [551] = 304, + [552] = 298, + [553] = 322, + [554] = 320, + [555] = 291, + [556] = 333, + [557] = 295, + [558] = 300, + [559] = 258, + [560] = 297, + [561] = 270, + [562] = 325, + [563] = 282, + [564] = 268, + [565] = 274, + [566] = 326, + [567] = 456, + [568] = 327, + [569] = 266, + [570] = 265, + [571] = 329, + [572] = 263, + [573] = 307, + [574] = 330, + [575] = 261, + [576] = 259, + [577] = 331, + [578] = 319, + [579] = 335, + [580] = 275, + [581] = 321, + [582] = 582, + [583] = 318, + [584] = 276, + [585] = 314, + [586] = 328, + [587] = 310, + [588] = 453, + [589] = 311, + [590] = 301, + [591] = 277, + [592] = 454, + [593] = 278, + [594] = 283, + [595] = 272, + [596] = 264, + [597] = 309, + [598] = 290, + [599] = 308, + [600] = 299, + [601] = 293, + [602] = 323, + [603] = 262, + [604] = 292, + [605] = 289, + [606] = 305, + [607] = 279, + [608] = 317, + [609] = 296, + [610] = 285, + [611] = 286, + [612] = 294, + [613] = 281, + [614] = 288, + [615] = 306, + [616] = 324, + [617] = 455, + [618] = 287, + [619] = 280, + [620] = 284, + [621] = 449, + [622] = 455, + [623] = 126, + [624] = 465, [625] = 625, - [626] = 618, - [627] = 620, - [628] = 435, - [629] = 625, - [630] = 630, - [631] = 631, + [626] = 448, + [627] = 445, + [628] = 628, + [629] = 629, + [630] = 451, + [631] = 452, [632] = 632, [633] = 633, - [634] = 634, - [635] = 635, - [636] = 636, - [637] = 637, + [634] = 453, + [635] = 465, + [636] = 468, + [637] = 456, [638] = 638, - [639] = 639, - [640] = 640, - [641] = 641, + [639] = 454, + [640] = 447, + [641] = 466, [642] = 642, - [643] = 636, + [643] = 460, [644] = 644, - [645] = 644, - [646] = 646, - [647] = 646, - [648] = 648, - [649] = 649, + [645] = 638, + [646] = 446, + [647] = 647, + [648] = 450, + [649] = 468, [650] = 650, [651] = 651, - [652] = 652, - [653] = 650, + [652] = 625, + [653] = 653, [654] = 654, - [655] = 436, - [656] = 440, - [657] = 651, - [658] = 658, - [659] = 658, - [660] = 654, - [661] = 438, + [655] = 110, + [656] = 656, + [657] = 105, + [658] = 282, + [659] = 659, + [660] = 656, + [661] = 111, [662] = 662, [663] = 663, [664] = 664, [665] = 665, - [666] = 639, - [667] = 461, - [668] = 668, + [666] = 666, + [667] = 667, + [668] = 492, [669] = 669, [670] = 670, - [671] = 642, + [671] = 654, [672] = 672, - [673] = 673, - [674] = 462, - [675] = 675, + [673] = 461, + [674] = 674, + [675] = 459, [676] = 676, - [677] = 669, + [677] = 677, [678] = 678, - [679] = 679, + [679] = 667, [680] = 680, - [681] = 664, - [682] = 675, - [683] = 639, - [684] = 684, + [681] = 659, + [682] = 682, + [683] = 683, + [684] = 656, [685] = 685, - [686] = 686, - [687] = 664, - [688] = 684, - [689] = 443, - [690] = 649, + [686] = 664, + [687] = 665, + [688] = 492, + [689] = 670, + [690] = 672, [691] = 691, - [692] = 101, + [692] = 692, [693] = 693, [694] = 694, - [695] = 693, - [696] = 664, - [697] = 446, - [698] = 444, - [699] = 639, - [700] = 700, - [701] = 664, + [695] = 695, + [696] = 696, + [697] = 677, + [698] = 678, + [699] = 695, + [700] = 674, + [701] = 462, [702] = 702, - [703] = 641, + [703] = 703, [704] = 704, - [705] = 705, - [706] = 664, - [707] = 694, - [708] = 642, - [709] = 637, - [710] = 649, + [705] = 466, + [706] = 706, + [707] = 707, + [708] = 460, + [709] = 709, + [710] = 710, [711] = 711, - [712] = 441, - [713] = 639, - [714] = 455, - [715] = 715, - [716] = 633, + [712] = 656, + [713] = 692, + [714] = 676, + [715] = 682, + [716] = 669, [717] = 717, - [718] = 255, - [719] = 434, - [720] = 664, - [721] = 721, - [722] = 439, - [723] = 639, - [724] = 437, - [725] = 632, - [726] = 639, - [727] = 721, + [718] = 464, + [719] = 693, + [720] = 683, + [721] = 706, + [722] = 663, + [723] = 707, + [724] = 709, + [725] = 527, + [726] = 501, + [727] = 498, [728] = 728, - [729] = 633, - [730] = 730, - [731] = 635, - [732] = 458, - [733] = 733, - [734] = 686, - [735] = 633, - [736] = 730, - [737] = 664, - [738] = 700, - [739] = 455, - [740] = 740, - [741] = 665, - [742] = 691, - [743] = 630, - [744] = 639, - [745] = 458, - [746] = 442, - [747] = 509, + [729] = 478, + [730] = 474, + [731] = 476, + [732] = 112, + [733] = 470, + [734] = 532, + [735] = 735, + [736] = 471, + [737] = 515, + [738] = 514, + [739] = 117, + [740] = 98, + [741] = 104, + [742] = 735, + [743] = 743, + [744] = 475, + [745] = 520, + [746] = 489, + [747] = 747, [748] = 748, - [749] = 501, - [750] = 505, - [751] = 452, - [752] = 459, - [753] = 460, - [754] = 754, - [755] = 88, - [756] = 756, + [749] = 518, + [750] = 747, + [751] = 751, + [752] = 752, + [753] = 484, + [754] = 485, + [755] = 282, + [756] = 487, [757] = 757, - [758] = 491, - [759] = 759, - [760] = 83, - [761] = 71, - [762] = 491, - [763] = 763, - [764] = 255, - [765] = 283, - [766] = 469, - [767] = 453, + [758] = 533, + [759] = 534, + [760] = 486, + [761] = 493, + [762] = 502, + [763] = 506, + [764] = 764, + [765] = 765, + [766] = 495, + [767] = 508, [768] = 505, - [769] = 769, - [770] = 462, - [771] = 461, - [772] = 472, - [773] = 448, - [774] = 774, - [775] = 775, - [776] = 469, - [777] = 777, - [778] = 778, - [779] = 757, - [780] = 780, - [781] = 473, - [782] = 474, + [769] = 510, + [770] = 770, + [771] = 771, + [772] = 748, + [773] = 78, + [774] = 520, + [775] = 771, + [776] = 123, + [777] = 748, + [778] = 771, + [779] = 771, + [780] = 531, + [781] = 532, + [782] = 488, [783] = 783, - [784] = 476, + [784] = 748, [785] = 785, - [786] = 478, - [787] = 787, - [788] = 788, - [789] = 480, - [790] = 481, - [791] = 791, - [792] = 482, - [793] = 484, - [794] = 754, - [795] = 791, - [796] = 486, - [797] = 763, - [798] = 777, - [799] = 451, - [800] = 748, - [801] = 472, - [802] = 802, - [803] = 473, - [804] = 454, - [805] = 474, - [806] = 806, - [807] = 476, - [808] = 478, - [809] = 759, - [810] = 480, - [811] = 481, - [812] = 812, - [813] = 509, - [814] = 814, - [815] = 482, - [816] = 814, - [817] = 484, - [818] = 788, - [819] = 486, - [820] = 501, - [821] = 806, - [822] = 513, - [823] = 812, - [824] = 513, - [825] = 780, - [826] = 492, - [827] = 515, - [828] = 518, - [829] = 829, - [830] = 471, - [831] = 475, - [832] = 507, - [833] = 510, - [834] = 503, - [835] = 497, - [836] = 498, - [837] = 90, - [838] = 502, - [839] = 80, - [840] = 499, - [841] = 511, - [842] = 488, - [843] = 79, - [844] = 470, - [845] = 479, - [846] = 62, - [847] = 493, - [848] = 73, - [849] = 494, - [850] = 72, - [851] = 851, - [852] = 466, - [853] = 523, - [854] = 490, - [855] = 521, - [856] = 514, - [857] = 78, - [858] = 512, - [859] = 86, - [860] = 63, - [861] = 89, - [862] = 468, - [863] = 489, - [864] = 483, - [865] = 500, - [866] = 517, - [867] = 467, - [868] = 506, - [869] = 495, - [870] = 504, - [871] = 60, - [872] = 487, - [873] = 508, - [874] = 485, - [875] = 516, - [876] = 496, - [877] = 74, - [878] = 519, - [879] = 879, + [786] = 496, + [787] = 107, + [788] = 771, + [789] = 472, + [790] = 536, + [791] = 748, + [792] = 497, + [793] = 793, + [794] = 794, + [795] = 795, + [796] = 494, + [797] = 771, + [798] = 748, + [799] = 517, + [800] = 503, + [801] = 511, + [802] = 504, + [803] = 534, + [804] = 509, + [805] = 73, + [806] = 473, + [807] = 500, + [808] = 513, + [809] = 103, + [810] = 536, + [811] = 491, + [812] = 534, + [813] = 115, + [814] = 770, + [815] = 764, + [816] = 480, + [817] = 121, + [818] = 818, + [819] = 765, + [820] = 820, + [821] = 76, + [822] = 770, + [823] = 823, + [824] = 824, + [825] = 521, + [826] = 507, + [827] = 771, + [828] = 747, + [829] = 748, + [830] = 522, + [831] = 536, + [832] = 523, + [833] = 521, + [834] = 516, + [835] = 522, + [836] = 523, + [837] = 524, + [838] = 525, + [839] = 526, + [840] = 783, + [841] = 771, + [842] = 524, + [843] = 525, + [844] = 528, + [845] = 529, + [846] = 530, + [847] = 483, + [848] = 526, + [849] = 527, + [850] = 490, + [851] = 531, + [852] = 748, + [853] = 533, + [854] = 299, + [855] = 530, + [856] = 856, + [857] = 529, + [858] = 858, + [859] = 528, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 863, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 865, + [872] = 872, + [873] = 869, + [874] = 864, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 868, + [879] = 876, [880] = 880, - [881] = 881, + [881] = 870, [882] = 882, [883] = 883, - [884] = 883, - [885] = 882, - [886] = 375, - [887] = 255, - [888] = 888, - [889] = 889, - [890] = 889, - [891] = 889, + [884] = 882, + [885] = 885, + [886] = 867, + [887] = 887, + [888] = 875, + [889] = 887, + [890] = 890, + [891] = 862, [892] = 892, - [893] = 892, - [894] = 889, - [895] = 889, - [896] = 892, - [897] = 889, - [898] = 889, - [899] = 889, - [900] = 900, - [901] = 900, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 897, + [899] = 896, + [900] = 384, + [901] = 282, [902] = 902, [903] = 903, - [904] = 436, - [905] = 905, - [906] = 906, - [907] = 438, - [908] = 908, - [909] = 906, + [904] = 903, + [905] = 903, + [906] = 903, + [907] = 907, + [908] = 907, + [909] = 907, [910] = 903, - [911] = 905, - [912] = 439, - [913] = 908, - [914] = 440, - [915] = 915, + [911] = 903, + [912] = 903, + [913] = 903, + [914] = 914, + [915] = 914, [916] = 916, - [917] = 66, - [918] = 64, - [919] = 82, - [920] = 85, - [921] = 921, - [922] = 922, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 918, + [921] = 451, + [922] = 917, [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 927, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 929, - [932] = 932, + [924] = 448, + [925] = 923, + [926] = 919, + [927] = 445, + [928] = 452, + [929] = 72, + [930] = 75, + [931] = 931, + [932] = 116, [933] = 933, [934] = 934, - [935] = 934, - [936] = 908, + [935] = 935, + [936] = 122, [937] = 937, [938] = 938, - [939] = 906, + [939] = 939, [940] = 940, - [941] = 905, + [941] = 941, [942] = 942, [943] = 943, [944] = 944, [945] = 945, - [946] = 903, + [946] = 945, [947] = 947, [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, + [949] = 919, + [950] = 918, + [951] = 923, [952] = 952, [953] = 953, [954] = 954, - [955] = 951, - [956] = 949, - [957] = 952, - [958] = 60, + [955] = 955, + [956] = 954, + [957] = 957, + [958] = 958, [959] = 959, - [960] = 63, - [961] = 67, + [960] = 960, + [961] = 917, [962] = 962, [963] = 963, - [964] = 948, - [965] = 965, - [966] = 906, + [964] = 78, + [965] = 77, + [966] = 966, [967] = 967, [968] = 968, [969] = 969, [970] = 970, [971] = 971, [972] = 972, - [973] = 973, - [974] = 974, - [975] = 971, - [976] = 908, - [977] = 977, - [978] = 978, + [973] = 969, + [974] = 963, + [975] = 975, + [976] = 962, + [977] = 73, + [978] = 966, [979] = 979, [980] = 980, [981] = 981, [982] = 982, [983] = 983, - [984] = 903, + [984] = 984, [985] = 985, [986] = 986, - [987] = 962, - [988] = 988, - [989] = 985, - [990] = 990, - [991] = 991, - [992] = 992, - [993] = 902, - [994] = 994, + [987] = 987, + [988] = 966, + [989] = 916, + [990] = 967, + [991] = 918, + [992] = 980, + [993] = 917, + [994] = 923, [995] = 995, - [996] = 977, - [997] = 962, + [996] = 996, + [997] = 919, [998] = 998, [999] = 999, [1000] = 1000, - [1001] = 967, + [1001] = 1001, [1002] = 1002, - [1003] = 951, + [1003] = 1003, [1004] = 1004, [1005] = 1005, [1006] = 1006, [1007] = 1007, - [1008] = 905, + [1008] = 1008, [1009] = 1009, [1010] = 1010, [1011] = 1011, @@ -3417,738 +3423,745 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1013] = 1013, [1014] = 1014, [1015] = 1015, - [1016] = 906, - [1017] = 908, - [1018] = 1012, - [1019] = 1019, - [1020] = 1013, - [1021] = 1015, - [1022] = 1014, - [1023] = 1023, - [1024] = 903, - [1025] = 905, + [1016] = 1016, + [1017] = 1017, + [1018] = 1018, + [1019] = 1018, + [1020] = 1020, + [1021] = 967, + [1022] = 1022, + [1023] = 981, + [1024] = 1024, + [1025] = 1014, [1026] = 1026, [1027] = 1027, - [1028] = 1028, + [1028] = 919, [1029] = 1029, - [1030] = 1030, - [1031] = 921, - [1032] = 921, - [1033] = 1033, - [1034] = 1029, - [1035] = 1035, + [1030] = 923, + [1031] = 1026, + [1032] = 1032, + [1033] = 1032, + [1034] = 1027, + [1035] = 917, [1036] = 1036, [1037] = 1037, - [1038] = 1038, - [1039] = 921, + [1038] = 1037, + [1039] = 918, [1040] = 1040, - [1041] = 950, - [1042] = 921, - [1043] = 926, - [1044] = 436, + [1041] = 1041, + [1042] = 931, + [1043] = 1043, + [1044] = 970, [1045] = 1045, [1046] = 1046, - [1047] = 434, - [1048] = 438, - [1049] = 926, - [1050] = 440, - [1051] = 1051, - [1052] = 437, + [1047] = 931, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, + [1051] = 1043, + [1052] = 1052, [1053] = 1053, - [1054] = 1054, + [1054] = 931, [1055] = 1055, - [1056] = 439, - [1057] = 926, + [1056] = 1056, + [1057] = 1057, [1058] = 1058, - [1059] = 1059, - [1060] = 1060, - [1061] = 1061, + [1059] = 939, + [1060] = 448, + [1061] = 451, [1062] = 1062, - [1063] = 441, - [1064] = 1064, + [1063] = 446, + [1064] = 931, [1065] = 1065, - [1066] = 1066, - [1067] = 1067, - [1068] = 1068, + [1066] = 447, + [1067] = 939, + [1068] = 452, [1069] = 1069, - [1070] = 1070, - [1071] = 1068, - [1072] = 1072, - [1073] = 375, + [1070] = 939, + [1071] = 1071, + [1072] = 445, + [1073] = 1073, [1074] = 1074, [1075] = 1075, - [1076] = 1076, + [1076] = 450, [1077] = 1077, - [1078] = 1072, + [1078] = 1078, [1079] = 1079, [1080] = 1080, [1081] = 1081, [1082] = 1082, - [1083] = 1079, + [1083] = 1083, [1084] = 1084, - [1085] = 1085, + [1085] = 939, [1086] = 1086, [1087] = 1087, [1088] = 1088, - [1089] = 375, + [1089] = 1089, [1090] = 1090, [1091] = 1091, [1092] = 1092, [1093] = 1093, [1094] = 1094, [1095] = 1095, - [1096] = 1075, - [1097] = 1097, - [1098] = 1098, + [1096] = 1096, + [1097] = 1092, + [1098] = 384, [1099] = 1099, [1100] = 1100, - [1101] = 1101, - [1102] = 1088, - [1103] = 926, - [1104] = 1087, + [1101] = 1089, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 962, - [1109] = 1109, + [1108] = 1104, + [1109] = 1102, [1110] = 1110, [1111] = 1111, - [1112] = 1081, + [1112] = 967, [1113] = 1113, [1114] = 1114, - [1115] = 1080, + [1115] = 1115, [1116] = 1116, [1117] = 1117, - [1118] = 1118, + [1118] = 384, [1119] = 1119, [1120] = 1120, [1121] = 1121, - [1122] = 1116, - [1123] = 1123, - [1124] = 1116, - [1125] = 1121, + [1122] = 1122, + [1123] = 1100, + [1124] = 1124, + [1125] = 1125, [1126] = 1126, - [1127] = 1120, - [1128] = 1120, - [1129] = 1121, - [1130] = 1116, + [1127] = 1116, + [1128] = 1096, + [1129] = 1079, + [1130] = 1130, [1131] = 1131, - [1132] = 1120, - [1133] = 1121, - [1134] = 1116, + [1132] = 1132, + [1133] = 1133, + [1134] = 972, [1135] = 1135, - [1136] = 1136, - [1137] = 1117, + [1136] = 1130, + [1137] = 1137, [1138] = 1138, - [1139] = 1138, - [1140] = 1120, - [1141] = 1121, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, [1142] = 1142, - [1143] = 1143, + [1143] = 1133, [1144] = 1144, [1145] = 1145, - [1146] = 1135, - [1147] = 1145, + [1146] = 1146, + [1147] = 1147, [1148] = 1148, - [1149] = 1136, - [1150] = 1121, + [1149] = 1149, + [1150] = 1150, [1151] = 1151, - [1152] = 1152, - [1153] = 1120, - [1154] = 1154, - [1155] = 1119, - [1156] = 1152, - [1157] = 1157, - [1158] = 1143, + [1152] = 1130, + [1153] = 1137, + [1154] = 1138, + [1155] = 1155, + [1156] = 1130, + [1157] = 1137, + [1158] = 1138, [1159] = 1159, [1160] = 1160, [1161] = 1161, - [1162] = 1162, - [1163] = 1163, - [1164] = 1144, + [1162] = 1130, + [1163] = 1137, + [1164] = 1164, [1165] = 1165, - [1166] = 1166, - [1167] = 1116, + [1166] = 1138, + [1167] = 1167, [1168] = 1168, [1169] = 1169, - [1170] = 1135, - [1171] = 953, - [1172] = 1148, - [1173] = 1173, - [1174] = 1154, - [1175] = 1136, + [1170] = 1137, + [1171] = 1138, + [1172] = 1150, + [1173] = 1148, + [1174] = 1174, + [1175] = 1138, [1176] = 1176, - [1177] = 1177, + [1177] = 1137, [1178] = 1178, - [1179] = 1177, - [1180] = 1138, - [1181] = 1117, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, - [1185] = 1120, - [1186] = 1126, - [1187] = 1121, - [1188] = 1116, - [1189] = 1116, - [1190] = 1123, - [1191] = 1118, - [1192] = 1169, - [1193] = 1168, - [1194] = 1143, - [1195] = 1144, - [1196] = 1135, - [1197] = 1148, - [1198] = 1136, - [1199] = 1182, - [1200] = 1184, - [1201] = 1121, - [1202] = 1160, + [1179] = 1142, + [1180] = 1130, + [1181] = 1135, + [1182] = 1130, + [1183] = 1137, + [1184] = 1138, + [1185] = 1185, + [1186] = 1151, + [1187] = 1150, + [1188] = 1149, + [1189] = 1148, + [1190] = 1190, + [1191] = 1191, + [1192] = 1185, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1147, + [1197] = 1135, + [1198] = 1155, + [1199] = 1132, + [1200] = 1142, + [1201] = 1201, + [1202] = 1131, [1203] = 1203, - [1204] = 1120, - [1205] = 1117, - [1206] = 1142, - [1207] = 1173, - [1208] = 1075, - [1209] = 1161, - [1210] = 1162, - [1211] = 1211, - [1212] = 1212, - [1213] = 1163, + [1204] = 1204, + [1205] = 1201, + [1206] = 1206, + [1207] = 1135, + [1208] = 1194, + [1209] = 1130, + [1210] = 1079, + [1211] = 1159, + [1212] = 1178, + [1213] = 1137, [1214] = 1138, - [1215] = 1203, - [1216] = 1216, - [1217] = 1217, - [1218] = 1166, - [1219] = 1177, - [1220] = 82, - [1221] = 1221, - [1222] = 1222, - [1223] = 1142, - [1224] = 1224, - [1225] = 1225, - [1226] = 972, - [1227] = 1227, - [1228] = 1228, - [1229] = 60, - [1230] = 1230, - [1231] = 1231, - [1232] = 973, + [1215] = 1169, + [1216] = 1168, + [1217] = 1160, + [1218] = 1167, + [1219] = 1185, + [1220] = 1151, + [1221] = 1150, + [1222] = 1195, + [1223] = 1149, + [1224] = 1148, + [1225] = 1144, + [1226] = 1140, + [1227] = 1139, + [1228] = 1174, + [1229] = 1176, + [1230] = 1133, + [1231] = 1203, + [1232] = 1142, [1233] = 1233, [1234] = 1234, [1235] = 1235, [1236] = 1236, [1237] = 1237, [1238] = 1238, - [1239] = 63, - [1240] = 85, + [1239] = 1239, + [1240] = 1240, [1241] = 1241, [1242] = 1242, [1243] = 1243, - [1244] = 1244, - [1245] = 1245, + [1244] = 116, + [1245] = 1017, [1246] = 1246, - [1247] = 1173, + [1247] = 78, [1248] = 1248, - [1249] = 1249, - [1250] = 255, + [1249] = 122, + [1250] = 1250, [1251] = 1251, [1252] = 1252, [1253] = 1253, [1254] = 1254, - [1255] = 995, - [1256] = 1256, - [1257] = 998, - [1258] = 1258, - [1259] = 64, - [1260] = 66, - [1261] = 999, + [1255] = 1020, + [1256] = 1022, + [1257] = 1257, + [1258] = 1024, + [1259] = 1259, + [1260] = 1260, + [1261] = 1261, [1262] = 1262, - [1263] = 988, - [1264] = 255, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 968, - [1269] = 969, - [1270] = 982, - [1271] = 1005, + [1263] = 1263, + [1264] = 998, + [1265] = 1007, + [1266] = 987, + [1267] = 996, + [1268] = 75, + [1269] = 72, + [1270] = 1270, + [1271] = 1013, [1272] = 1272, - [1273] = 1007, - [1274] = 970, - [1275] = 1009, + [1273] = 1011, + [1274] = 986, + [1275] = 282, [1276] = 1276, - [1277] = 992, - [1278] = 1278, - [1279] = 1279, - [1280] = 1236, - [1281] = 980, - [1282] = 1251, - [1283] = 1252, - [1284] = 974, - [1285] = 1285, - [1286] = 1286, + [1277] = 1277, + [1278] = 985, + [1279] = 984, + [1280] = 1280, + [1281] = 983, + [1282] = 1010, + [1283] = 1283, + [1284] = 982, + [1285] = 1009, + [1286] = 73, [1287] = 1287, [1288] = 1288, - [1289] = 986, + [1289] = 1289, [1290] = 1290, [1291] = 1291, - [1292] = 1272, - [1293] = 1293, + [1292] = 1257, + [1293] = 1259, [1294] = 1294, - [1295] = 990, - [1296] = 1002, + [1295] = 1295, + [1296] = 1296, [1297] = 1297, [1298] = 1298, [1299] = 1299, - [1300] = 1298, + [1300] = 1300, [1301] = 1301, - [1302] = 1276, + [1302] = 1283, [1303] = 1303, - [1304] = 994, - [1305] = 1305, - [1306] = 1253, + [1304] = 1304, + [1305] = 1008, + [1306] = 1306, [1307] = 1307, - [1308] = 1308, - [1309] = 1299, - [1310] = 1252, - [1311] = 1311, + [1308] = 1307, + [1309] = 1294, + [1310] = 1260, + [1311] = 1259, [1312] = 1312, [1313] = 1313, [1314] = 1314, - [1315] = 1315, - [1316] = 1316, + [1315] = 1306, + [1316] = 1012, [1317] = 1317, [1318] = 1318, [1319] = 1319, [1320] = 1320, - [1321] = 1000, + [1321] = 1321, [1322] = 1322, [1323] = 1323, - [1324] = 1004, - [1325] = 1311, - [1326] = 1326, - [1327] = 1006, - [1328] = 1010, - [1329] = 1314, - [1330] = 1011, - [1331] = 965, + [1324] = 1324, + [1325] = 1325, + [1326] = 1174, + [1327] = 995, + [1328] = 1328, + [1329] = 1015, + [1330] = 1312, + [1331] = 1331, [1332] = 1332, - [1333] = 1315, + [1333] = 1006, [1334] = 1334, - [1335] = 1335, - [1336] = 1320, + [1335] = 1319, + [1336] = 1004, [1337] = 1337, [1338] = 1338, - [1339] = 1339, - [1340] = 1326, + [1339] = 1324, + [1340] = 1340, [1341] = 1341, [1342] = 1342, - [1343] = 1343, - [1344] = 1344, - [1345] = 1242, + [1343] = 1331, + [1344] = 1235, + [1345] = 1345, [1346] = 1346, [1347] = 1347, [1348] = 1348, - [1349] = 978, - [1350] = 1350, + [1349] = 1321, + [1350] = 1340, [1351] = 1351, - [1352] = 979, - [1353] = 1353, - [1354] = 981, - [1355] = 1350, - [1356] = 983, - [1357] = 1357, - [1358] = 1358, - [1359] = 1082, - [1360] = 1347, - [1361] = 1361, + [1352] = 1352, + [1353] = 77, + [1354] = 1354, + [1355] = 1276, + [1356] = 1356, + [1357] = 979, + [1358] = 1176, + [1359] = 1359, + [1360] = 282, + [1361] = 1005, [1362] = 1362, [1363] = 1363, - [1364] = 1351, + [1364] = 1364, [1365] = 1365, - [1366] = 1236, + [1366] = 1366, [1367] = 1367, [1368] = 1368, - [1369] = 1369, + [1369] = 1003, [1370] = 1370, - [1371] = 1358, + [1371] = 1371, [1372] = 1372, - [1373] = 1367, - [1374] = 67, + [1373] = 1234, + [1374] = 1374, [1375] = 1375, - [1376] = 1376, + [1376] = 1002, [1377] = 1377, - [1378] = 1376, - [1379] = 1377, + [1378] = 1378, + [1379] = 1001, [1380] = 1380, - [1381] = 1266, + [1381] = 1381, [1382] = 1382, [1383] = 1383, - [1384] = 1265, - [1385] = 1385, + [1384] = 1000, + [1385] = 999, [1386] = 1386, [1387] = 1387, - [1388] = 1258, - [1389] = 1256, + [1388] = 1388, + [1389] = 1389, [1390] = 1390, - [1391] = 1287, + [1391] = 1391, [1392] = 1392, - [1393] = 1254, - [1394] = 1316, - [1395] = 1363, - [1396] = 1238, - [1397] = 1357, - [1398] = 1350, - [1399] = 1399, - [1400] = 1348, - [1401] = 1380, - [1402] = 1402, - [1403] = 1225, - [1404] = 1399, - [1405] = 1235, - [1406] = 1406, - [1407] = 1233, - [1408] = 1323, + [1393] = 1393, + [1394] = 1254, + [1395] = 1395, + [1396] = 1378, + [1397] = 1334, + [1398] = 1398, + [1399] = 1238, + [1400] = 1328, + [1401] = 1347, + [1402] = 1313, + [1403] = 1356, + [1404] = 1380, + [1405] = 1280, + [1406] = 1365, + [1407] = 1277, + [1408] = 1276, [1409] = 1392, - [1410] = 1410, - [1411] = 1231, - [1412] = 1293, - [1413] = 1390, - [1414] = 1230, - [1415] = 1227, - [1416] = 1416, - [1417] = 1294, - [1418] = 1418, - [1419] = 1242, - [1420] = 1420, - [1421] = 1285, - [1422] = 1343, - [1423] = 1387, - [1424] = 1237, - [1425] = 1425, + [1410] = 1270, + [1411] = 1411, + [1412] = 1412, + [1413] = 1370, + [1414] = 1099, + [1415] = 1415, + [1416] = 1372, + [1417] = 1386, + [1418] = 1252, + [1419] = 1389, + [1420] = 1388, + [1421] = 1367, + [1422] = 1354, + [1423] = 1304, + [1424] = 1351, + [1425] = 1346, [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, + [1427] = 1295, + [1428] = 1374, + [1429] = 1321, [1430] = 1430, - [1431] = 1428, - [1432] = 1432, - [1433] = 1433, - [1434] = 1434, - [1435] = 1151, + [1431] = 1317, + [1432] = 1371, + [1433] = 1383, + [1434] = 1291, + [1435] = 1393, [1436] = 1436, - [1437] = 1430, + [1437] = 1437, [1438] = 1438, [1439] = 1439, - [1440] = 1440, - [1441] = 1428, + [1440] = 1438, + [1441] = 1441, [1442] = 1442, [1443] = 1443, - [1444] = 1444, + [1444] = 1193, [1445] = 1445, - [1446] = 1446, + [1446] = 1439, [1447] = 1447, - [1448] = 1448, + [1448] = 1438, [1449] = 1449, [1450] = 1450, - [1451] = 1426, + [1451] = 1451, [1452] = 1452, [1453] = 1453, [1454] = 1454, - [1455] = 1455, - [1456] = 1452, - [1457] = 1453, - [1458] = 1433, - [1459] = 1427, + [1455] = 1447, + [1456] = 1456, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, [1460] = 1460, [1461] = 1461, - [1462] = 1462, + [1462] = 952, [1463] = 1463, [1464] = 1464, [1465] = 1465, [1466] = 1466, [1467] = 1467, - [1468] = 1468, + [1468] = 938, [1469] = 1469, - [1470] = 1450, + [1470] = 1467, [1471] = 1471, - [1472] = 1449, - [1473] = 1473, - [1474] = 1448, - [1475] = 1447, - [1476] = 1446, + [1472] = 1472, + [1473] = 941, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, [1477] = 1477, [1478] = 1478, - [1479] = 1479, - [1480] = 1442, + [1479] = 76, + [1480] = 1480, [1481] = 1481, - [1482] = 947, - [1483] = 1445, - [1484] = 1454, - [1485] = 1461, - [1486] = 1486, + [1482] = 1482, + [1483] = 1483, + [1484] = 1484, + [1485] = 1449, + [1486] = 1451, [1487] = 1487, - [1488] = 1466, - [1489] = 1489, + [1488] = 1488, + [1489] = 1436, [1490] = 1490, - [1491] = 1491, - [1492] = 1442, - [1493] = 1445, + [1491] = 1443, + [1492] = 1452, + [1493] = 1493, [1494] = 1494, - [1495] = 1426, - [1496] = 1496, + [1495] = 1495, + [1496] = 1463, [1497] = 1497, - [1498] = 1478, - [1499] = 1487, - [1500] = 1478, - [1501] = 1501, - [1502] = 1501, - [1503] = 1503, - [1504] = 1503, + [1498] = 1467, + [1499] = 1469, + [1500] = 1500, + [1501] = 1449, + [1502] = 1451, + [1503] = 1452, + [1504] = 1465, [1505] = 1505, - [1506] = 1505, - [1507] = 1430, + [1506] = 1488, + [1507] = 1507, [1508] = 1508, [1509] = 1509, - [1510] = 62, - [1511] = 1466, - [1512] = 1512, + [1510] = 1510, + [1511] = 1511, + [1512] = 1437, [1513] = 1513, - [1514] = 1509, + [1514] = 1514, [1515] = 1515, [1516] = 1516, - [1517] = 1517, - [1518] = 923, - [1519] = 1489, + [1517] = 1507, + [1518] = 1518, + [1519] = 1456, [1520] = 1520, [1521] = 1521, - [1522] = 1509, - [1523] = 927, - [1524] = 1466, - [1525] = 1525, - [1526] = 1487, - [1527] = 1527, + [1522] = 1488, + [1523] = 1523, + [1524] = 1507, + [1525] = 1487, + [1526] = 1510, + [1527] = 1437, [1528] = 1528, - [1529] = 1471, - [1530] = 1501, - [1531] = 1531, - [1532] = 1479, - [1533] = 1516, - [1534] = 1503, - [1535] = 1535, - [1536] = 1505, - [1537] = 1436, - [1538] = 1538, - [1539] = 1521, - [1540] = 1434, - [1541] = 1478, - [1542] = 1542, - [1543] = 1501, - [1544] = 1486, - [1545] = 1545, - [1546] = 1513, - [1547] = 1517, - [1548] = 1513, - [1549] = 1549, - [1550] = 1550, - [1551] = 1516, - [1552] = 1552, + [1529] = 1457, + [1530] = 1530, + [1531] = 1467, + [1532] = 1532, + [1533] = 1518, + [1534] = 1523, + [1535] = 1500, + [1536] = 1523, + [1537] = 1471, + [1538] = 1441, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 1520, + [1543] = 1543, + [1544] = 1544, + [1545] = 1516, + [1546] = 1452, + [1547] = 1547, + [1548] = 1520, + [1549] = 1488, + [1550] = 1478, + [1551] = 1510, + [1552] = 1439, [1553] = 1553, - [1554] = 1425, + [1554] = 1554, [1555] = 1555, - [1556] = 1516, + [1556] = 1520, [1557] = 1557, - [1558] = 1558, - [1559] = 1553, - [1560] = 1560, + [1558] = 1458, + [1559] = 1523, + [1560] = 1459, [1561] = 1561, - [1562] = 1478, - [1563] = 1513, - [1564] = 1564, - [1565] = 1565, - [1566] = 1513, + [1562] = 1562, + [1563] = 1510, + [1564] = 1523, + [1565] = 1461, + [1566] = 1566, [1567] = 1567, - [1568] = 1478, - [1569] = 1516, - [1570] = 1467, - [1571] = 1571, - [1572] = 1516, - [1573] = 1525, - [1574] = 1574, - [1575] = 1516, - [1576] = 1438, - [1577] = 1577, - [1578] = 1513, - [1579] = 1513, - [1580] = 1478, - [1581] = 1538, + [1568] = 1568, + [1569] = 1554, + [1570] = 1488, + [1571] = 1520, + [1572] = 1488, + [1573] = 1445, + [1574] = 1520, + [1575] = 1575, + [1576] = 1523, + [1577] = 1523, + [1578] = 1557, + [1579] = 1555, + [1580] = 1520, + [1581] = 1516, [1582] = 1582, - [1583] = 1583, + [1583] = 1561, [1584] = 1584, - [1585] = 1585, + [1585] = 1528, [1586] = 1586, - [1587] = 1587, - [1588] = 1588, + [1587] = 1539, + [1588] = 1488, [1589] = 1589, [1590] = 1590, [1591] = 1591, [1592] = 1592, - [1593] = 1592, + [1593] = 1593, [1594] = 1594, [1595] = 1595, - [1596] = 1590, + [1596] = 1596, [1597] = 1597, - [1598] = 1598, - [1599] = 1588, - [1600] = 1592, - [1601] = 1586, - [1602] = 1602, - [1603] = 1592, + [1598] = 1594, + [1599] = 1599, + [1600] = 1600, + [1601] = 1597, + [1602] = 1595, + [1603] = 1603, [1604] = 1604, - [1605] = 1605, + [1605] = 1596, [1606] = 1606, - [1607] = 1607, - [1608] = 1608, - [1609] = 1592, - [1610] = 1594, - [1611] = 1611, + [1607] = 1597, + [1608] = 1591, + [1609] = 1609, + [1610] = 1610, + [1611] = 1597, [1612] = 1612, [1613] = 1613, - [1614] = 1585, + [1614] = 1614, [1615] = 1615, [1616] = 1616, [1617] = 1617, - [1618] = 1594, - [1619] = 1612, - [1620] = 1594, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, [1621] = 1621, [1622] = 1622, - [1623] = 1623, + [1623] = 1597, [1624] = 1624, [1625] = 1625, - [1626] = 1626, - [1627] = 1627, - [1628] = 1628, + [1626] = 1603, + [1627] = 1595, + [1628] = 1606, [1629] = 1629, [1630] = 1630, [1631] = 1631, [1632] = 1632, [1633] = 1633, - [1634] = 1633, - [1635] = 1624, - [1636] = 1623, - [1637] = 1622, - [1638] = 1638, + [1634] = 1634, + [1635] = 1635, + [1636] = 1636, + [1637] = 1637, + [1638] = 1595, [1639] = 1639, - [1640] = 1615, + [1640] = 1640, [1641] = 1641, - [1642] = 1611, - [1643] = 1582, - [1644] = 1613, - [1645] = 1592, - [1646] = 1592, + [1642] = 1620, + [1643] = 1617, + [1644] = 1610, + [1645] = 1609, + [1646] = 1646, [1647] = 1647, - [1648] = 1648, - [1649] = 1594, + [1648] = 1600, + [1649] = 1635, [1650] = 1650, [1651] = 1651, - [1652] = 1628, - [1653] = 1653, + [1652] = 1597, + [1653] = 1597, [1654] = 1654, [1655] = 1655, - [1656] = 1656, - [1657] = 1583, - [1658] = 1658, - [1659] = 1658, - [1660] = 1629, - [1661] = 1639, - [1662] = 963, - [1663] = 954, + [1656] = 1637, + [1657] = 1636, + [1658] = 1595, + [1659] = 1659, + [1660] = 1660, + [1661] = 1661, + [1662] = 1662, + [1663] = 1631, [1664] = 1664, - [1665] = 1592, - [1666] = 1604, + [1665] = 1665, + [1666] = 1666, [1667] = 1667, - [1668] = 1667, - [1669] = 1626, + [1668] = 1668, + [1669] = 1669, [1670] = 1670, - [1671] = 1670, - [1672] = 1672, - [1673] = 1625, - [1674] = 1653, - [1675] = 1675, - [1676] = 959, + [1671] = 1671, + [1672] = 1597, + [1673] = 1612, + [1674] = 1674, + [1675] = 1646, + [1676] = 1676, [1677] = 1677, - [1678] = 1678, - [1679] = 1679, - [1680] = 1680, - [1681] = 1656, - [1682] = 1664, - [1683] = 1627, + [1678] = 1650, + [1679] = 1635, + [1680] = 1651, + [1681] = 1681, + [1682] = 1682, + [1683] = 1659, [1684] = 1684, [1685] = 1685, [1686] = 1686, - [1687] = 1687, - [1688] = 1612, - [1689] = 1689, - [1690] = 1690, - [1691] = 1641, - [1692] = 1616, - [1693] = 1617, + [1687] = 1622, + [1688] = 1629, + [1689] = 1630, + [1690] = 1629, + [1691] = 1691, + [1692] = 1692, + [1693] = 1654, [1694] = 1694, - [1695] = 1695, - [1696] = 1625, - [1697] = 1651, - [1698] = 1698, - [1699] = 1699, - [1700] = 1700, - [1701] = 1698, - [1702] = 1617, - [1703] = 1703, - [1704] = 1616, - [1705] = 1616, + [1695] = 975, + [1696] = 1590, + [1697] = 1697, + [1698] = 1655, + [1699] = 1624, + [1700] = 1625, + [1701] = 1701, + [1702] = 1702, + [1703] = 1633, + [1704] = 1704, + [1705] = 1631, [1706] = 1706, - [1707] = 1626, - [1708] = 1625, - [1709] = 1709, - [1710] = 1616, - [1711] = 1711, - [1712] = 1625, - [1713] = 1713, - [1714] = 1625, - [1715] = 1608, - [1716] = 1625, - [1717] = 1607, + [1707] = 1625, + [1708] = 1708, + [1709] = 1589, + [1710] = 1624, + [1711] = 1666, + [1712] = 1624, + [1713] = 1674, + [1714] = 971, + [1715] = 1633, + [1716] = 968, + [1717] = 1624, [1718] = 1718, - [1719] = 1584, - [1720] = 1689, - [1721] = 1687, - [1722] = 1685, - [1723] = 1606, - [1724] = 1591, - [1725] = 1602, - [1726] = 1679, - [1727] = 1727, - [1728] = 1728, - [1729] = 1729, - [1730] = 1655, + [1719] = 1633, + [1720] = 1720, + [1721] = 1633, + [1722] = 1616, + [1723] = 1633, + [1724] = 1615, + [1725] = 1676, + [1726] = 1718, + [1727] = 1686, + [1728] = 1685, + [1729] = 1684, + [1730] = 1614, [1731] = 1731, - [1732] = 1694, - [1733] = 1718, - [1734] = 1687, - [1735] = 1685, - [1736] = 1703, - [1737] = 1685, - [1738] = 1685, - [1739] = 1647, + [1732] = 1701, + [1733] = 1702, + [1734] = 1697, + [1735] = 1735, + [1736] = 1691, + [1737] = 1704, + [1738] = 1677, + [1739] = 1665, [1740] = 1740, - [1741] = 1641, - [1742] = 1740, - [1743] = 1605, - [1744] = 1638, - [1745] = 1632, - [1746] = 1630, - [1747] = 1675, + [1741] = 1685, + [1742] = 1684, + [1743] = 1743, + [1744] = 1684, + [1745] = 1684, + [1746] = 1640, + [1747] = 1747, + [1748] = 1604, + [1749] = 1747, + [1750] = 1613, + [1751] = 1621, + [1752] = 1619, + [1753] = 1618, + [1754] = 1633, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -4159,9 +4172,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(254); ADVANCE_MAP( '!', 273, - '"', 416, + '"', 415, '#', 274, - '$', 423, + '$', 422, '%', 339, '&', 344, '\'', 27, @@ -4171,15 +4184,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 333, ',', 283, '-', 336, - '.', 367, + '.', 366, '/', 338, - '0', 397, + '0', 396, ':', 266, ';', 260, - '<', 424, + '<', 423, '=', 271, '>', 331, - '?', 369, + '?', 368, '@', 364, 'B', 211, '[', 275, @@ -4210,14 +4223,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(250); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); case 1: ADVANCE_MAP( '!', 273, - '"', 411, + '"', 410, '#', 274, - '$', 423, + '$', 422, '%', 339, '&', 344, '\'', 27, @@ -4227,36 +4240,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 333, ',', 283, '-', 336, - '.', 367, + '.', 366, '/', 338, - '0', 397, + '0', 396, ':', 266, ';', 260, '<', 329, '=', 271, '>', 331, - '?', 369, + '?', 368, '@', 364, - 'B', 595, + 'B', 592, '[', 275, ']', 276, '^', 341, '_', 298, - 'b', 432, - 'c', 434, - 'd', 487, - 'e', 536, - 'f', 465, - 'i', 437, - 'l', 501, - 'm', 475, - 'n', 547, - 'p', 585, - 'r', 508, - 's', 568, - 't', 554, - 'u', 441, - 'w', 513, + 'b', 431, + 'c', 433, + 'd', 485, + 'e', 534, + 'f', 464, + 'i', 436, + 'l', 499, + 'm', 474, + 'n', 545, + 'p', 582, + 'r', 506, + 's', 572, + 't', 552, + 'u', 440, + 'w', 511, '{', 255, '|', 346, '}', 256, @@ -4264,14 +4277,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 2: ADVANCE_MAP( '!', 273, - '"', 411, + '"', 410, '%', 339, '&', 343, '\'', 27, @@ -4283,31 +4296,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 335, '.', 366, '/', 338, - '0', 397, + '0', 396, ':', 266, ';', 260, '<', 329, '=', 270, '>', 331, - '?', 369, + '?', 368, '@', 364, - 'B', 595, + 'B', 592, '[', 275, ']', 276, '^', 340, - '_', 409, - 'b', 432, - 'c', 435, - 'd', 487, - 'f', 466, - 'i', 438, - 'l', 544, - 'm', 474, - 'r', 488, - 's', 580, - 't', 563, - 'u', 442, - 'w', 513, + '_', 408, + 'b', 431, + 'c', 434, + 'd', 485, + 'f', 465, + 'i', 437, + 'l', 542, + 'm', 473, + 'r', 486, + 's', 584, + 't', 561, + 'u', 441, + 'w', 511, '{', 255, '|', 347, '}', 256, @@ -4315,14 +4328,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 3: ADVANCE_MAP( '!', 273, - '"', 411, + '"', 410, '%', 339, '&', 343, '\'', 27, @@ -4332,38 +4345,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 335, '.', 366, '/', 338, - '0', 397, + '0', 396, ':', 92, '<', 329, '=', 271, '>', 331, - '?', 369, + '?', 368, '@', 364, - 'B', 595, + 'B', 592, '[', 275, '^', 340, - '_', 409, - 'b', 432, - 'c', 435, - 'd', 487, - 'f', 466, - 'i', 438, - 'l', 544, - 'm', 474, - 'r', 488, - 's', 580, - 't', 563, - 'u', 442, - 'w', 513, + '_', 408, + 'b', 431, + 'c', 434, + 'd', 485, + 'f', 465, + 'i', 437, + 'l', 542, + 'm', 473, + 'r', 486, + 's', 584, + 't', 561, + 'u', 441, + 'w', 511, '{', 255, '|', 347, '~', 342, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 4: ADVANCE_MAP( @@ -4378,13 +4391,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 335, '.', 366, '/', 338, - '0', 397, + '0', 396, ':', 92, ';', 260, '<', 329, '=', 270, '>', 331, - '?', 369, + '?', 368, '[', 275, ']', 276, '^', 340, @@ -4399,12 +4412,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); if (('1' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(399); + lookahead == '_') ADVANCE(398); END_STATE(); case 5: ADVANCE_MAP( '!', 272, - '"', 411, + '"', 410, '#', 274, '\'', 27, '(', 296, @@ -4412,186 +4425,191 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '*', 294, ',', 283, '-', 334, + '.', 64, '/', 65, - '0', 397, + '0', 396, ':', 266, ';', 260, '<', 328, '=', 269, '@', 364, - 'B', 595, + 'B', 592, '[', 275, ']', 276, - '_', 409, - 'b', 432, - 'c', 435, - 'd', 487, - 'f', 466, - 'i', 438, - 'l', 544, - 'm', 474, - 'r', 488, - 's', 580, - 't', 563, - 'u', 442, - 'w', 513, + '_', 408, + 'b', 431, + 'c', 434, + 'd', 485, + 'f', 465, + 'i', 437, + 'l', 542, + 'm', 473, + 'r', 486, + 's', 584, + 't', 561, + 'u', 441, + 'w', 511, '{', 255, '|', 345, '~', 342, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 6: ADVANCE_MAP( '!', 272, - '"', 411, + '"', 410, '\'', 27, '(', 296, '*', 294, '-', 334, + '.', 64, '/', 65, - '0', 397, + '0', 396, ':', 92, '@', 364, - 'B', 595, + 'B', 592, '[', 275, - '_', 409, - 'b', 432, - 'c', 435, - 'd', 487, - 'f', 466, - 'i', 438, - 'l', 501, - 'm', 474, - 'r', 488, - 's', 580, - 't', 563, - 'u', 442, - 'w', 513, + '_', 408, + 'b', 431, + 'c', 434, + 'd', 485, + 'f', 465, + 'i', 437, + 'l', 499, + 'm', 473, + 'r', 486, + 's', 584, + 't', 561, + 'u', 441, + 'w', 511, '{', 255, '|', 345, '~', 342, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 7: ADVANCE_MAP( '!', 272, - '"', 411, + '"', 410, '\'', 27, '(', 296, '*', 294, '-', 334, + '.', 64, '/', 65, - '0', 397, + '0', 396, ':', 92, '@', 364, - 'B', 595, + 'B', 592, '[', 275, - '_', 409, - 'b', 432, - 'c', 435, - 'd', 487, - 'f', 466, - 'i', 438, - 'l', 544, - 'm', 473, - 'r', 488, - 's', 580, - 't', 563, - 'u', 442, - 'w', 513, + '_', 408, + 'b', 431, + 'c', 434, + 'd', 485, + 'f', 465, + 'i', 437, + 'l', 542, + 'm', 472, + 'r', 486, + 's', 584, + 't', 561, + 'u', 441, + 'w', 511, '{', 255, '|', 345, '~', 342, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 8: ADVANCE_MAP( '!', 272, - '"', 411, + '"', 410, '\'', 27, '(', 296, '*', 294, '-', 337, + '.', 64, '/', 65, - '0', 397, + '0', 396, ':', 92, '@', 364, - 'B', 595, + 'B', 592, '[', 275, '_', 298, - 'b', 432, - 'c', 435, - 'd', 487, - 'f', 466, - 'i', 438, - 'l', 544, - 'm', 474, - 'r', 488, - 's', 580, - 't', 563, - 'u', 442, - 'w', 513, + 'b', 431, + 'c', 434, + 'd', 485, + 'f', 465, + 'i', 437, + 'l', 542, + 'm', 473, + 'r', 486, + 's', 584, + 't', 561, + 'u', 441, + 'w', 511, '{', 255, '|', 345, '~', 342, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 9: ADVANCE_MAP( '!', 272, - '"', 411, + '"', 410, '\'', 27, '(', 296, '*', 294, '-', 337, + '.', 64, '/', 65, - '0', 397, + '0', 396, ':', 92, '@', 364, - 'B', 595, + 'B', 592, '[', 275, '_', 298, - 'b', 432, - 'c', 435, - 'd', 487, - 'f', 466, - 'i', 438, - 'l', 544, - 'm', 473, - 'r', 488, - 's', 580, - 't', 563, - 'u', 442, - 'w', 513, + 'b', 431, + 'c', 434, + 'd', 485, + 'f', 465, + 'i', 437, + 'l', 542, + 'm', 472, + 'r', 486, + 's', 584, + 't', 561, + 'u', 441, + 'w', 511, '{', 255, '|', 345, '~', 342, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 10: ADVANCE_MAP( @@ -4603,7 +4621,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '/', 65, ':', 266, ';', 260, - '<', 424, + '<', 423, '=', 269, '>', 330, '[', 275, @@ -4626,7 +4644,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '/', 65, ':', 92, ';', 260, - '<', 424, + '<', 423, '=', 95, ']', 276, 'i', 133, @@ -4639,7 +4657,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 12: ADVANCE_MAP( '!', 93, - '"', 416, + '"', 415, '#', 274, '%', 339, '&', 343, @@ -4654,22 +4672,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 329, '=', 271, '>', 331, - '?', 369, - 'B', 595, + '?', 368, + 'B', 592, '[', 275, '^', 340, - 'b', 541, - 'c', 548, - 'd', 487, - 'e', 536, - 'f', 504, - 'i', 439, - 'l', 502, - 'm', 543, - 'p', 585, - 's', 583, - 't', 562, - 'u', 441, + 'b', 539, + 'c', 546, + 'd', 485, + 'e', 534, + 'f', 502, + 'i', 438, + 'l', 500, + 'm', 541, + 'p', 582, + 's', 574, + 't', 559, + 'u', 440, '|', 347, '}', 256, ); @@ -4677,12 +4695,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(15); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 13: ADVANCE_MAP( '!', 93, - '"', 411, + '"', 410, '#', 274, '%', 339, '&', 343, @@ -4694,39 +4712,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 335, '.', 366, '/', 338, - '0', 397, + '0', 396, ':', 92, '<', 329, '=', 270, '>', 331, - '?', 369, - 'B', 595, + '?', 368, + 'B', 592, '[', 275, '^', 340, '_', 298, - 'b', 433, - 'c', 436, - 'd', 487, - 'e', 530, - 'f', 467, - 'i', 440, - 'm', 590, - 's', 587, - 't', 563, - 'u', 442, + 'b', 432, + 'c', 435, + 'd', 485, + 'e', 528, + 'f', 466, + 'i', 439, + 'm', 588, + 's', 584, + 't', 561, + 'u', 441, '|', 347, '}', 256, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 14: ADVANCE_MAP( '!', 93, - '"', 411, + '"', 410, '#', 274, '%', 339, '&', 343, @@ -4738,33 +4756,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 335, '.', 366, '/', 338, - '0', 397, + '0', 396, ':', 92, '<', 329, '=', 270, '>', 331, - '?', 369, - 'B', 595, + '?', 368, + 'B', 592, '[', 275, '^', 340, '_', 298, - 'b', 433, - 'c', 436, - 'd', 487, - 'f', 467, - 'i', 440, - 'm', 590, - 's', 587, - 't', 563, - 'u', 442, + 'b', 432, + 'c', 435, + 'd', 485, + 'f', 466, + 'i', 439, + 'm', 588, + 's', 584, + 't', 561, + 'u', 441, '|', 347, '}', 256, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 15: ADVANCE_MAP( @@ -4783,22 +4801,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 329, '=', 271, '>', 331, - '?', 369, - 'B', 595, + '?', 368, + 'B', 592, '[', 275, '^', 340, - 'b', 541, - 'c', 548, - 'd', 487, - 'e', 536, - 'f', 504, - 'i', 439, - 'l', 502, - 'm', 543, - 'p', 585, - 's', 583, - 't', 562, - 'u', 441, + 'b', 539, + 'c', 546, + 'd', 485, + 'e', 534, + 'f', 502, + 'i', 438, + 'l', 500, + 'm', 541, + 'p', 582, + 's', 574, + 't', 559, + 'u', 440, '|', 347, '}', 256, ); @@ -4806,7 +4824,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(15); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 16: ADVANCE_MAP( @@ -4824,7 +4842,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 329, '=', 271, '>', 331, - '?', 369, + '?', 368, '[', 275, '^', 340, 'e', 151, @@ -4836,7 +4854,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 17: ADVANCE_MAP( - '"', 411, + '"', 410, '#', 274, '\'', 27, '(', 296, @@ -4844,34 +4862,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ',', 283, '-', 334, '/', 65, - '0', 397, + '0', 396, ':', 92, '@', 364, - 'B', 595, + 'B', 592, '[', 275, ']', 276, '_', 298, - 'b', 433, - 'c', 436, - 'd', 487, - 'f', 467, - 'i', 440, - 'm', 590, - 's', 587, - 't', 563, - 'u', 442, + 'b', 432, + 'c', 435, + 'd', 485, + 'f', 466, + 'i', 439, + 'm', 588, + 's', 584, + 't', 561, + 'u', 441, '|', 345, '}', 256, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 18: ADVANCE_MAP( - '"', 411, + '"', 410, '#', 274, '\'', 27, '(', 296, @@ -4879,99 +4897,99 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ',', 283, '-', 334, '/', 65, - '0', 397, + '0', 396, ':', 92, '@', 364, - 'B', 595, + 'B', 592, '[', 275, '_', 298, - 'b', 433, - 'c', 436, - 'd', 487, - 'f', 467, - 'i', 440, - 'm', 590, - 'r', 503, - 's', 587, - 't', 563, - 'u', 442, + 'b', 432, + 'c', 435, + 'd', 485, + 'f', 466, + 'i', 439, + 'm', 588, + 'r', 501, + 's', 584, + 't', 561, + 'u', 441, '|', 345, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 19: ADVANCE_MAP( - '"', 411, + '"', 410, '\'', 27, '(', 296, ')', 299, ',', 283, '-', 334, '/', 65, - '0', 397, + '0', 396, ':', 92, '@', 364, - 'B', 595, + 'B', 592, '[', 275, '_', 298, - 'b', 433, - 'c', 436, - 'd', 487, - 'f', 467, - 'i', 440, - 'm', 542, - 's', 580, - 't', 563, - 'u', 442, + 'b', 432, + 'c', 435, + 'd', 485, + 'f', 466, + 'i', 439, + 'm', 540, + 's', 584, + 't', 561, + 'u', 441, '|', 345, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(19); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 20: ADVANCE_MAP( - '"', 411, + '"', 410, '\'', 27, '(', 296, '-', 334, '/', 65, - '0', 397, + '0', 396, ':', 92, '>', 330, '@', 364, - 'B', 595, + 'B', 592, '[', 275, - '_', 409, - 'b', 433, - 'c', 436, - 'd', 487, - 'f', 467, - 'i', 440, - 's', 587, - 't', 563, - 'u', 442, + '_', 408, + 'b', 432, + 'c', 435, + 'd', 485, + 'f', 466, + 'i', 439, + 's', 584, + 't', 561, + 'u', 441, '{', 255, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(20); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 21: - if (lookahead == '"') ADVANCE(411); + if (lookahead == '"') ADVANCE(410); if (lookahead == 'o') ADVANCE(163); if (lookahead == 'r') ADVANCE(105); END_STATE(); case 22: - if (lookahead == '"') ADVANCE(411); + if (lookahead == '"') ADVANCE(410); if (lookahead == 'o') ADVANCE(169); if (lookahead == 'r') ADVANCE(128); END_STATE(); @@ -4983,202 +5001,202 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '/', 65, ':', 92, '>', 330, - 'B', 595, - 'b', 541, - 'c', 548, - 'd', 487, - 'f', 505, - 'i', 439, - 's', 587, - 'u', 442, + 'B', 592, + 'b', 539, + 'c', 546, + 'd', 485, + 'f', 503, + 'i', 438, + 's', 584, + 'u', 441, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(23); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 24: if (lookahead == '#') ADVANCE(274); if (lookahead == ',') ADVANCE(283); if (lookahead == '.') ADVANCE(64); if (lookahead == '/') ADVANCE(65); - if (lookahead == '0') ADVANCE(397); - if (lookahead == '_') ADVANCE(409); + if (lookahead == '0') ADVANCE(396); + if (lookahead == '_') ADVANCE(408); if (lookahead == '}') ADVANCE(256); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(24); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 25: if (lookahead == '#') ADVANCE(274); if (lookahead == ',') ADVANCE(283); if (lookahead == '/') ADVANCE(65); - if (lookahead == 'p') ADVANCE(585); + if (lookahead == 'p') ADVANCE(582); if (lookahead == '}') ADVANCE(256); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(25); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 26: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); END_STATE(); case 27: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(249); if (lookahead != 0) ADVANCE(57); END_STATE(); case 28: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(220); if (lookahead != 0) ADVANCE(29); END_STATE(); case 29: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(218); if (lookahead != 0) ADVANCE(26); END_STATE(); case 30: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(221); if (lookahead != 0) ADVANCE(28); END_STATE(); case 31: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(222); if (lookahead != 0) ADVANCE(30); END_STATE(); case 32: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(223); if (lookahead != 0) ADVANCE(31); END_STATE(); case 33: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(224); if (lookahead != 0) ADVANCE(32); END_STATE(); case 34: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(225); if (lookahead != 0) ADVANCE(33); END_STATE(); case 35: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(226); if (lookahead != 0) ADVANCE(34); END_STATE(); case 36: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(227); if (lookahead != 0) ADVANCE(35); END_STATE(); case 37: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(228); if (lookahead != 0) ADVANCE(36); END_STATE(); case 38: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(229); if (lookahead != 0) ADVANCE(37); END_STATE(); case 39: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(230); if (lookahead != 0) ADVANCE(38); END_STATE(); case 40: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(231); if (lookahead != 0) ADVANCE(39); END_STATE(); case 41: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(232); if (lookahead != 0) ADVANCE(40); END_STATE(); case 42: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(233); if (lookahead != 0) ADVANCE(41); END_STATE(); case 43: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(234); if (lookahead != 0) ADVANCE(42); END_STATE(); case 44: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(235); if (lookahead != 0) ADVANCE(43); END_STATE(); case 45: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(236); if (lookahead != 0) ADVANCE(44); END_STATE(); case 46: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(237); if (lookahead != 0) ADVANCE(45); END_STATE(); case 47: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(238); if (lookahead != 0) ADVANCE(46); END_STATE(); case 48: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(239); if (lookahead != 0) ADVANCE(47); END_STATE(); case 49: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(240); if (lookahead != 0) ADVANCE(48); END_STATE(); case 50: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(241); if (lookahead != 0) ADVANCE(49); END_STATE(); case 51: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(242); if (lookahead != 0) ADVANCE(50); END_STATE(); case 52: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(243); if (lookahead != 0) ADVANCE(51); END_STATE(); case 53: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(244); if (lookahead != 0) ADVANCE(52); END_STATE(); case 54: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(245); if (lookahead != 0) ADVANCE(53); END_STATE(); case 55: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(246); if (lookahead != 0) ADVANCE(54); END_STATE(); case 56: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(247); if (lookahead != 0) ADVANCE(55); END_STATE(); case 57: - if (lookahead == '\'') ADVANCE(418); + if (lookahead == '\'') ADVANCE(417); if (lookahead == '\\') ADVANCE(248); if (lookahead != 0) ADVANCE(56); END_STATE(); @@ -5191,14 +5209,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '/', 65, ':', 92, '@', 364, - 'B', 595, + 'B', 592, '[', 275, - 'b', 541, - 'd', 487, - 'f', 505, - 'i', 440, - 's', 587, - 'u', 442, + 'b', 539, + 'd', 485, + 'f', 503, + 'i', 439, + 's', 584, + 'u', 441, '{', 255, '}', 256, ); @@ -5206,7 +5224,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(58); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 59: ADVANCE_MAP( @@ -5215,22 +5233,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ':', 92, ';', 260, '@', 364, - 'B', 595, + 'B', 592, '[', 275, - 'b', 541, - 'd', 487, - 'f', 505, - 'i', 440, - 'n', 547, - 's', 587, - 'u', 442, + 'b', 539, + 'd', 485, + 'f', 503, + 'i', 439, + 'n', 545, + 's', 584, + 'u', 441, '{', 255, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(59); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 60: if (lookahead == '(') ADVANCE(296); @@ -5239,7 +5257,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(60); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 61: ADVANCE_MAP( @@ -5265,40 +5283,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 62: if (lookahead == '*') ADVANCE(294); if (lookahead == '/') ADVANCE(65); - if (lookahead == '<') ADVANCE(424); - if (lookahead == 's') ADVANCE(587); + if (lookahead == '<') ADVANCE(423); + if (lookahead == 's') ADVANCE(584); if (lookahead == '{') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(62); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 63: if (lookahead == ',') ADVANCE(283); if (lookahead == '/') ADVANCE(65); - if (lookahead == 'm') ADVANCE(590); + if (lookahead == 'm') ADVANCE(588); if (lookahead == '}') ADVANCE(256); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(63); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 64: if (lookahead == '.') ADVANCE(365); END_STATE(); case 65: - if (lookahead == '/') ADVANCE(605); + if (lookahead == '/') ADVANCE(602); END_STATE(); case 66: if (lookahead == '1') ADVANCE(70); if (lookahead == '3') ADVANCE(71); if (lookahead == '6') ADVANCE(81); if (lookahead == '8') ADVANCE(302); - if (lookahead == 'f') ADVANCE(376); + if (lookahead == 'f') ADVANCE(375); if (lookahead == 'm') ADVANCE(173); - if (lookahead == 'n') ADVANCE(429); + if (lookahead == 'n') ADVANCE(428); END_STATE(); case 67: if (lookahead == '1') ADVANCE(76); @@ -5312,14 +5330,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '2') ADVANCE(84); if (lookahead == '3') ADVANCE(73); if (lookahead == '6') ADVANCE(83); - if (lookahead == '8') ADVANCE(396); + if (lookahead == '8') ADVANCE(395); if (lookahead == 's') ADVANCE(147); END_STATE(); case 69: if (lookahead == '1') ADVANCE(78); if (lookahead == '3') ADVANCE(73); if (lookahead == '6') ADVANCE(83); - if (lookahead == '8') ADVANCE(396); + if (lookahead == '8') ADVANCE(395); END_STATE(); case 70: if (lookahead == '2') ADVANCE(90); @@ -5332,13 +5350,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '2') ADVANCE(308); END_STATE(); case 73: - if (lookahead == '2') ADVANCE(396); + if (lookahead == '2') ADVANCE(395); END_STATE(); case 74: if (lookahead == '2') ADVANCE(326); END_STATE(); case 75: - if (lookahead == '2') ADVANCE(417); + if (lookahead == '2') ADVANCE(416); END_STATE(); case 76: if (lookahead == '2') ADVANCE(91); @@ -5349,7 +5367,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 78: if (lookahead == '2') ADVANCE(89); - if (lookahead == '6') ADVANCE(396); + if (lookahead == '6') ADVANCE(395); END_STATE(); case 79: if (lookahead == '2') ADVANCE(85); @@ -5364,7 +5382,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '4') ADVANCE(312); END_STATE(); case 83: - if (lookahead == '4') ADVANCE(396); + if (lookahead == '4') ADVANCE(395); END_STATE(); case 84: if (lookahead == '5') ADVANCE(88); @@ -5379,10 +5397,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '5') ADVANCE(75); END_STATE(); case 88: - if (lookahead == '6') ADVANCE(396); + if (lookahead == '6') ADVANCE(395); END_STATE(); case 89: - if (lookahead == '8') ADVANCE(396); + if (lookahead == '8') ADVANCE(395); END_STATE(); case 90: if (lookahead == '8') ADVANCE(318); @@ -5400,7 +5418,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(286); END_STATE(); case 95: - if (lookahead == '>') ADVANCE(368); + if (lookahead == '>') ADVANCE(367); END_STATE(); case 96: if (lookahead == 'A') ADVANCE(183); @@ -5440,13 +5458,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(202); END_STATE(); case 106: - if (lookahead == 'b') ADVANCE(386); + if (lookahead == 'b') ADVANCE(385); END_STATE(); case 107: - if (lookahead == 'c') ADVANCE(390); + if (lookahead == 'c') ADVANCE(389); END_STATE(); case 108: - if (lookahead == 'c') ADVANCE(380); + if (lookahead == 'c') ADVANCE(379); END_STATE(); case 109: if (lookahead == 'c') ADVANCE(139); @@ -5469,37 +5487,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(213); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(396); + if (lookahead == 'e') ADVANCE(395); END_STATE(); case 116: if (lookahead == 'e') ADVANCE(96); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(425); + if (lookahead == 'e') ADVANCE(424); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(427); + if (lookahead == 'e') ADVANCE(426); END_STATE(); case 119: - if (lookahead == 'e') ADVANCE(419); + if (lookahead == 'e') ADVANCE(418); END_STATE(); case 120: if (lookahead == 'e') ADVANCE(263); END_STATE(); case 121: - if (lookahead == 'e') ADVANCE(604); + if (lookahead == 'e') ADVANCE(601); END_STATE(); case 122: - if (lookahead == 'e') ADVANCE(421); + if (lookahead == 'e') ADVANCE(420); END_STATE(); case 123: if (lookahead == 'e') ADVANCE(320); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(392); + if (lookahead == 'e') ADVANCE(391); END_STATE(); case 125: - if (lookahead == 'e') ADVANCE(372); + if (lookahead == 'e') ADVANCE(371); END_STATE(); case 126: if (lookahead == 'e') ADVANCE(136); @@ -5524,13 +5542,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(159); END_STATE(); case 133: - if (lookahead == 'f') ADVANCE(376); + if (lookahead == 'f') ADVANCE(375); END_STATE(); case 134: if (lookahead == 'f') ADVANCE(259); END_STATE(); case 135: - if (lookahead == 'f') ADVANCE(430); + if (lookahead == 'f') ADVANCE(429); if (lookahead == 't') ADVANCE(210); END_STATE(); case 136: @@ -5543,7 +5561,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'h') ADVANCE(143); END_STATE(); case 139: - if (lookahead == 'h') ADVANCE(384); + if (lookahead == 'h') ADVANCE(383); END_STATE(); case 140: if (lookahead == 'i') ADVANCE(166); @@ -5570,7 +5588,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(214); END_STATE(); case 148: - if (lookahead == 'k') ADVANCE(370); + if (lookahead == 'k') ADVANCE(369); END_STATE(); case 149: if (lookahead == 'l') ADVANCE(322); @@ -5615,16 +5633,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 162: if (lookahead == 'm') ADVANCE(174); - if (lookahead == 'n') ADVANCE(429); + if (lookahead == 'n') ADVANCE(428); END_STATE(); case 163: if (lookahead == 'n') ADVANCE(187); END_STATE(); case 164: - if (lookahead == 'n') ADVANCE(378); + if (lookahead == 'n') ADVANCE(377); END_STATE(); case 165: - if (lookahead == 'n') ADVANCE(388); + if (lookahead == 'n') ADVANCE(387); END_STATE(); case 166: if (lookahead == 'n') ADVANCE(208); @@ -5642,7 +5660,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(171); END_STATE(); case 171: - if (lookahead == 'p') ADVANCE(382); + if (lookahead == 'p') ADVANCE(381); END_STATE(); case 172: if (lookahead == 'p') ADVANCE(100); @@ -5664,10 +5682,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'y') ADVANCE(176); END_STATE(); case 178: - if (lookahead == 'r') ADVANCE(394); + if (lookahead == 'r') ADVANCE(393); END_STATE(); case 179: - if (lookahead == 'r') ADVANCE(602); + if (lookahead == 'r') ADVANCE(599); END_STATE(); case 180: if (lookahead == 'r') ADVANCE(164); @@ -5708,7 +5726,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(109); END_STATE(); case 192: - if (lookahead == 't') ADVANCE(600); + if (lookahead == 't') ADVANCE(597); END_STATE(); case 193: if (lookahead == 't') ADVANCE(267); @@ -5720,7 +5738,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(279); END_STATE(); case 196: - if (lookahead == 't') ADVANCE(374); + if (lookahead == 't') ADVANCE(373); END_STATE(); case 197: if (lookahead == 't') ADVANCE(185); @@ -5779,17 +5797,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 215: if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(401); + lookahead == '_') ADVANCE(400); END_STATE(); case 216: if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(403); + lookahead == '_') ADVANCE(402); END_STATE(); case 217: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(406); END_STATE(); case 218: if (lookahead != 0 && @@ -5797,7 +5815,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 219: if (lookahead != 0 && - lookahead != '\n') ADVANCE(415); + lookahead != '\n') ADVANCE(414); END_STATE(); case 220: if (lookahead != 0 && @@ -5923,9 +5941,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(254); ADVANCE_MAP( '!', 273, - '"', 411, + '"', 410, '#', 274, - '$', 423, + '$', 422, '%', 339, '&', 344, '\'', 27, @@ -5935,15 +5953,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 333, ',', 283, '-', 336, - '.', 367, + '.', 366, '/', 338, - '0', 397, + '0', 396, ':', 266, ';', 260, - '<', 424, + '<', 423, '=', 271, '>', 331, - '?', 369, + '?', 368, '@', 364, 'B', 211, '[', 275, @@ -5974,13 +5992,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(250); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); case 251: if (eof) ADVANCE(254); ADVANCE_MAP( '!', 273, - '"', 411, + '"', 410, '#', 274, '%', 339, '&', 343, @@ -5993,33 +6011,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 335, '.', 366, '/', 338, - '0', 397, + '0', 396, ':', 92, ';', 260, '<', 329, '=', 270, '>', 331, - '?', 369, + '?', 368, '@', 364, - 'B', 595, + 'B', 592, '[', 275, ']', 276, '^', 340, - '_', 409, - 'b', 432, - 'c', 434, - 'd', 487, - 'e', 536, - 'f', 465, - 'i', 437, - 'l', 501, - 'm', 472, - 'p', 585, - 'r', 488, - 's', 568, - 't', 554, - 'u', 441, - 'w', 513, + '_', 408, + 'b', 431, + 'c', 433, + 'd', 485, + 'e', 534, + 'f', 464, + 'i', 436, + 'l', 499, + 'm', 471, + 'p', 582, + 'r', 486, + 's', 574, + 't', 552, + 'u', 440, + 'w', 511, '{', 255, '|', 347, '}', 256, @@ -6027,15 +6045,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(251); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 252: if (eof) ADVANCE(254); ADVANCE_MAP( '!', 273, - '"', 411, + '"', 410, '#', 274, '%', 339, '&', 343, @@ -6046,32 +6064,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 335, '.', 366, '/', 338, - '0', 397, + '0', 396, ':', 92, ';', 260, '<', 329, '=', 270, '>', 331, - '?', 369, + '?', 368, '@', 364, - 'B', 595, + 'B', 592, '[', 275, '^', 340, - '_', 409, - 'b', 432, - 'c', 434, - 'd', 487, - 'e', 529, - 'f', 465, - 'i', 437, - 'l', 501, - 'm', 472, - 'p', 585, - 'r', 488, - 's', 568, - 't', 554, - 'u', 441, - 'w', 513, + '_', 408, + 'b', 431, + 'c', 433, + 'd', 485, + 'e', 527, + 'f', 464, + 'i', 436, + 'l', 499, + 'm', 471, + 'p', 582, + 'r', 486, + 's', 574, + 't', 552, + 'u', 440, + 'w', 511, '{', 255, '|', 347, '}', 256, @@ -6079,15 +6097,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(252); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 253: if (eof) ADVANCE(254); ADVANCE_MAP( '!', 272, - '"', 411, + '"', 410, '#', 274, '\'', 27, '(', 296, @@ -6095,32 +6113,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '*', 294, ',', 283, '-', 334, + '.', 64, '/', 65, - '0', 397, + '0', 396, ':', 266, ';', 260, - '<', 424, + '<', 423, '=', 269, '>', 330, '@', 364, - 'B', 595, + 'B', 592, '[', 275, ']', 276, - '_', 409, - 'b', 432, - 'c', 434, - 'd', 487, - 'e', 536, - 'f', 465, - 'i', 437, - 'l', 501, - 'm', 472, - 'p', 585, - 'r', 488, - 's', 568, - 't', 554, - 'u', 441, - 'w', 513, + '_', 408, + 'b', 431, + 'c', 433, + 'd', 485, + 'e', 534, + 'f', 464, + 'i', 436, + 'l', 499, + 'm', 471, + 'p', 582, + 'r', 486, + 's', 574, + 't', 552, + 'u', 440, + 'w', 511, '{', 255, '|', 345, '}', 256, @@ -6128,9 +6147,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(253); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 254: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -6149,7 +6168,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 259: ACCEPT_TOKEN(anon_sym_of); @@ -6165,7 +6184,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 263: ACCEPT_TOKEN(anon_sym_type); @@ -6175,7 +6194,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 265: ACCEPT_TOKEN(anon_sym_COLON); @@ -6192,7 +6211,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 269: ACCEPT_TOKEN(anon_sym_EQ); @@ -6204,7 +6223,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 271: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(360); - if (lookahead == '>') ADVANCE(368); + if (lookahead == '>') ADVANCE(367); END_STATE(); case 272: ACCEPT_TOKEN(anon_sym_BANG); @@ -6230,7 +6249,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 279: ACCEPT_TOKEN(anon_sym_struct); @@ -6240,7 +6259,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 281: ACCEPT_TOKEN(anon_sym_enum); @@ -6250,7 +6269,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 283: ACCEPT_TOKEN(anon_sym_COMMA); @@ -6263,7 +6282,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 286: ACCEPT_TOKEN(anon_sym_DASH_GT); @@ -6279,7 +6298,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 290: ACCEPT_TOKEN(anon_sym_use); @@ -6289,7 +6308,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 292: ACCEPT_TOKEN(anon_sym_COLON_COLON); @@ -6309,15 +6328,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 297: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (lookahead == '_') ADVANCE(397); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); case 298: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(408); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(409); + if (lookahead == '_') ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 299: ACCEPT_TOKEN(anon_sym_RPAREN); @@ -6330,7 +6349,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 302: ACCEPT_TOKEN(anon_sym_i8); @@ -6340,7 +6359,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 304: ACCEPT_TOKEN(anon_sym_u16); @@ -6350,7 +6369,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 306: ACCEPT_TOKEN(anon_sym_i16); @@ -6360,7 +6379,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 308: ACCEPT_TOKEN(anon_sym_u32); @@ -6370,7 +6389,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 310: ACCEPT_TOKEN(anon_sym_i32); @@ -6380,7 +6399,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 312: ACCEPT_TOKEN(anon_sym_u64); @@ -6390,7 +6409,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 314: ACCEPT_TOKEN(anon_sym_i64); @@ -6400,7 +6419,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 316: ACCEPT_TOKEN(anon_sym_u128); @@ -6410,7 +6429,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 318: ACCEPT_TOKEN(anon_sym_i128); @@ -6420,7 +6439,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 320: ACCEPT_TOKEN(anon_sym_usize); @@ -6430,7 +6449,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 322: ACCEPT_TOKEN(anon_sym_bool); @@ -6440,7 +6459,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 324: ACCEPT_TOKEN(anon_sym_ByteArray); @@ -6450,7 +6469,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 326: ACCEPT_TOKEN(anon_sym_felt252); @@ -6460,7 +6479,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 328: ACCEPT_TOKEN(anon_sym_LT); @@ -6503,7 +6522,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 338: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(605); + if (lookahead == '/') ADVANCE(602); if (lookahead == '=') ADVANCE(355); END_STATE(); case 339: @@ -6596,605 +6615,610 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 366: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 367: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(365); END_STATE(); - case 368: + case 367: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 369: + case 368: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 370: + case 369: ACCEPT_TOKEN(anon_sym_break); END_STATE(); - case 371: + case 370: ACCEPT_TOKEN(anon_sym_break); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 372: + case 371: ACCEPT_TOKEN(anon_sym_continue); END_STATE(); - case 373: + case 372: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 374: + case 373: ACCEPT_TOKEN(anon_sym_default); END_STATE(); - case 375: + case 374: ACCEPT_TOKEN(anon_sym_default); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 376: + case 375: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 377: + case 376: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 378: + case 377: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 379: + case 378: ACCEPT_TOKEN(anon_sym_extern); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 380: + case 379: ACCEPT_TOKEN(anon_sym_nopanic); END_STATE(); - case 381: + case 380: ACCEPT_TOKEN(anon_sym_nopanic); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 382: + case 381: ACCEPT_TOKEN(anon_sym_loop); END_STATE(); - case 383: + case 382: ACCEPT_TOKEN(anon_sym_loop); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 384: + case 383: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 385: + case 384: ACCEPT_TOKEN(anon_sym_match); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 386: + case 385: ACCEPT_TOKEN(anon_sym_pub); END_STATE(); - case 387: + case 386: ACCEPT_TOKEN(anon_sym_pub); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 388: + case 387: ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 389: + case 388: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 390: + case 389: ACCEPT_TOKEN(anon_sym_static); END_STATE(); - case 391: + case 390: ACCEPT_TOKEN(anon_sym_static); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 392: + case 391: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 393: + case 392: ACCEPT_TOKEN(anon_sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 394: + case 393: ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 395: + case 394: ACCEPT_TOKEN(anon_sym_for); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 396: + case 395: ACCEPT_TOKEN(sym_numeric_literal); END_STATE(); - case 397: + case 396: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(398); + if (lookahead == '_') ADVANCE(397); if (lookahead == 'b') ADVANCE(215); if (lookahead == 'o') ADVANCE(216); if (lookahead == 'x') ADVANCE(217); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); - case 398: + case 397: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(398); + if (lookahead == '_') ADVANCE(397); if (lookahead == 'f') ADVANCE(131); if (lookahead == 'i') ADVANCE(69); if (lookahead == 'u') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); - case 399: + case 398: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (lookahead == '_') ADVANCE(397); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); - case 400: + case 399: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(400); + if (lookahead == '_') ADVANCE(399); if (lookahead == 'f') ADVANCE(131); if (lookahead == 'i') ADVANCE(69); if (lookahead == 'u') ADVANCE(68); if (lookahead == '0' || - lookahead == '1') ADVANCE(401); + lookahead == '1') ADVANCE(400); END_STATE(); - case 401: + case 400: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(400); + if (lookahead == '_') ADVANCE(399); if (lookahead == '0' || - lookahead == '1') ADVANCE(401); + lookahead == '1') ADVANCE(400); END_STATE(); - case 402: + case 401: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(402); + if (lookahead == '_') ADVANCE(401); if (lookahead == 'f') ADVANCE(131); if (lookahead == 'i') ADVANCE(69); if (lookahead == 'u') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(403); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(402); END_STATE(); - case 403: + case 402: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(402); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(403); + if (lookahead == '_') ADVANCE(401); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(402); END_STATE(); - case 404: + case 403: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(405); - if (lookahead == 'e') ADVANCE(406); + if (lookahead == '_') ADVANCE(404); + if (lookahead == 'e') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(406); END_STATE(); - case 405: + case 404: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(405); - if (lookahead == 'f') ADVANCE(404); + if (lookahead == '_') ADVANCE(404); + if (lookahead == 'f') ADVANCE(403); if (lookahead == 'i') ADVANCE(69); if (lookahead == 'u') ADVANCE(68); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(406); END_STATE(); - case 406: + case 405: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(405); + if (lookahead == '_') ADVANCE(404); if (lookahead == 'l') ADVANCE(203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(406); END_STATE(); - case 407: + case 406: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(405); + if (lookahead == '_') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(406); END_STATE(); - case 408: + case 407: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(408); - if (lookahead == 'f') ADVANCE(509); - if (lookahead == 'i') ADVANCE(444); - if (lookahead == 'u') ADVANCE(443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(409); + if (lookahead == '_') ADVANCE(407); + if (lookahead == 'f') ADVANCE(507); + if (lookahead == 'i') ADVANCE(443); + if (lookahead == 'u') ADVANCE(442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 409: + case 408: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(408); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(409); + if (lookahead == '_') ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 410: + case 409: ACCEPT_TOKEN(sym_numeric_literal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 411: + case 410: ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); - case 412: + case 411: ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '\n') ADVANCE(415); - if (lookahead == '"') ADVANCE(605); - if (lookahead == '\\') ADVANCE(606); - if (lookahead != 0) ADVANCE(412); + if (lookahead == '\n') ADVANCE(414); + if (lookahead == '"') ADVANCE(602); + if (lookahead == '\\') ADVANCE(603); + if (lookahead != 0) ADVANCE(411); END_STATE(); - case 413: + case 412: ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '/') ADVANCE(414); + if (lookahead == '/') ADVANCE(413); if (lookahead == '\\') ADVANCE(219); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(413); + lookahead == ' ') ADVANCE(412); if (lookahead != 0 && - lookahead != '"') ADVANCE(415); + lookahead != '"') ADVANCE(414); END_STATE(); - case 414: + case 413: ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '/') ADVANCE(412); + if (lookahead == '/') ADVANCE(411); if (lookahead == '\\') ADVANCE(219); if (lookahead != 0 && - lookahead != '"') ADVANCE(415); + lookahead != '"') ADVANCE(414); END_STATE(); - case 415: + case 414: ACCEPT_TOKEN(aux_sym_string_literal_token2); if (lookahead == '\\') ADVANCE(219); if (lookahead != 0 && - lookahead != '"') ADVANCE(415); + lookahead != '"') ADVANCE(414); END_STATE(); - case 416: + case 415: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 417: + case 416: ACCEPT_TOKEN(sym_shortstring_literal); END_STATE(); - case 418: + case 417: ACCEPT_TOKEN(sym_shortstring_literal); if (lookahead == '_') ADVANCE(137); END_STATE(); - case 419: + case 418: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 420: + case 419: ACCEPT_TOKEN(anon_sym_true); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 421: + case 420: ACCEPT_TOKEN(anon_sym_false); END_STATE(); - case 422: + case 421: ACCEPT_TOKEN(anon_sym_false); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 423: + case 422: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 424: + case 423: ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); - case 425: + case 424: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 426: + case 425: ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 427: + case 426: ACCEPT_TOKEN(anon_sym_move); END_STATE(); - case 428: + case 427: ACCEPT_TOKEN(anon_sym_move); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 429: + case 428: ACCEPT_TOKEN(anon_sym_in); END_STATE(); + case 429: + ACCEPT_TOKEN(anon_sym_ref); + END_STATE(); case 430: ACCEPT_TOKEN(anon_sym_ref); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 431: - ACCEPT_TOKEN(anon_sym_ref); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(410); + if (lookahead == 'o') ADVANCE(543); + if (lookahead == 'r') ADVANCE(487); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 432: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(411); - if (lookahead == 'o') ADVANCE(545); - if (lookahead == 'r') ADVANCE(489); + if (lookahead == '"') ADVANCE(410); + if (lookahead == 'o') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 433: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(411); - if (lookahead == 'o') ADVANCE(545); + if (lookahead == '"') ADVANCE(410); + if (lookahead == 'o') ADVANCE(531); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 434: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(411); - if (lookahead == 'o') ADVANCE(533); + if (lookahead == '"') ADVANCE(410); + if (lookahead == 'o') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 435: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(411); - if (lookahead == 'o') ADVANCE(540); + if (lookahead == '"') ADVANCE(410); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 436: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(411); + if (lookahead == '1') ADVANCE(444); + if (lookahead == '3') ADVANCE(445); + if (lookahead == '6') ADVANCE(453); + if (lookahead == '8') ADVANCE(303); + if (lookahead == 'f') ADVANCE(376); + if (lookahead == 'm') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 437: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(445); - if (lookahead == '3') ADVANCE(446); - if (lookahead == '6') ADVANCE(454); + if (lookahead == '1') ADVANCE(444); + if (lookahead == '3') ADVANCE(445); + if (lookahead == '6') ADVANCE(453); if (lookahead == '8') ADVANCE(303); - if (lookahead == 'f') ADVANCE(377); - if (lookahead == 'm') ADVANCE(550); + if (lookahead == 'f') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 438: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(445); - if (lookahead == '3') ADVANCE(446); - if (lookahead == '6') ADVANCE(454); + if (lookahead == '1') ADVANCE(444); + if (lookahead == '3') ADVANCE(445); + if (lookahead == '6') ADVANCE(453); if (lookahead == '8') ADVANCE(303); - if (lookahead == 'f') ADVANCE(377); + if (lookahead == 'm') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 439: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(445); - if (lookahead == '3') ADVANCE(446); - if (lookahead == '6') ADVANCE(454); + if (lookahead == '1') ADVANCE(444); + if (lookahead == '3') ADVANCE(445); + if (lookahead == '6') ADVANCE(453); if (lookahead == '8') ADVANCE(303); - if (lookahead == 'm') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 440: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(445); + if (lookahead == '1') ADVANCE(449); if (lookahead == '3') ADVANCE(446); if (lookahead == '6') ADVANCE(454); - if (lookahead == '8') ADVANCE(303); + if (lookahead == '8') ADVANCE(301); + if (lookahead == 's') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 441: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(450); - if (lookahead == '3') ADVANCE(447); - if (lookahead == '6') ADVANCE(455); + if (lookahead == '1') ADVANCE(449); + if (lookahead == '3') ADVANCE(446); + if (lookahead == '6') ADVANCE(454); if (lookahead == '8') ADVANCE(301); - if (lookahead == 's') ADVANCE(490); + if (lookahead == 's') ADVANCE(513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 442: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(450); + if (lookahead == '1') ADVANCE(451); + if (lookahead == '2') ADVANCE(456); if (lookahead == '3') ADVANCE(447); if (lookahead == '6') ADVANCE(455); - if (lookahead == '8') ADVANCE(301); - if (lookahead == 's') ADVANCE(515); + if (lookahead == '8') ADVANCE(409); + if (lookahead == 's') ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 443: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(452); - if (lookahead == '2') ADVANCE(457); - if (lookahead == '3') ADVANCE(448); - if (lookahead == '6') ADVANCE(456); - if (lookahead == '8') ADVANCE(410); - if (lookahead == 's') ADVANCE(521); + if (lookahead == '1') ADVANCE(451); + if (lookahead == '3') ADVANCE(447); + if (lookahead == '6') ADVANCE(455); + if (lookahead == '8') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 444: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(452); - if (lookahead == '3') ADVANCE(448); - if (lookahead == '6') ADVANCE(456); - if (lookahead == '8') ADVANCE(410); + if (lookahead == '2') ADVANCE(461); + if (lookahead == '6') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 445: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(462); - if (lookahead == '6') ADVANCE(307); + if (lookahead == '2') ADVANCE(311); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 446: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(311); + if (lookahead == '2') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 447: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(309); + if (lookahead == '2') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 448: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(410); + if (lookahead == '2') ADVANCE(327); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 449: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(327); + if (lookahead == '2') ADVANCE(462); + if (lookahead == '6') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 450: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(463); - if (lookahead == '6') ADVANCE(305); + if (lookahead == '2') ADVANCE(458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 451: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(459); + if (lookahead == '2') ADVANCE(460); + if (lookahead == '6') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 452: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(461); - if (lookahead == '6') ADVANCE(410); + if (lookahead == '2') ADVANCE(457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 453: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(458); + if (lookahead == '4') ADVANCE(315); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 454: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(315); + if (lookahead == '4') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 455: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(313); + if (lookahead == '4') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 456: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(410); + if (lookahead == '5') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 457: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '5') ADVANCE(460); + if (lookahead == '5') ADVANCE(447); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 458: ACCEPT_TOKEN(sym_identifier); @@ -7202,1196 +7226,1171 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 459: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '5') ADVANCE(449); + if (lookahead == '6') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 460: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '6') ADVANCE(410); + if (lookahead == '8') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 461: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '8') ADVANCE(410); + if (lookahead == '8') ADVANCE(319); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 462: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '8') ADVANCE(319); + if (lookahead == '8') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 463: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '8') ADVANCE(317); + if (lookahead == 'A') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 464: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(561); + if (lookahead == 'a') ADVANCE(521); + if (lookahead == 'e') ADVANCE(524); + if (lookahead == 'n') ADVANCE(285); + if (lookahead == 'o') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 465: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(523); - if (lookahead == 'e') ADVANCE(526); - if (lookahead == 'n') ADVANCE(285); - if (lookahead == 'o') ADVANCE(555); + if (lookahead == 'a') ADVANCE(521); + if (lookahead == 'e') ADVANCE(524); + if (lookahead == 'o') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 466: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(523); - if (lookahead == 'e') ADVANCE(526); - if (lookahead == 'o') ADVANCE(555); + if (lookahead == 'a') ADVANCE(521); + if (lookahead == 'e') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 467: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(523); - if (lookahead == 'e') ADVANCE(526); + if (lookahead == 'a') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 468: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(522); + if (lookahead == 'a') ADVANCE(593); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 469: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(596); + if (lookahead == 'a') ADVANCE(518); + if (lookahead == 'u') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 470: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(520); - if (lookahead == 'u') ADVANCE(494); + if (lookahead == 'a') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 471: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(520); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'o') ADVANCE(483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 472: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(570); - if (lookahead == 'o') ADVANCE(485); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'o') ADVANCE(591); + if (lookahead == 'u') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 473: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(570); - if (lookahead == 'o') ADVANCE(594); - if (lookahead == 'u') ADVANCE(575); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'o') ADVANCE(591); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 474: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(570); - if (lookahead == 'o') ADVANCE(594); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'o') ADVANCE(484); + if (lookahead == 'u') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 475: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(570); - if (lookahead == 'o') ADVANCE(486); - if (lookahead == 'u') ADVANCE(575); + if (lookahead == 'a') ADVANCE(590); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 476: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(592); + if (lookahead == 'a') ADVANCE(537); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 477: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(581); - if (lookahead == 'r') ADVANCE(588); + if (lookahead == 'a') ADVANCE(579); + if (lookahead == 'r') ADVANCE(585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 478: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(581); + if (lookahead == 'b') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 479: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(539); + if (lookahead == 'c') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 480: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(387); + if (lookahead == 'c') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 481: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(391); + if (lookahead == 'c') ADVANCE(512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(381); + if (lookahead == 'c') ADVANCE(570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(278); + if (lookahead == 'v') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(573); + if (lookahead == 'd') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(278); - if (lookahead == 'v') ADVANCE(493); + if (lookahead == 'e') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(278); + if (lookahead == 'e') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'e') ADVANCE(467); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(510); + if (lookahead == 'e') ADVANCE(291); + if (lookahead == 'i') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(468); + if (lookahead == 'e') ADVANCE(463); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(291); - if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'e') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'e') ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(410); + if (lookahead == 'e') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(428); + if (lookahead == 'e') ADVANCE(264); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(420); + if (lookahead == 'e') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(264); + if (lookahead == 'e') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(422); + if (lookahead == 'e') ADVANCE(392); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(321); + if (lookahead == 'e') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 498: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(393); + if (lookahead == 'e') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(373); + if (lookahead == 'e') ADVANCE(566); + if (lookahead == 'o') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(426); + if (lookahead == 'e') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(569); - if (lookahead == 'o') ADVANCE(546); + if (lookahead == 'e') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'e') ADVANCE(524); + if (lookahead == 'n') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'e') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(526); - if (lookahead == 'n') ADVANCE(285); + if (lookahead == 'e') ADVANCE(555); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 505: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(526); + if (lookahead == 'e') ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(557); + if (lookahead == 'e') ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 507: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(556); + if (lookahead == 'e') ADVANCE(529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 508: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(576); + if (lookahead == 'f') ADVANCE(430); + if (lookahead == 't') ADVANCE(586); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 509: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(531); + if (lookahead == 'f') ADVANCE(430); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 510: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(431); - if (lookahead == 't') ADVANCE(593); + if (lookahead == 'f') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(431); + if (lookahead == 'h') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 512: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(476); + if (lookahead == 'h') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 513: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(519); + if (lookahead == 'i') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 514: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(385); + if (lookahead == 'i') ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 515: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'i') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 516: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(538); + if (lookahead == 'i') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'i') ADVANCE(526); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(482); + if (lookahead == 'i') ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(528); + if (lookahead == 'i') ADVANCE(595); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'k') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(598); + if (lookahead == 'l') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(371); + if (lookahead == 'l') ADVANCE(323); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(566); + if (lookahead == 'l') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(323); + if (lookahead == 'l') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(258); + if (lookahead == 'l') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(578); + if (lookahead == 'l') ADVANCE(496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(574); + if (lookahead == 'l') ADVANCE(565); + if (lookahead == 'n') ADVANCE(583); + if (lookahead == 'x') ADVANCE(580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(498); + if (lookahead == 'l') ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(567); - if (lookahead == 'n') ADVANCE(586); - if (lookahead == 'x') ADVANCE(582); + if (lookahead == 'l') ADVANCE(581); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(567); + if (lookahead == 'm') ADVANCE(282); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(584); + if (lookahead == 'n') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(282); + if (lookahead == 'n') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(564); + if (lookahead == 'n') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(379); + if (lookahead == 'n') ADVANCE(583); + if (lookahead == 'x') ADVANCE(580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(389); + if (lookahead == 'n') ADVANCE(563); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(586); - if (lookahead == 'x') ADVANCE(582); + if (lookahead == 'n') ADVANCE(589); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(565); + if (lookahead == 'n') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(591); + if (lookahead == 'n') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(518); + if (lookahead == 'o') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(579); + if (lookahead == 'o') ADVANCE(591); + if (lookahead == 'u') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(545); + if (lookahead == 'o') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(594); - if (lookahead == 'u') ADVANCE(575); + if (lookahead == 'o') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(486); + if (lookahead == 'o') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 544: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(546); + if (lookahead == 'o') ADVANCE(547); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 545: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(524); + if (lookahead == 'o') ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 546: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(549); + if (lookahead == 'o') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 547: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(551); + if (lookahead == 'p') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 548: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(537); + if (lookahead == 'p') ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 549: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(383); + if (lookahead == 'p') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 550: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(525); + if (lookahead == 'p') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 551: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(479); + if (lookahead == 'p') ADVANCE(493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 552: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(507); + if (lookahead == 'r') ADVANCE(469); + if (lookahead == 'y') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(495); + if (lookahead == 'r') ADVANCE(394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(470); - if (lookahead == 'y') ADVANCE(553); + if (lookahead == 'r') ADVANCE(600); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(395); + if (lookahead == 'r') ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(603); + if (lookahead == 'r') ADVANCE(468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(534); + if (lookahead == 'r') ADVANCE(585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(469); + if (lookahead == 'r') ADVANCE(533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(588); + if (lookahead == 'r') ADVANCE(470); + if (lookahead == 'y') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(535); + if (lookahead == 'r') ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(558); + if (lookahead == 'r') ADVANCE(587); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(471); - if (lookahead == 'y') ADVANCE(553); + if (lookahead == 's') ADVANCE(568); + if (lookahead == 't') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(589); + if (lookahead == 's') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(571); - if (lookahead == 't') ADVANCE(516); + if (lookahead == 's') ADVANCE(494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(571); + if (lookahead == 's') ADVANCE(498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(496); + if (lookahead == 't') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(500); + if (lookahead == 't') ADVANCE(481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(477); - if (lookahead == 'u') ADVANCE(552); + if (lookahead == 't') ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(289); + if (lookahead == 't') ADVANCE(262); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(483); + if (lookahead == 't') ADVANCE(280); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(268); + if (lookahead == 't') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(262); + if (lookahead == 't') ADVANCE(477); + if (lookahead == 'u') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(280); + if (lookahead == 't') ADVANCE(598); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(375); + if (lookahead == 't') ADVANCE(557); + if (lookahead == 'u') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(601); + if (lookahead == 't') ADVANCE(586); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(593); + if (lookahead == 't') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(491); + if (lookahead == 't') ADVANCE(450); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(451); + if (lookahead == 't') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 579: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(516); + if (lookahead == 't') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 580: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(478); - if (lookahead == 'u') ADVANCE(552); + if (lookahead == 't') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 581: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(517); + if (lookahead == 't') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 582: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(506); + if (lookahead == 'u') ADVANCE(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 583: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(559); - if (lookahead == 'u') ADVANCE(552); + if (lookahead == 'u') ADVANCE(530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 584: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(453); + if (lookahead == 'u') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 585: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(480); + if (lookahead == 'u') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 586: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(532); + if (lookahead == 'u') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 587: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(552); + if (lookahead == 'u') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 588: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(484); + if (lookahead == 'u') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 589: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(494); + if (lookahead == 'u') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 590: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(575); + if (lookahead == 'u') ADVANCE(525); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 591: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(499); + if (lookahead == 'v') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 592: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(527); + if (lookahead == 'y') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 593: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(560); + if (lookahead == 'y') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 594: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'v') ADVANCE(493); + if (lookahead == 'z') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(596); END_STATE(); case 595: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(577); + if (lookahead == 'z') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(596); END_STATE(); case 596: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); case 597: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'z') ADVANCE(497); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(599); - END_STATE(); - case 598: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'z') ADVANCE(492); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(599); - END_STATE(); - case 599: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); - END_STATE(); - case 600: ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); - case 601: + case 598: ACCEPT_TOKEN(sym_mutable_specifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 602: + case 599: ACCEPT_TOKEN(sym_super); END_STATE(); - case 603: + case 600: ACCEPT_TOKEN(sym_super); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); END_STATE(); - case 604: + case 601: ACCEPT_TOKEN(sym_crate); END_STATE(); - case 605: + case 602: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(605); + lookahead != '\n') ADVANCE(602); END_STATE(); - case 606: + case 603: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(412); + lookahead != '\n') ADVANCE(411); END_STATE(); default: return false; @@ -8422,22 +8421,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [20] = {.lex_state = 253}, [21] = {.lex_state = 2}, [22] = {.lex_state = 2}, - [23] = {.lex_state = 3}, - [24] = {.lex_state = 3}, + [23] = {.lex_state = 2}, + [24] = {.lex_state = 2}, [25] = {.lex_state = 2}, [26] = {.lex_state = 2}, - [27] = {.lex_state = 1}, - [28] = {.lex_state = 1}, - [29] = {.lex_state = 1}, - [30] = {.lex_state = 1}, - [31] = {.lex_state = 1}, - [32] = {.lex_state = 1}, - [33] = {.lex_state = 1}, - [34] = {.lex_state = 1}, - [35] = {.lex_state = 1}, - [36] = {.lex_state = 1}, - [37] = {.lex_state = 1}, - [38] = {.lex_state = 1}, + [27] = {.lex_state = 3}, + [28] = {.lex_state = 3}, + [29] = {.lex_state = 3}, + [30] = {.lex_state = 3}, + [31] = {.lex_state = 3}, + [32] = {.lex_state = 3}, + [33] = {.lex_state = 2}, + [34] = {.lex_state = 2}, + [35] = {.lex_state = 2}, + [36] = {.lex_state = 2}, + [37] = {.lex_state = 2}, + [38] = {.lex_state = 2}, [39] = {.lex_state = 1}, [40] = {.lex_state = 1}, [41] = {.lex_state = 1}, @@ -8467,29 +8466,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [65] = {.lex_state = 1}, [66] = {.lex_state = 1}, [67] = {.lex_state = 1}, - [68] = {.lex_state = 5}, - [69] = {.lex_state = 5}, - [70] = {.lex_state = 5}, - [71] = {.lex_state = 251}, - [72] = {.lex_state = 251}, - [73] = {.lex_state = 251}, - [74] = {.lex_state = 251}, - [75] = {.lex_state = 5}, - [76] = {.lex_state = 251}, - [77] = {.lex_state = 251}, - [78] = {.lex_state = 251}, - [79] = {.lex_state = 251}, - [80] = {.lex_state = 251}, + [68] = {.lex_state = 1}, + [69] = {.lex_state = 1}, + [70] = {.lex_state = 1}, + [71] = {.lex_state = 1}, + [72] = {.lex_state = 1}, + [73] = {.lex_state = 1}, + [74] = {.lex_state = 1}, + [75] = {.lex_state = 1}, + [76] = {.lex_state = 1}, + [77] = {.lex_state = 1}, + [78] = {.lex_state = 1}, + [79] = {.lex_state = 1}, + [80] = {.lex_state = 5}, [81] = {.lex_state = 5}, - [82] = {.lex_state = 251}, - [83] = {.lex_state = 251}, + [82] = {.lex_state = 5}, + [83] = {.lex_state = 5}, [84] = {.lex_state = 5}, - [85] = {.lex_state = 251}, - [86] = {.lex_state = 251}, + [85] = {.lex_state = 5}, + [86] = {.lex_state = 5}, [87] = {.lex_state = 5}, - [88] = {.lex_state = 251}, - [89] = {.lex_state = 251}, - [90] = {.lex_state = 251}, + [88] = {.lex_state = 5}, + [89] = {.lex_state = 5}, + [90] = {.lex_state = 5}, [91] = {.lex_state = 5}, [92] = {.lex_state = 5}, [93] = {.lex_state = 5}, @@ -8497,70 +8496,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [95] = {.lex_state = 5}, [96] = {.lex_state = 5}, [97] = {.lex_state = 5}, - [98] = {.lex_state = 5}, + [98] = {.lex_state = 251}, [99] = {.lex_state = 5}, - [100] = {.lex_state = 5}, - [101] = {.lex_state = 252}, + [100] = {.lex_state = 251}, + [101] = {.lex_state = 251}, [102] = {.lex_state = 5}, - [103] = {.lex_state = 5}, - [104] = {.lex_state = 5}, - [105] = {.lex_state = 5}, + [103] = {.lex_state = 251}, + [104] = {.lex_state = 251}, + [105] = {.lex_state = 251}, [106] = {.lex_state = 5}, - [107] = {.lex_state = 5}, - [108] = {.lex_state = 252}, + [107] = {.lex_state = 251}, + [108] = {.lex_state = 5}, [109] = {.lex_state = 5}, - [110] = {.lex_state = 5}, - [111] = {.lex_state = 5}, - [112] = {.lex_state = 5}, - [113] = {.lex_state = 252}, - [114] = {.lex_state = 252}, - [115] = {.lex_state = 5}, - [116] = {.lex_state = 6}, - [117] = {.lex_state = 6}, - [118] = {.lex_state = 6}, - [119] = {.lex_state = 251}, - [120] = {.lex_state = 6}, - [121] = {.lex_state = 6}, + [110] = {.lex_state = 251}, + [111] = {.lex_state = 251}, + [112] = {.lex_state = 251}, + [113] = {.lex_state = 5}, + [114] = {.lex_state = 5}, + [115] = {.lex_state = 251}, + [116] = {.lex_state = 251}, + [117] = {.lex_state = 251}, + [118] = {.lex_state = 5}, + [119] = {.lex_state = 5}, + [120] = {.lex_state = 5}, + [121] = {.lex_state = 251}, [122] = {.lex_state = 251}, - [123] = {.lex_state = 6}, + [123] = {.lex_state = 251}, [124] = {.lex_state = 6}, [125] = {.lex_state = 6}, - [126] = {.lex_state = 5}, - [127] = {.lex_state = 5}, - [128] = {.lex_state = 5}, + [126] = {.lex_state = 252}, + [127] = {.lex_state = 6}, + [128] = {.lex_state = 6}, [129] = {.lex_state = 5}, - [130] = {.lex_state = 5}, - [131] = {.lex_state = 8}, - [132] = {.lex_state = 8}, - [133] = {.lex_state = 8}, - [134] = {.lex_state = 5}, - [135] = {.lex_state = 5}, - [136] = {.lex_state = 8}, + [130] = {.lex_state = 6}, + [131] = {.lex_state = 5}, + [132] = {.lex_state = 5}, + [133] = {.lex_state = 5}, + [134] = {.lex_state = 6}, + [135] = {.lex_state = 6}, + [136] = {.lex_state = 6}, [137] = {.lex_state = 5}, [138] = {.lex_state = 8}, [139] = {.lex_state = 8}, [140] = {.lex_state = 5}, [141] = {.lex_state = 5}, - [142] = {.lex_state = 251}, + [142] = {.lex_state = 8}, [143] = {.lex_state = 5}, [144] = {.lex_state = 8}, [145] = {.lex_state = 8}, - [146] = {.lex_state = 5}, - [147] = {.lex_state = 5}, - [148] = {.lex_state = 8}, - [149] = {.lex_state = 7}, - [150] = {.lex_state = 7}, - [151] = {.lex_state = 7}, + [146] = {.lex_state = 252}, + [147] = {.lex_state = 252}, + [148] = {.lex_state = 5}, + [149] = {.lex_state = 8}, + [150] = {.lex_state = 8}, + [151] = {.lex_state = 5}, [152] = {.lex_state = 5}, - [153] = {.lex_state = 5}, + [153] = {.lex_state = 8}, [154] = {.lex_state = 5}, - [155] = {.lex_state = 5}, + [155] = {.lex_state = 252}, [156] = {.lex_state = 5}, - [157] = {.lex_state = 5}, - [158] = {.lex_state = 5}, - [159] = {.lex_state = 5}, - [160] = {.lex_state = 5}, - [161] = {.lex_state = 5}, + [157] = {.lex_state = 7}, + [158] = {.lex_state = 251}, + [159] = {.lex_state = 7}, + [160] = {.lex_state = 251}, + [161] = {.lex_state = 7}, [162] = {.lex_state = 5}, [163] = {.lex_state = 5}, [164] = {.lex_state = 5}, @@ -8614,7 +8613,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [212] = {.lex_state = 5}, [213] = {.lex_state = 5}, [214] = {.lex_state = 5}, - [215] = {.lex_state = 5}, + [215] = {.lex_state = 251}, [216] = {.lex_state = 5}, [217] = {.lex_state = 5}, [218] = {.lex_state = 5}, @@ -8633,26 +8632,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [231] = {.lex_state = 5}, [232] = {.lex_state = 5}, [233] = {.lex_state = 5}, - [234] = {.lex_state = 12}, - [235] = {.lex_state = 9}, - [236] = {.lex_state = 12}, - [237] = {.lex_state = 12}, - [238] = {.lex_state = 12}, - [239] = {.lex_state = 12}, - [240] = {.lex_state = 12}, - [241] = {.lex_state = 12}, - [242] = {.lex_state = 9}, - [243] = {.lex_state = 253}, - [244] = {.lex_state = 253}, - [245] = {.lex_state = 253}, - [246] = {.lex_state = 253}, - [247] = {.lex_state = 253}, - [248] = {.lex_state = 253}, - [249] = {.lex_state = 253}, - [250] = {.lex_state = 253}, - [251] = {.lex_state = 253}, - [252] = {.lex_state = 253}, - [253] = {.lex_state = 253}, + [234] = {.lex_state = 5}, + [235] = {.lex_state = 5}, + [236] = {.lex_state = 5}, + [237] = {.lex_state = 5}, + [238] = {.lex_state = 5}, + [239] = {.lex_state = 5}, + [240] = {.lex_state = 5}, + [241] = {.lex_state = 5}, + [242] = {.lex_state = 5}, + [243] = {.lex_state = 5}, + [244] = {.lex_state = 5}, + [245] = {.lex_state = 12}, + [246] = {.lex_state = 12}, + [247] = {.lex_state = 12}, + [248] = {.lex_state = 12}, + [249] = {.lex_state = 12}, + [250] = {.lex_state = 12}, + [251] = {.lex_state = 12}, + [252] = {.lex_state = 9}, + [253] = {.lex_state = 9}, [254] = {.lex_state = 253}, [255] = {.lex_state = 253}, [256] = {.lex_state = 253}, @@ -8725,76 +8724,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [323] = {.lex_state = 253}, [324] = {.lex_state = 253}, [325] = {.lex_state = 253}, - [326] = {.lex_state = 12}, - [327] = {.lex_state = 13}, - [328] = {.lex_state = 12}, - [329] = {.lex_state = 12}, - [330] = {.lex_state = 18}, - [331] = {.lex_state = 12}, - [332] = {.lex_state = 12}, - [333] = {.lex_state = 19}, - [334] = {.lex_state = 13}, - [335] = {.lex_state = 13}, - [336] = {.lex_state = 18}, - [337] = {.lex_state = 19}, - [338] = {.lex_state = 18}, - [339] = {.lex_state = 13}, - [340] = {.lex_state = 19}, - [341] = {.lex_state = 18}, - [342] = {.lex_state = 14}, - [343] = {.lex_state = 14}, - [344] = {.lex_state = 14}, - [345] = {.lex_state = 14}, - [346] = {.lex_state = 14}, + [326] = {.lex_state = 253}, + [327] = {.lex_state = 253}, + [328] = {.lex_state = 253}, + [329] = {.lex_state = 253}, + [330] = {.lex_state = 253}, + [331] = {.lex_state = 253}, + [332] = {.lex_state = 13}, + [333] = {.lex_state = 253}, + [334] = {.lex_state = 253}, + [335] = {.lex_state = 253}, + [336] = {.lex_state = 253}, + [337] = {.lex_state = 253}, + [338] = {.lex_state = 13}, + [339] = {.lex_state = 12}, + [340] = {.lex_state = 12}, + [341] = {.lex_state = 12}, + [342] = {.lex_state = 13}, + [343] = {.lex_state = 12}, + [344] = {.lex_state = 13}, + [345] = {.lex_state = 12}, + [346] = {.lex_state = 18}, [347] = {.lex_state = 14}, [348] = {.lex_state = 14}, - [349] = {.lex_state = 14}, - [350] = {.lex_state = 14}, + [349] = {.lex_state = 18}, + [350] = {.lex_state = 18}, [351] = {.lex_state = 14}, - [352] = {.lex_state = 14}, - [353] = {.lex_state = 18}, + [352] = {.lex_state = 18}, + [353] = {.lex_state = 14}, [354] = {.lex_state = 14}, [355] = {.lex_state = 14}, [356] = {.lex_state = 14}, - [357] = {.lex_state = 17}, - [358] = {.lex_state = 17}, - [359] = {.lex_state = 17}, - [360] = {.lex_state = 18}, - [361] = {.lex_state = 18}, - [362] = {.lex_state = 17}, - [363] = {.lex_state = 17}, - [364] = {.lex_state = 17}, - [365] = {.lex_state = 17}, - [366] = {.lex_state = 17}, + [357] = {.lex_state = 14}, + [358] = {.lex_state = 14}, + [359] = {.lex_state = 14}, + [360] = {.lex_state = 14}, + [361] = {.lex_state = 14}, + [362] = {.lex_state = 14}, + [363] = {.lex_state = 14}, + [364] = {.lex_state = 18}, + [365] = {.lex_state = 19}, + [366] = {.lex_state = 19}, [367] = {.lex_state = 19}, - [368] = {.lex_state = 19}, + [368] = {.lex_state = 18}, [369] = {.lex_state = 17}, - [370] = {.lex_state = 19}, - [371] = {.lex_state = 19}, - [372] = {.lex_state = 19}, + [370] = {.lex_state = 17}, + [371] = {.lex_state = 18}, + [372] = {.lex_state = 17}, [373] = {.lex_state = 17}, - [374] = {.lex_state = 19}, - [375] = {.lex_state = 5}, - [376] = {.lex_state = 19}, - [377] = {.lex_state = 18}, - [378] = {.lex_state = 18}, - [379] = {.lex_state = 18}, - [380] = {.lex_state = 17}, - [381] = {.lex_state = 17}, - [382] = {.lex_state = 17}, - [383] = {.lex_state = 17}, + [374] = {.lex_state = 17}, + [375] = {.lex_state = 17}, + [376] = {.lex_state = 17}, + [377] = {.lex_state = 17}, + [378] = {.lex_state = 17}, + [379] = {.lex_state = 17}, + [380] = {.lex_state = 19}, + [381] = {.lex_state = 19}, + [382] = {.lex_state = 19}, + [383] = {.lex_state = 19}, [384] = {.lex_state = 5}, - [385] = {.lex_state = 17}, - [386] = {.lex_state = 17}, - [387] = {.lex_state = 17}, - [388] = {.lex_state = 17}, - [389] = {.lex_state = 17}, - [390] = {.lex_state = 17}, + [385] = {.lex_state = 19}, + [386] = {.lex_state = 19}, + [387] = {.lex_state = 18}, + [388] = {.lex_state = 18}, + [389] = {.lex_state = 18}, + [390] = {.lex_state = 19}, [391] = {.lex_state = 17}, [392] = {.lex_state = 17}, [393] = {.lex_state = 17}, [394] = {.lex_state = 17}, - [395] = {.lex_state = 17}, + [395] = {.lex_state = 5}, [396] = {.lex_state = 17}, [397] = {.lex_state = 17}, [398] = {.lex_state = 17}, @@ -8808,12 +8807,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [406] = {.lex_state = 17}, [407] = {.lex_state = 17}, [408] = {.lex_state = 17}, - [409] = {.lex_state = 8}, - [410] = {.lex_state = 17}, + [409] = {.lex_state = 17}, + [410] = {.lex_state = 8}, [411] = {.lex_state = 17}, [412] = {.lex_state = 17}, [413] = {.lex_state = 17}, - [414] = {.lex_state = 8}, + [414] = {.lex_state = 17}, [415] = {.lex_state = 17}, [416] = {.lex_state = 17}, [417] = {.lex_state = 17}, @@ -8822,53 +8821,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [420] = {.lex_state = 17}, [421] = {.lex_state = 17}, [422] = {.lex_state = 17}, - [423] = {.lex_state = 20}, - [424] = {.lex_state = 5}, - [425] = {.lex_state = 20}, - [426] = {.lex_state = 20}, - [427] = {.lex_state = 20}, - [428] = {.lex_state = 20}, - [429] = {.lex_state = 20}, - [430] = {.lex_state = 20}, - [431] = {.lex_state = 20}, - [432] = {.lex_state = 20}, - [433] = {.lex_state = 20}, - [434] = {.lex_state = 4}, - [435] = {.lex_state = 2}, - [436] = {.lex_state = 4}, - [437] = {.lex_state = 4}, - [438] = {.lex_state = 4}, - [439] = {.lex_state = 4}, - [440] = {.lex_state = 4}, - [441] = {.lex_state = 4}, - [442] = {.lex_state = 2}, - [443] = {.lex_state = 2}, - [444] = {.lex_state = 2}, + [423] = {.lex_state = 17}, + [424] = {.lex_state = 17}, + [425] = {.lex_state = 17}, + [426] = {.lex_state = 17}, + [427] = {.lex_state = 8}, + [428] = {.lex_state = 17}, + [429] = {.lex_state = 17}, + [430] = {.lex_state = 17}, + [431] = {.lex_state = 17}, + [432] = {.lex_state = 17}, + [433] = {.lex_state = 17}, + [434] = {.lex_state = 5}, + [435] = {.lex_state = 20}, + [436] = {.lex_state = 20}, + [437] = {.lex_state = 20}, + [438] = {.lex_state = 20}, + [439] = {.lex_state = 20}, + [440] = {.lex_state = 20}, + [441] = {.lex_state = 20}, + [442] = {.lex_state = 20}, + [443] = {.lex_state = 20}, + [444] = {.lex_state = 20}, [445] = {.lex_state = 4}, - [446] = {.lex_state = 2}, - [447] = {.lex_state = 59}, - [448] = {.lex_state = 2}, + [446] = {.lex_state = 4}, + [447] = {.lex_state = 4}, + [448] = {.lex_state = 4}, [449] = {.lex_state = 2}, - [450] = {.lex_state = 59}, - [451] = {.lex_state = 2}, - [452] = {.lex_state = 2}, + [450] = {.lex_state = 4}, + [451] = {.lex_state = 4}, + [452] = {.lex_state = 4}, [453] = {.lex_state = 2}, [454] = {.lex_state = 2}, [455] = {.lex_state = 2}, - [456] = {.lex_state = 4}, + [456] = {.lex_state = 2}, [457] = {.lex_state = 4}, - [458] = {.lex_state = 2}, + [458] = {.lex_state = 4}, [459] = {.lex_state = 2}, [460] = {.lex_state = 2}, [461] = {.lex_state = 2}, [462] = {.lex_state = 2}, [463] = {.lex_state = 4}, - [464] = {.lex_state = 59}, - [465] = {.lex_state = 59}, + [464] = {.lex_state = 2}, + [465] = {.lex_state = 2}, [466] = {.lex_state = 2}, [467] = {.lex_state = 2}, [468] = {.lex_state = 2}, - [469] = {.lex_state = 2}, + [469] = {.lex_state = 4}, [470] = {.lex_state = 2}, [471] = {.lex_state = 2}, [472] = {.lex_state = 2}, @@ -8876,7 +8875,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [474] = {.lex_state = 2}, [475] = {.lex_state = 2}, [476] = {.lex_state = 2}, - [477] = {.lex_state = 2}, + [477] = {.lex_state = 59}, [478] = {.lex_state = 2}, [479] = {.lex_state = 2}, [480] = {.lex_state = 2}, @@ -8898,7 +8897,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [496] = {.lex_state = 2}, [497] = {.lex_state = 2}, [498] = {.lex_state = 2}, - [499] = {.lex_state = 2}, + [499] = {.lex_state = 59}, [500] = {.lex_state = 2}, [501] = {.lex_state = 2}, [502] = {.lex_state = 2}, @@ -8911,34 +8910,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [509] = {.lex_state = 2}, [510] = {.lex_state = 2}, [511] = {.lex_state = 2}, - [512] = {.lex_state = 2}, + [512] = {.lex_state = 59}, [513] = {.lex_state = 2}, [514] = {.lex_state = 2}, [515] = {.lex_state = 2}, [516] = {.lex_state = 2}, [517] = {.lex_state = 2}, [518] = {.lex_state = 2}, - [519] = {.lex_state = 2}, + [519] = {.lex_state = 59}, [520] = {.lex_state = 2}, [521] = {.lex_state = 2}, [522] = {.lex_state = 2}, [523] = {.lex_state = 2}, - [524] = {.lex_state = 12}, - [525] = {.lex_state = 12}, - [526] = {.lex_state = 12}, - [527] = {.lex_state = 12}, - [528] = {.lex_state = 12}, - [529] = {.lex_state = 12}, - [530] = {.lex_state = 12}, - [531] = {.lex_state = 12}, - [532] = {.lex_state = 12}, + [524] = {.lex_state = 2}, + [525] = {.lex_state = 2}, + [526] = {.lex_state = 2}, + [527] = {.lex_state = 2}, + [528] = {.lex_state = 2}, + [529] = {.lex_state = 2}, + [530] = {.lex_state = 2}, + [531] = {.lex_state = 2}, + [532] = {.lex_state = 2}, [533] = {.lex_state = 2}, - [534] = {.lex_state = 12}, - [535] = {.lex_state = 12}, - [536] = {.lex_state = 12}, + [534] = {.lex_state = 2}, + [535] = {.lex_state = 3}, + [536] = {.lex_state = 2}, [537] = {.lex_state = 12}, [538] = {.lex_state = 12}, - [539] = {.lex_state = 17}, + [539] = {.lex_state = 12}, [540] = {.lex_state = 12}, [541] = {.lex_state = 12}, [542] = {.lex_state = 12}, @@ -8966,7 +8965,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [564] = {.lex_state = 12}, [565] = {.lex_state = 12}, [566] = {.lex_state = 12}, - [567] = {.lex_state = 12}, + [567] = {.lex_state = 3}, [568] = {.lex_state = 12}, [569] = {.lex_state = 12}, [570] = {.lex_state = 12}, @@ -8974,31 +8973,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [572] = {.lex_state = 12}, [573] = {.lex_state = 12}, [574] = {.lex_state = 12}, - [575] = {.lex_state = 2}, + [575] = {.lex_state = 12}, [576] = {.lex_state = 12}, [577] = {.lex_state = 12}, [578] = {.lex_state = 12}, [579] = {.lex_state = 12}, [580] = {.lex_state = 12}, [581] = {.lex_state = 12}, - [582] = {.lex_state = 12}, + [582] = {.lex_state = 17}, [583] = {.lex_state = 12}, [584] = {.lex_state = 12}, [585] = {.lex_state = 12}, [586] = {.lex_state = 12}, [587] = {.lex_state = 12}, - [588] = {.lex_state = 12}, + [588] = {.lex_state = 3}, [589] = {.lex_state = 12}, [590] = {.lex_state = 12}, [591] = {.lex_state = 12}, - [592] = {.lex_state = 12}, + [592] = {.lex_state = 3}, [593] = {.lex_state = 12}, - [594] = {.lex_state = 3}, + [594] = {.lex_state = 12}, [595] = {.lex_state = 12}, - [596] = {.lex_state = 2}, + [596] = {.lex_state = 12}, [597] = {.lex_state = 12}, [598] = {.lex_state = 12}, - [599] = {.lex_state = 2}, + [599] = {.lex_state = 12}, [600] = {.lex_state = 12}, [601] = {.lex_state = 12}, [602] = {.lex_state = 12}, @@ -9008,230 +9007,230 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [606] = {.lex_state = 12}, [607] = {.lex_state = 12}, [608] = {.lex_state = 12}, - [609] = {.lex_state = 58}, - [610] = {.lex_state = 3}, - [611] = {.lex_state = 3}, - [612] = {.lex_state = 3}, - [613] = {.lex_state = 23}, - [614] = {.lex_state = 58}, - [615] = {.lex_state = 23}, - [616] = {.lex_state = 23}, + [609] = {.lex_state = 12}, + [610] = {.lex_state = 12}, + [611] = {.lex_state = 12}, + [612] = {.lex_state = 12}, + [613] = {.lex_state = 12}, + [614] = {.lex_state = 12}, + [615] = {.lex_state = 12}, + [616] = {.lex_state = 12}, [617] = {.lex_state = 3}, - [618] = {.lex_state = 2}, - [619] = {.lex_state = 58}, - [620] = {.lex_state = 2}, - [621] = {.lex_state = 23}, - [622] = {.lex_state = 23}, - [623] = {.lex_state = 23}, - [624] = {.lex_state = 23}, + [618] = {.lex_state = 12}, + [619] = {.lex_state = 12}, + [620] = {.lex_state = 12}, + [621] = {.lex_state = 2}, + [622] = {.lex_state = 2}, + [623] = {.lex_state = 16}, + [624] = {.lex_state = 3}, [625] = {.lex_state = 2}, - [626] = {.lex_state = 2}, - [627] = {.lex_state = 2}, - [628] = {.lex_state = 2}, - [629] = {.lex_state = 2}, - [630] = {.lex_state = 58}, - [631] = {.lex_state = 58}, - [632] = {.lex_state = 58}, - [633] = {.lex_state = 58}, - [634] = {.lex_state = 58}, - [635] = {.lex_state = 58}, - [636] = {.lex_state = 58}, - [637] = {.lex_state = 58}, + [626] = {.lex_state = 3}, + [627] = {.lex_state = 3}, + [628] = {.lex_state = 58}, + [629] = {.lex_state = 58}, + [630] = {.lex_state = 3}, + [631] = {.lex_state = 3}, + [632] = {.lex_state = 23}, + [633] = {.lex_state = 23}, + [634] = {.lex_state = 2}, + [635] = {.lex_state = 2}, + [636] = {.lex_state = 3}, + [637] = {.lex_state = 2}, [638] = {.lex_state = 2}, [639] = {.lex_state = 2}, - [640] = {.lex_state = 17}, - [641] = {.lex_state = 58}, - [642] = {.lex_state = 2}, - [643] = {.lex_state = 58}, - [644] = {.lex_state = 58}, - [645] = {.lex_state = 58}, - [646] = {.lex_state = 58}, - [647] = {.lex_state = 58}, - [648] = {.lex_state = 23}, + [640] = {.lex_state = 3}, + [641] = {.lex_state = 3}, + [642] = {.lex_state = 23}, + [643] = {.lex_state = 3}, + [644] = {.lex_state = 23}, + [645] = {.lex_state = 2}, + [646] = {.lex_state = 3}, + [647] = {.lex_state = 23}, + [648] = {.lex_state = 3}, [649] = {.lex_state = 2}, - [650] = {.lex_state = 2}, - [651] = {.lex_state = 2}, - [652] = {.lex_state = 23}, - [653] = {.lex_state = 2}, - [654] = {.lex_state = 58}, - [655] = {.lex_state = 3}, - [656] = {.lex_state = 3}, - [657] = {.lex_state = 2}, - [658] = {.lex_state = 58}, + [650] = {.lex_state = 23}, + [651] = {.lex_state = 23}, + [652] = {.lex_state = 2}, + [653] = {.lex_state = 58}, + [654] = {.lex_state = 2}, + [655] = {.lex_state = 16}, + [656] = {.lex_state = 58}, + [657] = {.lex_state = 16}, + [658] = {.lex_state = 18}, [659] = {.lex_state = 58}, [660] = {.lex_state = 58}, - [661] = {.lex_state = 3}, - [662] = {.lex_state = 2}, + [661] = {.lex_state = 16}, + [662] = {.lex_state = 23}, [663] = {.lex_state = 2}, - [664] = {.lex_state = 2}, + [664] = {.lex_state = 58}, [665] = {.lex_state = 58}, - [666] = {.lex_state = 2}, - [667] = {.lex_state = 3}, + [666] = {.lex_state = 58}, + [667] = {.lex_state = 58}, [668] = {.lex_state = 2}, [669] = {.lex_state = 2}, - [670] = {.lex_state = 2}, + [670] = {.lex_state = 58}, [671] = {.lex_state = 2}, - [672] = {.lex_state = 2}, - [673] = {.lex_state = 2}, - [674] = {.lex_state = 3}, - [675] = {.lex_state = 58}, - [676] = {.lex_state = 2}, - [677] = {.lex_state = 2}, - [678] = {.lex_state = 2}, - [679] = {.lex_state = 2}, - [680] = {.lex_state = 2}, - [681] = {.lex_state = 2}, + [672] = {.lex_state = 58}, + [673] = {.lex_state = 3}, + [674] = {.lex_state = 58}, + [675] = {.lex_state = 3}, + [676] = {.lex_state = 58}, + [677] = {.lex_state = 58}, + [678] = {.lex_state = 58}, + [679] = {.lex_state = 58}, + [680] = {.lex_state = 23}, + [681] = {.lex_state = 58}, [682] = {.lex_state = 58}, - [683] = {.lex_state = 2}, + [683] = {.lex_state = 58}, [684] = {.lex_state = 58}, - [685] = {.lex_state = 17}, + [685] = {.lex_state = 58}, [686] = {.lex_state = 58}, - [687] = {.lex_state = 2}, - [688] = {.lex_state = 58}, - [689] = {.lex_state = 2}, - [690] = {.lex_state = 2}, + [687] = {.lex_state = 58}, + [688] = {.lex_state = 3}, + [689] = {.lex_state = 58}, + [690] = {.lex_state = 58}, [691] = {.lex_state = 58}, - [692] = {.lex_state = 16}, + [692] = {.lex_state = 58}, [693] = {.lex_state = 58}, [694] = {.lex_state = 58}, [695] = {.lex_state = 58}, - [696] = {.lex_state = 2}, - [697] = {.lex_state = 2}, - [698] = {.lex_state = 2}, - [699] = {.lex_state = 2}, - [700] = {.lex_state = 2}, - [701] = {.lex_state = 2}, - [702] = {.lex_state = 58}, + [696] = {.lex_state = 58}, + [697] = {.lex_state = 58}, + [698] = {.lex_state = 58}, + [699] = {.lex_state = 58}, + [700] = {.lex_state = 58}, + [701] = {.lex_state = 3}, + [702] = {.lex_state = 23}, [703] = {.lex_state = 58}, [704] = {.lex_state = 58}, - [705] = {.lex_state = 58}, - [706] = {.lex_state = 2}, + [705] = {.lex_state = 2}, + [706] = {.lex_state = 58}, [707] = {.lex_state = 58}, [708] = {.lex_state = 2}, [709] = {.lex_state = 58}, - [710] = {.lex_state = 2}, - [711] = {.lex_state = 23}, - [712] = {.lex_state = 3}, - [713] = {.lex_state = 2}, - [714] = {.lex_state = 3}, + [710] = {.lex_state = 23}, + [711] = {.lex_state = 17}, + [712] = {.lex_state = 58}, + [713] = {.lex_state = 58}, + [714] = {.lex_state = 58}, [715] = {.lex_state = 58}, - [716] = {.lex_state = 58}, - [717] = {.lex_state = 2}, - [718] = {.lex_state = 18}, - [719] = {.lex_state = 3}, - [720] = {.lex_state = 2}, + [716] = {.lex_state = 2}, + [717] = {.lex_state = 17}, + [718] = {.lex_state = 3}, + [719] = {.lex_state = 58}, + [720] = {.lex_state = 58}, [721] = {.lex_state = 58}, - [722] = {.lex_state = 3}, - [723] = {.lex_state = 2}, - [724] = {.lex_state = 3}, - [725] = {.lex_state = 58}, - [726] = {.lex_state = 2}, - [727] = {.lex_state = 58}, + [722] = {.lex_state = 2}, + [723] = {.lex_state = 58}, + [724] = {.lex_state = 58}, + [725] = {.lex_state = 3}, + [726] = {.lex_state = 3}, + [727] = {.lex_state = 3}, [728] = {.lex_state = 2}, - [729] = {.lex_state = 58}, - [730] = {.lex_state = 58}, - [731] = {.lex_state = 58}, + [729] = {.lex_state = 3}, + [730] = {.lex_state = 3}, + [731] = {.lex_state = 3}, [732] = {.lex_state = 3}, - [733] = {.lex_state = 58}, - [734] = {.lex_state = 58}, - [735] = {.lex_state = 58}, - [736] = {.lex_state = 58}, - [737] = {.lex_state = 2}, - [738] = {.lex_state = 2}, - [739] = {.lex_state = 2}, - [740] = {.lex_state = 23}, - [741] = {.lex_state = 58}, - [742] = {.lex_state = 58}, - [743] = {.lex_state = 58}, - [744] = {.lex_state = 2}, + [733] = {.lex_state = 3}, + [734] = {.lex_state = 2}, + [735] = {.lex_state = 2}, + [736] = {.lex_state = 3}, + [737] = {.lex_state = 3}, + [738] = {.lex_state = 3}, + [739] = {.lex_state = 3}, + [740] = {.lex_state = 3}, + [741] = {.lex_state = 3}, + [742] = {.lex_state = 2}, + [743] = {.lex_state = 2}, + [744] = {.lex_state = 3}, [745] = {.lex_state = 2}, - [746] = {.lex_state = 2}, - [747] = {.lex_state = 3}, - [748] = {.lex_state = 3}, + [746] = {.lex_state = 3}, + [747] = {.lex_state = 2}, + [748] = {.lex_state = 2}, [749] = {.lex_state = 3}, [750] = {.lex_state = 2}, - [751] = {.lex_state = 3}, - [752] = {.lex_state = 3}, + [751] = {.lex_state = 2}, + [752] = {.lex_state = 2}, [753] = {.lex_state = 3}, - [754] = {.lex_state = 2}, - [755] = {.lex_state = 16}, - [756] = {.lex_state = 2}, + [754] = {.lex_state = 3}, + [755] = {.lex_state = 17}, + [756] = {.lex_state = 3}, [757] = {.lex_state = 2}, - [758] = {.lex_state = 2}, + [758] = {.lex_state = 3}, [759] = {.lex_state = 2}, - [760] = {.lex_state = 16}, - [761] = {.lex_state = 16}, + [760] = {.lex_state = 3}, + [761] = {.lex_state = 3}, [762] = {.lex_state = 3}, [763] = {.lex_state = 3}, - [764] = {.lex_state = 17}, - [765] = {.lex_state = 17}, - [766] = {.lex_state = 2}, + [764] = {.lex_state = 2}, + [765] = {.lex_state = 2}, + [766] = {.lex_state = 3}, [767] = {.lex_state = 3}, [768] = {.lex_state = 3}, - [769] = {.lex_state = 17}, + [769] = {.lex_state = 3}, [770] = {.lex_state = 2}, [771] = {.lex_state = 2}, [772] = {.lex_state = 2}, [773] = {.lex_state = 3}, - [774] = {.lex_state = 2}, - [775] = {.lex_state = 17}, + [774] = {.lex_state = 3}, + [775] = {.lex_state = 2}, [776] = {.lex_state = 3}, [777] = {.lex_state = 2}, [778] = {.lex_state = 2}, [779] = {.lex_state = 2}, - [780] = {.lex_state = 2}, - [781] = {.lex_state = 2}, - [782] = {.lex_state = 2}, + [780] = {.lex_state = 3}, + [781] = {.lex_state = 3}, + [782] = {.lex_state = 3}, [783] = {.lex_state = 2}, [784] = {.lex_state = 2}, [785] = {.lex_state = 2}, - [786] = {.lex_state = 2}, - [787] = {.lex_state = 2}, + [786] = {.lex_state = 3}, + [787] = {.lex_state = 3}, [788] = {.lex_state = 2}, - [789] = {.lex_state = 2}, + [789] = {.lex_state = 3}, [790] = {.lex_state = 2}, [791] = {.lex_state = 2}, - [792] = {.lex_state = 2}, + [792] = {.lex_state = 3}, [793] = {.lex_state = 2}, [794] = {.lex_state = 2}, [795] = {.lex_state = 2}, - [796] = {.lex_state = 2}, + [796] = {.lex_state = 3}, [797] = {.lex_state = 2}, [798] = {.lex_state = 2}, [799] = {.lex_state = 3}, - [800] = {.lex_state = 2}, + [800] = {.lex_state = 3}, [801] = {.lex_state = 3}, - [802] = {.lex_state = 2}, - [803] = {.lex_state = 3}, + [802] = {.lex_state = 3}, + [803] = {.lex_state = 2}, [804] = {.lex_state = 3}, [805] = {.lex_state = 3}, - [806] = {.lex_state = 2}, + [806] = {.lex_state = 3}, [807] = {.lex_state = 3}, [808] = {.lex_state = 3}, - [809] = {.lex_state = 2}, + [809] = {.lex_state = 3}, [810] = {.lex_state = 3}, [811] = {.lex_state = 3}, - [812] = {.lex_state = 2}, - [813] = {.lex_state = 2}, + [812] = {.lex_state = 3}, + [813] = {.lex_state = 3}, [814] = {.lex_state = 2}, - [815] = {.lex_state = 3}, - [816] = {.lex_state = 2}, + [815] = {.lex_state = 2}, + [816] = {.lex_state = 3}, [817] = {.lex_state = 3}, - [818] = {.lex_state = 2}, - [819] = {.lex_state = 3}, - [820] = {.lex_state = 2}, - [821] = {.lex_state = 2}, + [818] = {.lex_state = 17}, + [819] = {.lex_state = 2}, + [820] = {.lex_state = 17}, + [821] = {.lex_state = 3}, [822] = {.lex_state = 2}, [823] = {.lex_state = 2}, - [824] = {.lex_state = 3}, + [824] = {.lex_state = 2}, [825] = {.lex_state = 2}, [826] = {.lex_state = 3}, - [827] = {.lex_state = 3}, - [828] = {.lex_state = 3}, - [829] = {.lex_state = 17}, - [830] = {.lex_state = 3}, - [831] = {.lex_state = 3}, - [832] = {.lex_state = 3}, + [827] = {.lex_state = 2}, + [828] = {.lex_state = 2}, + [829] = {.lex_state = 2}, + [830] = {.lex_state = 2}, + [831] = {.lex_state = 2}, + [832] = {.lex_state = 2}, [833] = {.lex_state = 3}, [834] = {.lex_state = 3}, [835] = {.lex_state = 3}, @@ -9239,59 +9238,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [837] = {.lex_state = 3}, [838] = {.lex_state = 3}, [839] = {.lex_state = 3}, - [840] = {.lex_state = 3}, - [841] = {.lex_state = 3}, - [842] = {.lex_state = 3}, - [843] = {.lex_state = 3}, + [840] = {.lex_state = 2}, + [841] = {.lex_state = 2}, + [842] = {.lex_state = 2}, + [843] = {.lex_state = 2}, [844] = {.lex_state = 3}, [845] = {.lex_state = 3}, [846] = {.lex_state = 3}, [847] = {.lex_state = 3}, - [848] = {.lex_state = 3}, - [849] = {.lex_state = 3}, + [848] = {.lex_state = 2}, + [849] = {.lex_state = 2}, [850] = {.lex_state = 3}, - [851] = {.lex_state = 58}, - [852] = {.lex_state = 3}, - [853] = {.lex_state = 3}, - [854] = {.lex_state = 3}, - [855] = {.lex_state = 3}, - [856] = {.lex_state = 3}, - [857] = {.lex_state = 3}, - [858] = {.lex_state = 3}, - [859] = {.lex_state = 3}, - [860] = {.lex_state = 3}, - [861] = {.lex_state = 3}, - [862] = {.lex_state = 3}, - [863] = {.lex_state = 3}, + [851] = {.lex_state = 2}, + [852] = {.lex_state = 2}, + [853] = {.lex_state = 2}, + [854] = {.lex_state = 17}, + [855] = {.lex_state = 2}, + [856] = {.lex_state = 2}, + [857] = {.lex_state = 2}, + [858] = {.lex_state = 2}, + [859] = {.lex_state = 2}, + [860] = {.lex_state = 2}, + [861] = {.lex_state = 2}, + [862] = {.lex_state = 2}, + [863] = {.lex_state = 2}, [864] = {.lex_state = 3}, - [865] = {.lex_state = 3}, - [866] = {.lex_state = 3}, - [867] = {.lex_state = 3}, - [868] = {.lex_state = 3}, - [869] = {.lex_state = 3}, - [870] = {.lex_state = 3}, - [871] = {.lex_state = 3}, - [872] = {.lex_state = 3}, - [873] = {.lex_state = 3}, - [874] = {.lex_state = 3}, - [875] = {.lex_state = 3}, - [876] = {.lex_state = 3}, - [877] = {.lex_state = 3}, - [878] = {.lex_state = 3}, - [879] = {.lex_state = 58}, - [880] = {.lex_state = 58}, - [881] = {.lex_state = 58}, - [882] = {.lex_state = 58}, + [865] = {.lex_state = 2}, + [866] = {.lex_state = 2}, + [867] = {.lex_state = 2}, + [868] = {.lex_state = 2}, + [869] = {.lex_state = 2}, + [870] = {.lex_state = 2}, + [871] = {.lex_state = 2}, + [872] = {.lex_state = 2}, + [873] = {.lex_state = 2}, + [874] = {.lex_state = 2}, + [875] = {.lex_state = 2}, + [876] = {.lex_state = 2}, + [877] = {.lex_state = 2}, + [878] = {.lex_state = 2}, + [879] = {.lex_state = 2}, + [880] = {.lex_state = 17}, + [881] = {.lex_state = 2}, + [882] = {.lex_state = 2}, [883] = {.lex_state = 58}, - [884] = {.lex_state = 58}, - [885] = {.lex_state = 58}, - [886] = {.lex_state = 23}, - [887] = {.lex_state = 23}, - [888] = {.lex_state = 58}, - [889] = {.lex_state = 58}, - [890] = {.lex_state = 58}, - [891] = {.lex_state = 58}, - [892] = {.lex_state = 58}, + [884] = {.lex_state = 2}, + [885] = {.lex_state = 2}, + [886] = {.lex_state = 2}, + [887] = {.lex_state = 2}, + [888] = {.lex_state = 2}, + [889] = {.lex_state = 2}, + [890] = {.lex_state = 2}, + [891] = {.lex_state = 3}, + [892] = {.lex_state = 2}, [893] = {.lex_state = 58}, [894] = {.lex_state = 58}, [895] = {.lex_state = 58}, @@ -9299,27 +9298,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [897] = {.lex_state = 58}, [898] = {.lex_state = 58}, [899] = {.lex_state = 58}, - [900] = {.lex_state = 58}, - [901] = {.lex_state = 58}, - [902] = {.lex_state = 10}, - [903] = {.lex_state = 10}, - [904] = {.lex_state = 10}, - [905] = {.lex_state = 10}, - [906] = {.lex_state = 10}, - [907] = {.lex_state = 10}, - [908] = {.lex_state = 10}, - [909] = {.lex_state = 10}, - [910] = {.lex_state = 10}, - [911] = {.lex_state = 10}, - [912] = {.lex_state = 10}, - [913] = {.lex_state = 10}, - [914] = {.lex_state = 10}, - [915] = {.lex_state = 10}, + [900] = {.lex_state = 23}, + [901] = {.lex_state = 23}, + [902] = {.lex_state = 58}, + [903] = {.lex_state = 58}, + [904] = {.lex_state = 58}, + [905] = {.lex_state = 58}, + [906] = {.lex_state = 58}, + [907] = {.lex_state = 58}, + [908] = {.lex_state = 58}, + [909] = {.lex_state = 58}, + [910] = {.lex_state = 58}, + [911] = {.lex_state = 58}, + [912] = {.lex_state = 58}, + [913] = {.lex_state = 58}, + [914] = {.lex_state = 58}, + [915] = {.lex_state = 58}, [916] = {.lex_state = 10}, - [917] = {.lex_state = 61}, - [918] = {.lex_state = 61}, - [919] = {.lex_state = 61}, - [920] = {.lex_state = 61}, + [917] = {.lex_state = 10}, + [918] = {.lex_state = 10}, + [919] = {.lex_state = 10}, + [920] = {.lex_state = 10}, [921] = {.lex_state = 10}, [922] = {.lex_state = 10}, [923] = {.lex_state = 10}, @@ -9328,548 +9327,548 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [926] = {.lex_state = 10}, [927] = {.lex_state = 10}, [928] = {.lex_state = 10}, - [929] = {.lex_state = 0}, - [930] = {.lex_state = 10}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 10}, + [929] = {.lex_state = 61}, + [930] = {.lex_state = 61}, + [931] = {.lex_state = 10}, + [932] = {.lex_state = 61}, [933] = {.lex_state = 10}, - [934] = {.lex_state = 24}, - [935] = {.lex_state = 24}, - [936] = {.lex_state = 11}, + [934] = {.lex_state = 10}, + [935] = {.lex_state = 10}, + [936] = {.lex_state = 61}, [937] = {.lex_state = 10}, [938] = {.lex_state = 10}, - [939] = {.lex_state = 11}, + [939] = {.lex_state = 10}, [940] = {.lex_state = 10}, - [941] = {.lex_state = 11}, + [941] = {.lex_state = 10}, [942] = {.lex_state = 10}, [943] = {.lex_state = 10}, [944] = {.lex_state = 10}, - [945] = {.lex_state = 10}, - [946] = {.lex_state = 11}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 24}, - [949] = {.lex_state = 24}, - [950] = {.lex_state = 10}, - [951] = {.lex_state = 253}, - [952] = {.lex_state = 25}, + [945] = {.lex_state = 0}, + [946] = {.lex_state = 0}, + [947] = {.lex_state = 10}, + [948] = {.lex_state = 10}, + [949] = {.lex_state = 11}, + [950] = {.lex_state = 11}, + [951] = {.lex_state = 11}, + [952] = {.lex_state = 0}, [953] = {.lex_state = 10}, - [954] = {.lex_state = 0}, - [955] = {.lex_state = 253}, + [954] = {.lex_state = 24}, + [955] = {.lex_state = 10}, [956] = {.lex_state = 24}, - [957] = {.lex_state = 25}, - [958] = {.lex_state = 61}, - [959] = {.lex_state = 0}, - [960] = {.lex_state = 61}, - [961] = {.lex_state = 61}, - [962] = {.lex_state = 253}, - [963] = {.lex_state = 0}, - [964] = {.lex_state = 24}, + [957] = {.lex_state = 10}, + [958] = {.lex_state = 10}, + [959] = {.lex_state = 10}, + [960] = {.lex_state = 10}, + [961] = {.lex_state = 11}, + [962] = {.lex_state = 24}, + [963] = {.lex_state = 25}, + [964] = {.lex_state = 61}, [965] = {.lex_state = 61}, [966] = {.lex_state = 253}, - [967] = {.lex_state = 25}, - [968] = {.lex_state = 61}, - [969] = {.lex_state = 61}, - [970] = {.lex_state = 61}, - [971] = {.lex_state = 25}, - [972] = {.lex_state = 61}, - [973] = {.lex_state = 61}, - [974] = {.lex_state = 61}, - [975] = {.lex_state = 25}, - [976] = {.lex_state = 253}, - [977] = {.lex_state = 25}, - [978] = {.lex_state = 61}, + [967] = {.lex_state = 253}, + [968] = {.lex_state = 0}, + [969] = {.lex_state = 24}, + [970] = {.lex_state = 10}, + [971] = {.lex_state = 0}, + [972] = {.lex_state = 10}, + [973] = {.lex_state = 24}, + [974] = {.lex_state = 25}, + [975] = {.lex_state = 0}, + [976] = {.lex_state = 24}, + [977] = {.lex_state = 61}, + [978] = {.lex_state = 253}, [979] = {.lex_state = 61}, - [980] = {.lex_state = 61}, - [981] = {.lex_state = 61}, + [980] = {.lex_state = 25}, + [981] = {.lex_state = 25}, [982] = {.lex_state = 61}, [983] = {.lex_state = 61}, - [984] = {.lex_state = 253}, - [985] = {.lex_state = 25}, + [984] = {.lex_state = 61}, + [985] = {.lex_state = 61}, [986] = {.lex_state = 61}, - [987] = {.lex_state = 10}, - [988] = {.lex_state = 61}, - [989] = {.lex_state = 25}, - [990] = {.lex_state = 61}, - [991] = {.lex_state = 24}, - [992] = {.lex_state = 61}, - [993] = {.lex_state = 11}, - [994] = {.lex_state = 61}, + [987] = {.lex_state = 61}, + [988] = {.lex_state = 253}, + [989] = {.lex_state = 11}, + [990] = {.lex_state = 10}, + [991] = {.lex_state = 253}, + [992] = {.lex_state = 25}, + [993] = {.lex_state = 253}, + [994] = {.lex_state = 253}, [995] = {.lex_state = 61}, - [996] = {.lex_state = 25}, + [996] = {.lex_state = 61}, [997] = {.lex_state = 253}, [998] = {.lex_state = 61}, [999] = {.lex_state = 61}, [1000] = {.lex_state = 61}, - [1001] = {.lex_state = 25}, + [1001] = {.lex_state = 61}, [1002] = {.lex_state = 61}, - [1003] = {.lex_state = 253}, + [1003] = {.lex_state = 61}, [1004] = {.lex_state = 61}, [1005] = {.lex_state = 61}, [1006] = {.lex_state = 61}, [1007] = {.lex_state = 61}, - [1008] = {.lex_state = 253}, + [1008] = {.lex_state = 61}, [1009] = {.lex_state = 61}, [1010] = {.lex_state = 61}, [1011] = {.lex_state = 61}, - [1012] = {.lex_state = 25}, - [1013] = {.lex_state = 25}, + [1012] = {.lex_state = 61}, + [1013] = {.lex_state = 61}, [1014] = {.lex_state = 25}, - [1015] = {.lex_state = 25}, - [1016] = {.lex_state = 253}, - [1017] = {.lex_state = 253}, + [1015] = {.lex_state = 61}, + [1016] = {.lex_state = 24}, + [1017] = {.lex_state = 61}, [1018] = {.lex_state = 25}, [1019] = {.lex_state = 25}, - [1020] = {.lex_state = 25}, - [1021] = {.lex_state = 25}, - [1022] = {.lex_state = 25}, + [1020] = {.lex_state = 61}, + [1021] = {.lex_state = 253}, + [1022] = {.lex_state = 61}, [1023] = {.lex_state = 25}, - [1024] = {.lex_state = 253}, - [1025] = {.lex_state = 253}, - [1026] = {.lex_state = 62}, - [1027] = {.lex_state = 253}, + [1024] = {.lex_state = 61}, + [1025] = {.lex_state = 25}, + [1026] = {.lex_state = 25}, + [1027] = {.lex_state = 25}, [1028] = {.lex_state = 253}, [1029] = {.lex_state = 25}, - [1030] = {.lex_state = 25}, - [1031] = {.lex_state = 253}, - [1032] = {.lex_state = 11}, - [1033] = {.lex_state = 253}, + [1030] = {.lex_state = 253}, + [1031] = {.lex_state = 25}, + [1032] = {.lex_state = 25}, + [1033] = {.lex_state = 25}, [1034] = {.lex_state = 25}, - [1035] = {.lex_state = 62}, - [1036] = {.lex_state = 253}, + [1035] = {.lex_state = 253}, + [1036] = {.lex_state = 25}, [1037] = {.lex_state = 25}, - [1038] = {.lex_state = 253}, + [1038] = {.lex_state = 25}, [1039] = {.lex_state = 253}, - [1040] = {.lex_state = 62}, + [1040] = {.lex_state = 253}, [1041] = {.lex_state = 253}, [1042] = {.lex_state = 253}, - [1043] = {.lex_state = 253}, - [1044] = {.lex_state = 11}, - [1045] = {.lex_state = 10}, - [1046] = {.lex_state = 0}, + [1043] = {.lex_state = 25}, + [1044] = {.lex_state = 253}, + [1045] = {.lex_state = 62}, + [1046] = {.lex_state = 62}, [1047] = {.lex_state = 253}, - [1048] = {.lex_state = 11}, + [1048] = {.lex_state = 62}, [1049] = {.lex_state = 253}, - [1050] = {.lex_state = 11}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 253}, + [1050] = {.lex_state = 25}, + [1051] = {.lex_state = 25}, + [1052] = {.lex_state = 25}, [1053] = {.lex_state = 253}, - [1054] = {.lex_state = 10}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 11}, - [1057] = {.lex_state = 11}, - [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 253}, + [1054] = {.lex_state = 11}, + [1055] = {.lex_state = 253}, + [1056] = {.lex_state = 0}, + [1057] = {.lex_state = 253}, + [1058] = {.lex_state = 253}, + [1059] = {.lex_state = 11}, + [1060] = {.lex_state = 11}, + [1061] = {.lex_state = 11}, [1062] = {.lex_state = 0}, [1063] = {.lex_state = 253}, - [1064] = {.lex_state = 0}, - [1065] = {.lex_state = 10}, - [1066] = {.lex_state = 10}, - [1067] = {.lex_state = 61}, - [1068] = {.lex_state = 61}, - [1069] = {.lex_state = 4}, - [1070] = {.lex_state = 10}, - [1071] = {.lex_state = 61}, - [1072] = {.lex_state = 5}, - [1073] = {.lex_state = 25}, - [1074] = {.lex_state = 10}, - [1075] = {.lex_state = 253}, - [1076] = {.lex_state = 10}, - [1077] = {.lex_state = 253}, - [1078] = {.lex_state = 5}, - [1079] = {.lex_state = 5}, - [1080] = {.lex_state = 63}, - [1081] = {.lex_state = 63}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 5}, + [1064] = {.lex_state = 253}, + [1065] = {.lex_state = 0}, + [1066] = {.lex_state = 253}, + [1067] = {.lex_state = 253}, + [1068] = {.lex_state = 11}, + [1069] = {.lex_state = 0}, + [1070] = {.lex_state = 253}, + [1071] = {.lex_state = 0}, + [1072] = {.lex_state = 11}, + [1073] = {.lex_state = 10}, + [1074] = {.lex_state = 0}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 253}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 10}, + [1079] = {.lex_state = 253}, + [1080] = {.lex_state = 10}, + [1081] = {.lex_state = 10}, + [1082] = {.lex_state = 4}, + [1083] = {.lex_state = 61}, [1084] = {.lex_state = 10}, [1085] = {.lex_state = 253}, - [1086] = {.lex_state = 61}, - [1087] = {.lex_state = 5}, - [1088] = {.lex_state = 5}, - [1089] = {.lex_state = 24}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 10}, - [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 0}, + [1086] = {.lex_state = 10}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 10}, + [1089] = {.lex_state = 5}, + [1090] = {.lex_state = 61}, + [1091] = {.lex_state = 0}, + [1092] = {.lex_state = 5}, + [1093] = {.lex_state = 10}, [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 10}, - [1096] = {.lex_state = 253}, - [1097] = {.lex_state = 10}, - [1098] = {.lex_state = 61}, - [1099] = {.lex_state = 10}, - [1100] = {.lex_state = 4}, - [1101] = {.lex_state = 10}, + [1095] = {.lex_state = 0}, + [1096] = {.lex_state = 63}, + [1097] = {.lex_state = 5}, + [1098] = {.lex_state = 25}, + [1099] = {.lex_state = 0}, + [1100] = {.lex_state = 63}, + [1101] = {.lex_state = 5}, [1102] = {.lex_state = 5}, [1103] = {.lex_state = 253}, [1104] = {.lex_state = 5}, [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 253}, - [1107] = {.lex_state = 24}, - [1108] = {.lex_state = 253}, - [1109] = {.lex_state = 10}, + [1106] = {.lex_state = 10}, + [1107] = {.lex_state = 10}, + [1108] = {.lex_state = 5}, + [1109] = {.lex_state = 5}, [1110] = {.lex_state = 10}, [1111] = {.lex_state = 10}, - [1112] = {.lex_state = 63}, - [1113] = {.lex_state = 10}, - [1114] = {.lex_state = 62}, - [1115] = {.lex_state = 63}, - [1116] = {.lex_state = 62}, - [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 253}, - [1119] = {.lex_state = 63}, - [1120] = {.lex_state = 62}, - [1121] = {.lex_state = 62}, + [1112] = {.lex_state = 253}, + [1113] = {.lex_state = 253}, + [1114] = {.lex_state = 10}, + [1115] = {.lex_state = 24}, + [1116] = {.lex_state = 61}, + [1117] = {.lex_state = 253}, + [1118] = {.lex_state = 24}, + [1119] = {.lex_state = 10}, + [1120] = {.lex_state = 10}, + [1121] = {.lex_state = 10}, [1122] = {.lex_state = 62}, - [1123] = {.lex_state = 253}, - [1124] = {.lex_state = 62}, - [1125] = {.lex_state = 62}, - [1126] = {.lex_state = 61}, - [1127] = {.lex_state = 62}, - [1128] = {.lex_state = 62}, - [1129] = {.lex_state = 62}, + [1123] = {.lex_state = 63}, + [1124] = {.lex_state = 4}, + [1125] = {.lex_state = 61}, + [1126] = {.lex_state = 10}, + [1127] = {.lex_state = 61}, + [1128] = {.lex_state = 63}, + [1129] = {.lex_state = 253}, [1130] = {.lex_state = 62}, - [1131] = {.lex_state = 61}, - [1132] = {.lex_state = 62}, - [1133] = {.lex_state = 62}, - [1134] = {.lex_state = 62}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 253}, - [1139] = {.lex_state = 253}, - [1140] = {.lex_state = 62}, - [1141] = {.lex_state = 62}, - [1142] = {.lex_state = 61}, - [1143] = {.lex_state = 62}, - [1144] = {.lex_state = 62}, - [1145] = {.lex_state = 61}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 61}, - [1148] = {.lex_state = 62}, - [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 62}, - [1151] = {.lex_state = 61}, - [1152] = {.lex_state = 63}, + [1131] = {.lex_state = 253}, + [1132] = {.lex_state = 61}, + [1133] = {.lex_state = 0}, + [1134] = {.lex_state = 11}, + [1135] = {.lex_state = 253}, + [1136] = {.lex_state = 62}, + [1137] = {.lex_state = 62}, + [1138] = {.lex_state = 62}, + [1139] = {.lex_state = 5}, + [1140] = {.lex_state = 5}, + [1141] = {.lex_state = 5}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 0}, + [1144] = {.lex_state = 61}, + [1145] = {.lex_state = 62}, + [1146] = {.lex_state = 61}, + [1147] = {.lex_state = 63}, + [1148] = {.lex_state = 0}, + [1149] = {.lex_state = 62}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 62}, + [1152] = {.lex_state = 62}, [1153] = {.lex_state = 62}, - [1154] = {.lex_state = 5}, + [1154] = {.lex_state = 62}, [1155] = {.lex_state = 63}, - [1156] = {.lex_state = 63}, - [1157] = {.lex_state = 253}, + [1156] = {.lex_state = 62}, + [1157] = {.lex_state = 62}, [1158] = {.lex_state = 62}, - [1159] = {.lex_state = 253}, - [1160] = {.lex_state = 63}, - [1161] = {.lex_state = 63}, + [1159] = {.lex_state = 62}, + [1160] = {.lex_state = 62}, + [1161] = {.lex_state = 61}, [1162] = {.lex_state = 62}, [1163] = {.lex_state = 62}, - [1164] = {.lex_state = 62}, - [1165] = {.lex_state = 61}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 253}, [1166] = {.lex_state = 62}, [1167] = {.lex_state = 62}, [1168] = {.lex_state = 253}, [1169] = {.lex_state = 253}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 11}, - [1172] = {.lex_state = 62}, - [1173] = {.lex_state = 61}, - [1174] = {.lex_state = 5}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 61}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 62}, + [1170] = {.lex_state = 62}, + [1171] = {.lex_state = 62}, + [1172] = {.lex_state = 0}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 61}, + [1175] = {.lex_state = 62}, + [1176] = {.lex_state = 253}, + [1177] = {.lex_state = 62}, + [1178] = {.lex_state = 61}, [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 253}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 61}, - [1183] = {.lex_state = 5}, - [1184] = {.lex_state = 5}, + [1180] = {.lex_state = 62}, + [1181] = {.lex_state = 253}, + [1182] = {.lex_state = 62}, + [1183] = {.lex_state = 62}, + [1184] = {.lex_state = 62}, [1185] = {.lex_state = 62}, - [1186] = {.lex_state = 61}, - [1187] = {.lex_state = 62}, + [1186] = {.lex_state = 62}, + [1187] = {.lex_state = 0}, [1188] = {.lex_state = 62}, - [1189] = {.lex_state = 62}, + [1189] = {.lex_state = 0}, [1190] = {.lex_state = 253}, [1191] = {.lex_state = 253}, - [1192] = {.lex_state = 253}, - [1193] = {.lex_state = 253}, - [1194] = {.lex_state = 62}, - [1195] = {.lex_state = 62}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 62}, - [1198] = {.lex_state = 0}, + [1192] = {.lex_state = 62}, + [1193] = {.lex_state = 61}, + [1194] = {.lex_state = 63}, + [1195] = {.lex_state = 63}, + [1196] = {.lex_state = 63}, + [1197] = {.lex_state = 253}, + [1198] = {.lex_state = 63}, [1199] = {.lex_state = 61}, - [1200] = {.lex_state = 5}, - [1201] = {.lex_state = 62}, - [1202] = {.lex_state = 63}, - [1203] = {.lex_state = 5}, - [1204] = {.lex_state = 62}, - [1205] = {.lex_state = 0}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 5}, + [1202] = {.lex_state = 253}, + [1203] = {.lex_state = 253}, + [1204] = {.lex_state = 253}, + [1205] = {.lex_state = 5}, [1206] = {.lex_state = 253}, [1207] = {.lex_state = 253}, - [1208] = {.lex_state = 253}, - [1209] = {.lex_state = 63}, - [1210] = {.lex_state = 62}, - [1211] = {.lex_state = 253}, - [1212] = {.lex_state = 253}, + [1208] = {.lex_state = 63}, + [1209] = {.lex_state = 62}, + [1210] = {.lex_state = 253}, + [1211] = {.lex_state = 62}, + [1212] = {.lex_state = 61}, [1213] = {.lex_state = 62}, - [1214] = {.lex_state = 253}, - [1215] = {.lex_state = 5}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 253}, + [1214] = {.lex_state = 62}, + [1215] = {.lex_state = 253}, + [1216] = {.lex_state = 253}, + [1217] = {.lex_state = 62}, [1218] = {.lex_state = 62}, - [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 11}, + [1219] = {.lex_state = 62}, + [1220] = {.lex_state = 62}, [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 253}, + [1222] = {.lex_state = 63}, + [1223] = {.lex_state = 62}, [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 5}, - [1226] = {.lex_state = 11}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 16}, - [1229] = {.lex_state = 11}, + [1225] = {.lex_state = 61}, + [1226] = {.lex_state = 5}, + [1227] = {.lex_state = 5}, + [1228] = {.lex_state = 253}, + [1229] = {.lex_state = 61}, [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 11}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 253}, + [1231] = {.lex_state = 253}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 61}, + [1234] = {.lex_state = 0}, [1235] = {.lex_state = 0}, [1236] = {.lex_state = 253}, - [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 11}, - [1240] = {.lex_state = 11}, - [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 253}, - [1243] = {.lex_state = 253}, - [1244] = {.lex_state = 253}, - [1245] = {.lex_state = 16}, - [1246] = {.lex_state = 253}, - [1247] = {.lex_state = 253}, - [1248] = {.lex_state = 253}, - [1249] = {.lex_state = 253}, - [1250] = {.lex_state = 24}, + [1237] = {.lex_state = 61}, + [1238] = {.lex_state = 5}, + [1239] = {.lex_state = 0}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 253}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 11}, + [1245] = {.lex_state = 11}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 11}, + [1248] = {.lex_state = 0}, + [1249] = {.lex_state = 11}, + [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, [1252] = {.lex_state = 0}, [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 5}, + [1254] = {.lex_state = 0}, [1255] = {.lex_state = 11}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 11}, - [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 11}, - [1260] = {.lex_state = 11}, - [1261] = {.lex_state = 11}, + [1256] = {.lex_state = 11}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 11}, + [1259] = {.lex_state = 0}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 0}, [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 11}, - [1264] = {.lex_state = 25}, - [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 16}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 11}, + [1265] = {.lex_state = 11}, + [1266] = {.lex_state = 11}, + [1267] = {.lex_state = 11}, [1268] = {.lex_state = 11}, [1269] = {.lex_state = 11}, - [1270] = {.lex_state = 11}, + [1270] = {.lex_state = 0}, [1271] = {.lex_state = 11}, - [1272] = {.lex_state = 0}, + [1272] = {.lex_state = 16}, [1273] = {.lex_state = 11}, [1274] = {.lex_state = 11}, - [1275] = {.lex_state = 11}, + [1275] = {.lex_state = 25}, [1276] = {.lex_state = 253}, - [1277] = {.lex_state = 11}, + [1277] = {.lex_state = 0}, [1278] = {.lex_state = 11}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 253}, + [1279] = {.lex_state = 11}, + [1280] = {.lex_state = 0}, [1281] = {.lex_state = 11}, - [1282] = {.lex_state = 0}, + [1282] = {.lex_state = 11}, [1283] = {.lex_state = 0}, [1284] = {.lex_state = 11}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 253}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 253}, + [1285] = {.lex_state = 11}, + [1286] = {.lex_state = 11}, + [1287] = {.lex_state = 253}, + [1288] = {.lex_state = 0}, [1289] = {.lex_state = 11}, - [1290] = {.lex_state = 253}, - [1291] = {.lex_state = 61}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 0}, [1292] = {.lex_state = 0}, [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 11}, - [1296] = {.lex_state = 11}, - [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 253}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 11}, - [1305] = {.lex_state = 0}, + [1294] = {.lex_state = 253}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 63}, + [1298] = {.lex_state = 253}, + [1299] = {.lex_state = 253}, + [1300] = {.lex_state = 253}, + [1301] = {.lex_state = 253}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 253}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 11}, [1306] = {.lex_state = 0}, [1307] = {.lex_state = 0}, [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, + [1309] = {.lex_state = 253}, [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0}, [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 253}, - [1314] = {.lex_state = 0}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 16}, [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 0}, + [1316] = {.lex_state = 11}, [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 63}, - [1319] = {.lex_state = 253}, + [1318] = {.lex_state = 16}, + [1319] = {.lex_state = 0}, [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 11}, + [1321] = {.lex_state = 253}, [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 11}, - [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 0}, + [1324] = {.lex_state = 0}, + [1325] = {.lex_state = 253}, + [1326] = {.lex_state = 253}, [1327] = {.lex_state = 11}, - [1328] = {.lex_state = 11}, - [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 11}, - [1331] = {.lex_state = 11}, - [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 0}, + [1328] = {.lex_state = 0}, + [1329] = {.lex_state = 11}, + [1330] = {.lex_state = 0}, + [1331] = {.lex_state = 0}, + [1332] = {.lex_state = 253}, + [1333] = {.lex_state = 11}, [1334] = {.lex_state = 0}, [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 0}, + [1336] = {.lex_state = 11}, [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 253}, - [1339] = {.lex_state = 253}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 253}, + [1341] = {.lex_state = 16}, [1342] = {.lex_state = 0}, [1343] = {.lex_state = 0}, [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 253}, - [1346] = {.lex_state = 16}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 0}, [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 11}, - [1350] = {.lex_state = 253}, + [1348] = {.lex_state = 16}, + [1349] = {.lex_state = 253}, + [1350] = {.lex_state = 0}, [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 11}, - [1353] = {.lex_state = 16}, - [1354] = {.lex_state = 11}, + [1352] = {.lex_state = 253}, + [1353] = {.lex_state = 11}, + [1354] = {.lex_state = 0}, [1355] = {.lex_state = 253}, - [1356] = {.lex_state = 11}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 11}, + [1358] = {.lex_state = 253}, [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, + [1360] = {.lex_state = 24}, + [1361] = {.lex_state = 11}, [1362] = {.lex_state = 0}, [1363] = {.lex_state = 0}, [1364] = {.lex_state = 0}, [1365] = {.lex_state = 0}, [1366] = {.lex_state = 253}, [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 253}, - [1369] = {.lex_state = 253}, - [1370] = {.lex_state = 253}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 11}, + [1370] = {.lex_state = 0}, [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 253}, + [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 11}, + [1374] = {.lex_state = 0}, [1375] = {.lex_state = 253}, - [1376] = {.lex_state = 5}, - [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 5}, - [1379] = {.lex_state = 0}, + [1376] = {.lex_state = 11}, + [1377] = {.lex_state = 253}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 11}, [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 0}, + [1381] = {.lex_state = 253}, [1382] = {.lex_state = 0}, [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 253}, - [1386] = {.lex_state = 253}, - [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 0}, + [1384] = {.lex_state = 11}, + [1385] = {.lex_state = 11}, + [1386] = {.lex_state = 0}, + [1387] = {.lex_state = 253}, + [1388] = {.lex_state = 5}, [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 5}, + [1390] = {.lex_state = 253}, + [1391] = {.lex_state = 253}, + [1392] = {.lex_state = 5}, + [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 0}, + [1395] = {.lex_state = 253}, [1396] = {.lex_state = 0}, [1397] = {.lex_state = 0}, [1398] = {.lex_state = 253}, - [1399] = {.lex_state = 0}, + [1399] = {.lex_state = 5}, [1400] = {.lex_state = 0}, [1401] = {.lex_state = 0}, [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 5}, + [1403] = {.lex_state = 0}, [1404] = {.lex_state = 0}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 253}, + [1406] = {.lex_state = 0}, [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 16}, - [1411] = {.lex_state = 0}, + [1408] = {.lex_state = 253}, + [1409] = {.lex_state = 5}, + [1410] = {.lex_state = 0}, + [1411] = {.lex_state = 16}, [1412] = {.lex_state = 0}, [1413] = {.lex_state = 0}, [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 0}, + [1415] = {.lex_state = 253}, [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 253}, - [1419] = {.lex_state = 253}, - [1420] = {.lex_state = 0}, + [1418] = {.lex_state = 0}, + [1419] = {.lex_state = 0}, + [1420] = {.lex_state = 5}, [1421] = {.lex_state = 0}, [1422] = {.lex_state = 0}, [1423] = {.lex_state = 0}, [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 62}, + [1425] = {.lex_state = 0}, [1426] = {.lex_state = 253}, - [1427] = {.lex_state = 253}, - [1428] = {.lex_state = 253}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 10}, - [1431] = {.lex_state = 253}, + [1427] = {.lex_state = 0}, + [1428] = {.lex_state = 0}, + [1429] = {.lex_state = 253}, + [1430] = {.lex_state = 253}, + [1431] = {.lex_state = 0}, [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 10}, - [1434] = {.lex_state = 61}, - [1435] = {.lex_state = 61}, - [1436] = {.lex_state = 10}, - [1437] = {.lex_state = 10}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 0}, + [1436] = {.lex_state = 253}, + [1437] = {.lex_state = 0}, [1438] = {.lex_state = 253}, - [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 253}, - [1442] = {.lex_state = 62}, - [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 0}, + [1439] = {.lex_state = 10}, + [1440] = {.lex_state = 253}, + [1441] = {.lex_state = 10}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 61}, + [1444] = {.lex_state = 61}, + [1445] = {.lex_state = 10}, + [1446] = {.lex_state = 10}, + [1447] = {.lex_state = 253}, + [1448] = {.lex_state = 253}, + [1449] = {.lex_state = 62}, [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 253}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 62}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 253}, + [1453] = {.lex_state = 0}, [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 0}, + [1455] = {.lex_state = 253}, [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 62}, - [1458] = {.lex_state = 10}, - [1459] = {.lex_state = 253}, - [1460] = {.lex_state = 253}, - [1461] = {.lex_state = 253}, - [1462] = {.lex_state = 253}, - [1463] = {.lex_state = 253}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 0}, + [1460] = {.lex_state = 0}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 60}, + [1463] = {.lex_state = 0}, [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 253}, - [1466] = {.lex_state = 253}, - [1467] = {.lex_state = 0}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 253}, [1468] = {.lex_state = 0}, [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 0}, + [1470] = {.lex_state = 253}, [1471] = {.lex_state = 253}, [1472] = {.lex_state = 0}, [1473] = {.lex_state = 0}, @@ -9877,276 +9876,283 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1475] = {.lex_state = 0}, [1476] = {.lex_state = 0}, [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 62}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 62}, + [1478] = {.lex_state = 253}, + [1479] = {.lex_state = 253}, + [1480] = {.lex_state = 61}, [1481] = {.lex_state = 253}, - [1482] = {.lex_state = 60}, - [1483] = {.lex_state = 0}, + [1482] = {.lex_state = 253}, + [1483] = {.lex_state = 253}, [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 253}, - [1486] = {.lex_state = 62}, - [1487] = {.lex_state = 62}, - [1488] = {.lex_state = 253}, - [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 61}, - [1491] = {.lex_state = 253}, - [1492] = {.lex_state = 62}, + [1485] = {.lex_state = 62}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 253}, + [1488] = {.lex_state = 62}, + [1489] = {.lex_state = 253}, + [1490] = {.lex_state = 0}, + [1491] = {.lex_state = 61}, + [1492] = {.lex_state = 253}, [1493] = {.lex_state = 0}, - [1494] = {.lex_state = 253}, - [1495] = {.lex_state = 253}, + [1494] = {.lex_state = 0}, + [1495] = {.lex_state = 0}, [1496] = {.lex_state = 0}, [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 62}, - [1499] = {.lex_state = 62}, - [1500] = {.lex_state = 62}, - [1501] = {.lex_state = 0}, + [1498] = {.lex_state = 253}, + [1499] = {.lex_state = 0}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 62}, [1502] = {.lex_state = 0}, [1503] = {.lex_state = 253}, - [1504] = {.lex_state = 253}, + [1504] = {.lex_state = 0}, [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 10}, - [1508] = {.lex_state = 0}, - [1509] = {.lex_state = 62}, - [1510] = {.lex_state = 253}, + [1506] = {.lex_state = 62}, + [1507] = {.lex_state = 62}, + [1508] = {.lex_state = 253}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 0}, [1511] = {.lex_state = 253}, [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 62}, - [1514] = {.lex_state = 62}, - [1515] = {.lex_state = 0}, + [1513] = {.lex_state = 0}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 253}, [1516] = {.lex_state = 62}, - [1517] = {.lex_state = 24}, - [1518] = {.lex_state = 0}, + [1517] = {.lex_state = 62}, + [1518] = {.lex_state = 62}, [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 253}, - [1521] = {.lex_state = 253}, + [1520] = {.lex_state = 62}, + [1521] = {.lex_state = 0}, [1522] = {.lex_state = 62}, - [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 253}, + [1523] = {.lex_state = 62}, + [1524] = {.lex_state = 62}, [1525] = {.lex_state = 253}, - [1526] = {.lex_state = 62}, + [1526] = {.lex_state = 0}, [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 253}, - [1530] = {.lex_state = 0}, + [1528] = {.lex_state = 62}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 253}, [1531] = {.lex_state = 253}, [1532] = {.lex_state = 0}, [1533] = {.lex_state = 62}, - [1534] = {.lex_state = 253}, + [1534] = {.lex_state = 62}, [1535] = {.lex_state = 0}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 10}, - [1538] = {.lex_state = 253}, - [1539] = {.lex_state = 253}, - [1540] = {.lex_state = 61}, - [1541] = {.lex_state = 62}, - [1542] = {.lex_state = 253}, + [1536] = {.lex_state = 62}, + [1537] = {.lex_state = 253}, + [1538] = {.lex_state = 10}, + [1539] = {.lex_state = 62}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 253}, + [1542] = {.lex_state = 62}, [1543] = {.lex_state = 0}, - [1544] = {.lex_state = 62}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 62}, - [1547] = {.lex_state = 24}, + [1544] = {.lex_state = 0}, + [1545] = {.lex_state = 62}, + [1546] = {.lex_state = 253}, + [1547] = {.lex_state = 0}, [1548] = {.lex_state = 62}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 62}, - [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 62}, - [1555] = {.lex_state = 0}, + [1549] = {.lex_state = 62}, + [1550] = {.lex_state = 253}, + [1551] = {.lex_state = 0}, + [1552] = {.lex_state = 10}, + [1553] = {.lex_state = 253}, + [1554] = {.lex_state = 0}, + [1555] = {.lex_state = 24}, [1556] = {.lex_state = 62}, - [1557] = {.lex_state = 0}, + [1557] = {.lex_state = 253}, [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 0}, + [1559] = {.lex_state = 62}, [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 62}, - [1563] = {.lex_state = 62}, - [1564] = {.lex_state = 0}, + [1561] = {.lex_state = 253}, + [1562] = {.lex_state = 0}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 62}, [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 62}, + [1566] = {.lex_state = 0}, [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 62}, - [1569] = {.lex_state = 62}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, + [1568] = {.lex_state = 0}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 62}, + [1571] = {.lex_state = 62}, [1572] = {.lex_state = 62}, - [1573] = {.lex_state = 253}, - [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 62}, - [1576] = {.lex_state = 253}, - [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 62}, - [1579] = {.lex_state = 62}, + [1573] = {.lex_state = 10}, + [1574] = {.lex_state = 62}, + [1575] = {.lex_state = 0}, + [1576] = {.lex_state = 62}, + [1577] = {.lex_state = 62}, + [1578] = {.lex_state = 253}, + [1579] = {.lex_state = 24}, [1580] = {.lex_state = 62}, - [1581] = {.lex_state = 253}, - [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 0}, + [1581] = {.lex_state = 62}, + [1582] = {.lex_state = 253}, + [1583] = {.lex_state = 253}, [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, + [1585] = {.lex_state = 62}, [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 60}, - [1588] = {.lex_state = 0}, + [1587] = {.lex_state = 62}, + [1588] = {.lex_state = 62}, [1589] = {.lex_state = 0}, [1590] = {.lex_state = 0}, [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 0}, - [1594] = {.lex_state = 12}, - [1595] = {.lex_state = 0}, + [1592] = {.lex_state = 16}, + [1593] = {.lex_state = 60}, + [1594] = {.lex_state = 0}, + [1595] = {.lex_state = 12}, [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 60}, - [1598] = {.lex_state = 60}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 0}, + [1597] = {.lex_state = 0}, + [1598] = {.lex_state = 0}, + [1599] = {.lex_state = 16}, + [1600] = {.lex_state = 60}, [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 0}, + [1602] = {.lex_state = 12}, [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 60}, - [1605] = {.lex_state = 60}, - [1606] = {.lex_state = 60}, - [1607] = {.lex_state = 60}, - [1608] = {.lex_state = 60}, - [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 12}, + [1604] = {.lex_state = 0}, + [1605] = {.lex_state = 0}, + [1606] = {.lex_state = 0}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 0}, + [1609] = {.lex_state = 60}, + [1610] = {.lex_state = 60}, [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 0}, - [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 0}, + [1612] = {.lex_state = 60}, + [1613] = {.lex_state = 60}, + [1614] = {.lex_state = 60}, [1615] = {.lex_state = 60}, - [1616] = {.lex_state = 413}, - [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 12}, - [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 12}, - [1621] = {.lex_state = 16}, - [1622] = {.lex_state = 60}, - [1623] = {.lex_state = 60}, - [1624] = {.lex_state = 60}, + [1616] = {.lex_state = 60}, + [1617] = {.lex_state = 60}, + [1618] = {.lex_state = 60}, + [1619] = {.lex_state = 60}, + [1620] = {.lex_state = 60}, + [1621] = {.lex_state = 60}, + [1622] = {.lex_state = 0}, + [1623] = {.lex_state = 0}, + [1624] = {.lex_state = 412}, [1625] = {.lex_state = 0}, [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 0}, + [1627] = {.lex_state = 12}, [1628] = {.lex_state = 0}, [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 60}, - [1631] = {.lex_state = 60}, + [1630] = {.lex_state = 0}, + [1631] = {.lex_state = 0}, [1632] = {.lex_state = 60}, - [1633] = {.lex_state = 60}, - [1634] = {.lex_state = 60}, - [1635] = {.lex_state = 60}, - [1636] = {.lex_state = 60}, - [1637] = {.lex_state = 60}, - [1638] = {.lex_state = 60}, - [1639] = {.lex_state = 0}, + [1633] = {.lex_state = 0}, + [1634] = {.lex_state = 0}, + [1635] = {.lex_state = 0}, + [1636] = {.lex_state = 0}, + [1637] = {.lex_state = 0}, + [1638] = {.lex_state = 12}, + [1639] = {.lex_state = 16}, [1640] = {.lex_state = 60}, [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, + [1642] = {.lex_state = 60}, + [1643] = {.lex_state = 60}, + [1644] = {.lex_state = 60}, + [1645] = {.lex_state = 60}, + [1646] = {.lex_state = 4}, [1647] = {.lex_state = 60}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 12}, + [1648] = {.lex_state = 60}, + [1649] = {.lex_state = 0}, [1650] = {.lex_state = 0}, [1651] = {.lex_state = 0}, [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 4}, + [1653] = {.lex_state = 0}, [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 16}, + [1655] = {.lex_state = 0}, [1656] = {.lex_state = 0}, [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 60}, - [1659] = {.lex_state = 60}, + [1658] = {.lex_state = 12}, + [1659] = {.lex_state = 0}, [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 60}, - [1663] = {.lex_state = 60}, + [1661] = {.lex_state = 60}, + [1662] = {.lex_state = 0}, + [1663] = {.lex_state = 0}, [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 0}, + [1665] = {.lex_state = 253}, [1666] = {.lex_state = 60}, - [1667] = {.lex_state = 0}, + [1667] = {.lex_state = 60}, [1668] = {.lex_state = 0}, [1669] = {.lex_state = 0}, [1670] = {.lex_state = 0}, [1671] = {.lex_state = 0}, [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 4}, - [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 60}, + [1673] = {.lex_state = 60}, + [1674] = {.lex_state = 0}, + [1675] = {.lex_state = 4}, + [1676] = {.lex_state = 0}, [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 60}, + [1678] = {.lex_state = 0}, [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 60}, + [1680] = {.lex_state = 0}, [1681] = {.lex_state = 0}, - [1682] = {.lex_state = 0}, + [1682] = {.lex_state = 16}, [1683] = {.lex_state = 0}, [1684] = {.lex_state = 0}, [1685] = {.lex_state = 0}, [1686] = {.lex_state = 16}, [1687] = {.lex_state = 0}, [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 16}, + [1689] = {.lex_state = 0}, [1690] = {.lex_state = 0}, [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 413}, + [1692] = {.lex_state = 60}, [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 253}, - [1695] = {.lex_state = 0}, + [1694] = {.lex_state = 0}, + [1695] = {.lex_state = 60}, [1696] = {.lex_state = 0}, [1697] = {.lex_state = 0}, [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 16}, + [1699] = {.lex_state = 412}, [1700] = {.lex_state = 0}, [1701] = {.lex_state = 0}, [1702] = {.lex_state = 0}, [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 413}, - [1705] = {.lex_state = 413}, - [1706] = {.lex_state = 16}, + [1704] = {.lex_state = 16}, + [1705] = {.lex_state = 0}, + [1706] = {.lex_state = 0}, [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 0}, - [1709] = {.lex_state = 16}, - [1710] = {.lex_state = 413}, + [1708] = {.lex_state = 16}, + [1709] = {.lex_state = 0}, + [1710] = {.lex_state = 412}, [1711] = {.lex_state = 60}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 60}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 60}, - [1716] = {.lex_state = 0}, - [1717] = {.lex_state = 60}, + [1712] = {.lex_state = 412}, + [1713] = {.lex_state = 0}, + [1714] = {.lex_state = 60}, + [1715] = {.lex_state = 0}, + [1716] = {.lex_state = 60}, + [1717] = {.lex_state = 412}, [1718] = {.lex_state = 0}, [1719] = {.lex_state = 0}, - [1720] = {.lex_state = 16}, + [1720] = {.lex_state = 60}, [1721] = {.lex_state = 0}, - [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 60}, - [1724] = {.lex_state = 0}, + [1722] = {.lex_state = 60}, + [1723] = {.lex_state = 0}, + [1724] = {.lex_state = 60}, [1725] = {.lex_state = 0}, [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 60}, - [1728] = {.lex_state = 16}, + [1727] = {.lex_state = 16}, + [1728] = {.lex_state = 0}, [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 16}, - [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 253}, + [1730] = {.lex_state = 60}, + [1731] = {.lex_state = 16}, + [1732] = {.lex_state = 0}, [1733] = {.lex_state = 0}, [1734] = {.lex_state = 0}, [1735] = {.lex_state = 0}, [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 0}, + [1737] = {.lex_state = 16}, [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 60}, + [1739] = {.lex_state = 253}, [1740] = {.lex_state = 60}, [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 60}, + [1742] = {.lex_state = 0}, [1743] = {.lex_state = 60}, - [1744] = {.lex_state = 60}, - [1745] = {.lex_state = 60}, + [1744] = {.lex_state = 0}, + [1745] = {.lex_state = 0}, [1746] = {.lex_state = 60}, - [1747] = {.lex_state = 0}, + [1747] = {.lex_state = 60}, + [1748] = {.lex_state = 0}, + [1749] = {.lex_state = 60}, + [1750] = {.lex_state = 60}, + [1751] = {.lex_state = 60}, + [1752] = {.lex_state = 60}, + [1753] = {.lex_state = 60}, + [1754] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -10256,67 +10262,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(1700), - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_associated_impl] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(20), - [sym_attribute_item] = STATE(20), - [sym_inner_attribute_item] = STATE(20), - [sym_mod_item] = STATE(20), - [sym_struct_item] = STATE(20), - [sym_enum_item] = STATE(20), - [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(756), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(20), + [sym_source_file] = STATE(1706), + [sym__statement] = STATE(5), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_associated_impl] = STATE(5), + [sym_const_item] = STATE(5), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(5), + [sym_expression] = STATE(885), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(5), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_impl] = ACTIONS(9), @@ -10354,16 +10362,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -10378,66 +10386,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(6), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_associated_impl] = STATE(6), - [sym_const_item] = STATE(6), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(726), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(6), + [sym__statement] = STATE(8), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_associated_impl] = STATE(8), + [sym_const_item] = STATE(8), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(788), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(87), [anon_sym_impl] = ACTIONS(9), @@ -10475,16 +10485,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -10499,66 +10509,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(4), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_associated_impl] = STATE(4), - [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(681), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(4), + [sym__statement] = STATE(8), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_associated_impl] = STATE(8), + [sym_const_item] = STATE(8), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(797), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(89), [anon_sym_impl] = ACTIONS(9), @@ -10596,16 +10608,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -10620,66 +10632,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(6), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_associated_impl] = STATE(6), - [sym_const_item] = STATE(6), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(683), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(6), + [sym__statement] = STATE(8), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_associated_impl] = STATE(8), + [sym_const_item] = STATE(8), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(841), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(91), [anon_sym_impl] = ACTIONS(9), @@ -10717,16 +10731,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -10741,376 +10755,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [5] = { - [sym__statement] = STATE(5), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_associated_impl] = STATE(5), - [sym_const_item] = STATE(5), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(5), - [sym_expression] = STATE(756), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(5), - [ts_builtin_sym_end] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_impl] = ACTIONS(98), - [anon_sym_SEMI] = ACTIONS(101), - [anon_sym_trait] = ACTIONS(104), - [anon_sym_type] = ACTIONS(107), - [anon_sym_const] = ACTIONS(110), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_POUND] = ACTIONS(116), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_mod] = ACTIONS(122), - [anon_sym_struct] = ACTIONS(125), - [anon_sym_enum] = ACTIONS(128), - [anon_sym_fn] = ACTIONS(131), - [anon_sym_let] = ACTIONS(134), - [anon_sym_use] = ACTIONS(137), - [anon_sym_COLON_COLON] = ACTIONS(140), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(143), - [anon_sym_u8] = ACTIONS(146), - [anon_sym_i8] = ACTIONS(146), - [anon_sym_u16] = ACTIONS(146), - [anon_sym_i16] = ACTIONS(146), - [anon_sym_u32] = ACTIONS(146), - [anon_sym_i32] = ACTIONS(146), - [anon_sym_u64] = ACTIONS(146), - [anon_sym_i64] = ACTIONS(146), - [anon_sym_u128] = ACTIONS(146), - [anon_sym_i128] = ACTIONS(146), - [anon_sym_usize] = ACTIONS(146), - [anon_sym_bool] = ACTIONS(146), - [anon_sym_ByteArray] = ACTIONS(146), - [anon_sym_felt252] = ACTIONS(146), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(113), - [anon_sym_PIPE] = ACTIONS(152), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(158), - [anon_sym_default] = ACTIONS(161), - [anon_sym_if] = ACTIONS(164), - [anon_sym_extern] = ACTIONS(167), - [anon_sym_loop] = ACTIONS(170), - [anon_sym_match] = ACTIONS(173), - [anon_sym_pub] = ACTIONS(176), - [anon_sym_return] = ACTIONS(179), - [anon_sym_static] = ACTIONS(182), - [anon_sym_while] = ACTIONS(185), - [anon_sym_for] = ACTIONS(188), - [sym_numeric_literal] = ACTIONS(191), - [aux_sym_string_literal_token1] = ACTIONS(194), - [sym_shortstring_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(200), - [anon_sym_false] = ACTIONS(200), - [anon_sym_move] = ACTIONS(203), - [anon_sym_ref] = ACTIONS(206), - [sym_identifier] = ACTIONS(209), - [sym_super] = ACTIONS(212), - [sym_line_comment] = ACTIONS(3), - }, - [6] = { - [sym__statement] = STATE(6), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_associated_impl] = STATE(6), - [sym_const_item] = STATE(6), - [sym_macro_invocation] = STATE(142), - [sym_empty_statement] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(756), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(6), - [anon_sym_LBRACE] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_impl] = ACTIONS(98), - [anon_sym_SEMI] = ACTIONS(101), - [anon_sym_trait] = ACTIONS(104), - [anon_sym_type] = ACTIONS(107), - [anon_sym_const] = ACTIONS(110), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_POUND] = ACTIONS(116), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_mod] = ACTIONS(122), - [anon_sym_struct] = ACTIONS(125), - [anon_sym_enum] = ACTIONS(128), - [anon_sym_fn] = ACTIONS(131), - [anon_sym_let] = ACTIONS(134), - [anon_sym_use] = ACTIONS(137), - [anon_sym_COLON_COLON] = ACTIONS(140), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(143), - [anon_sym_u8] = ACTIONS(146), - [anon_sym_i8] = ACTIONS(146), - [anon_sym_u16] = ACTIONS(146), - [anon_sym_i16] = ACTIONS(146), - [anon_sym_u32] = ACTIONS(146), - [anon_sym_i32] = ACTIONS(146), - [anon_sym_u64] = ACTIONS(146), - [anon_sym_i64] = ACTIONS(146), - [anon_sym_u128] = ACTIONS(146), - [anon_sym_i128] = ACTIONS(146), - [anon_sym_usize] = ACTIONS(146), - [anon_sym_bool] = ACTIONS(146), - [anon_sym_ByteArray] = ACTIONS(146), - [anon_sym_felt252] = ACTIONS(146), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_TILDE] = ACTIONS(113), - [anon_sym_PIPE] = ACTIONS(152), - [anon_sym_AT] = ACTIONS(113), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(158), - [anon_sym_default] = ACTIONS(161), - [anon_sym_if] = ACTIONS(164), - [anon_sym_extern] = ACTIONS(167), - [anon_sym_loop] = ACTIONS(170), - [anon_sym_match] = ACTIONS(173), - [anon_sym_pub] = ACTIONS(176), - [anon_sym_return] = ACTIONS(179), - [anon_sym_static] = ACTIONS(182), - [anon_sym_while] = ACTIONS(185), - [anon_sym_for] = ACTIONS(188), - [sym_numeric_literal] = ACTIONS(191), - [aux_sym_string_literal_token1] = ACTIONS(194), - [sym_shortstring_literal] = ACTIONS(197), - [anon_sym_true] = ACTIONS(200), - [anon_sym_false] = ACTIONS(200), - [anon_sym_move] = ACTIONS(203), - [anon_sym_ref] = ACTIONS(206), - [sym_identifier] = ACTIONS(209), - [sym_super] = ACTIONS(212), - [sym_line_comment] = ACTIONS(3), - }, - [7] = { - [sym__statement] = STATE(6), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_associated_impl] = STATE(6), - [sym_const_item] = STATE(6), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(723), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(6), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(215), - [anon_sym_impl] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_trait] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_mod] = ACTIONS(25), - [anon_sym_struct] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_fn] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(79), - [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - }, - [8] = { [sym__statement] = STATE(12), [sym_impl_item] = STATE(12), [sym_trait_item] = STATE(12), [sym_associated_type] = STATE(12), [sym_associated_impl] = STATE(12), [sym_const_item] = STATE(12), - [sym_macro_invocation] = STATE(122), + [sym_macro_invocation] = STATE(158), [sym_empty_statement] = STATE(12), [sym_attribute_item] = STATE(12), [sym_inner_attribute_item] = STATE(12), @@ -11118,54 +10769,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(12), [sym_enum_item] = STATE(12), [sym_type_item] = STATE(12), - [sym_extern_type] = STATE(247), + [sym_extern_type] = STATE(317), [sym_external_function_item] = STATE(12), [sym_function_item] = STATE(12), [sym_function_signature_item] = STATE(12), - [sym_function] = STATE(1251), + [sym_function] = STATE(1257), [sym_let_declaration] = STATE(12), [sym_use_declaration] = STATE(12), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), [sym_expression_statement] = STATE(12), - [sym_expression] = STATE(737), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), + [sym_expression] = STATE(885), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), [aux_sym_source_file_repeat1] = STATE(12), + [ts_builtin_sym_end] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(217), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11201,16 +10854,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -11224,69 +10877,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [9] = { - [sym__statement] = STATE(14), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_associated_impl] = STATE(14), - [sym_const_item] = STATE(14), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(14), - [sym_expression] = STATE(701), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(14), + [6] = { + [sym__statement] = STATE(8), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_associated_impl] = STATE(8), + [sym_const_item] = STATE(8), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(778), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(95), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11322,16 +10977,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -11345,69 +11000,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [10] = { - [sym__statement] = STATE(19), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_associated_impl] = STATE(19), - [sym_const_item] = STATE(19), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(19), - [sym_attribute_item] = STATE(19), - [sym_inner_attribute_item] = STATE(19), - [sym_mod_item] = STATE(19), - [sym_struct_item] = STATE(19), - [sym_enum_item] = STATE(19), - [sym_type_item] = STATE(19), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(706), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(19), + [7] = { + [sym__statement] = STATE(9), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_associated_impl] = STATE(9), + [sym_const_item] = STATE(9), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(9), + [sym_expression] = STATE(829), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(9), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(97), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11443,16 +11100,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -11466,69 +11123,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [11] = { - [sym__statement] = STATE(17), - [sym_impl_item] = STATE(17), - [sym_trait_item] = STATE(17), - [sym_associated_type] = STATE(17), - [sym_associated_impl] = STATE(17), - [sym_const_item] = STATE(17), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(17), - [sym_attribute_item] = STATE(17), - [sym_inner_attribute_item] = STATE(17), - [sym_mod_item] = STATE(17), - [sym_struct_item] = STATE(17), - [sym_enum_item] = STATE(17), - [sym_type_item] = STATE(17), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(17), - [sym_function_item] = STATE(17), - [sym_function_signature_item] = STATE(17), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(17), - [sym_use_declaration] = STATE(17), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(17), - [sym_expression] = STATE(696), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(17), + [8] = { + [sym__statement] = STATE(8), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_associated_impl] = STATE(8), + [sym_const_item] = STATE(8), + [sym_macro_invocation] = STATE(215), + [sym_empty_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(885), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(8), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(102), + [anon_sym_impl] = ACTIONS(104), + [anon_sym_SEMI] = ACTIONS(107), + [anon_sym_trait] = ACTIONS(110), + [anon_sym_type] = ACTIONS(113), + [anon_sym_const] = ACTIONS(116), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_mod] = ACTIONS(128), + [anon_sym_struct] = ACTIONS(131), + [anon_sym_enum] = ACTIONS(134), + [anon_sym_fn] = ACTIONS(137), + [anon_sym_let] = ACTIONS(140), + [anon_sym_use] = ACTIONS(143), + [anon_sym_COLON_COLON] = ACTIONS(146), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_ByteArray] = ACTIONS(152), + [anon_sym_felt252] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(119), + [anon_sym_DOT_DOT] = ACTIONS(161), + [anon_sym_break] = ACTIONS(164), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_default] = ACTIONS(170), + [anon_sym_if] = ACTIONS(173), + [anon_sym_extern] = ACTIONS(176), + [anon_sym_loop] = ACTIONS(179), + [anon_sym_match] = ACTIONS(182), + [anon_sym_pub] = ACTIONS(185), + [anon_sym_return] = ACTIONS(188), + [anon_sym_while] = ACTIONS(191), + [anon_sym_for] = ACTIONS(194), + [sym_numeric_literal] = ACTIONS(197), + [aux_sym_string_literal_token1] = ACTIONS(200), + [sym_shortstring_literal] = ACTIONS(203), + [anon_sym_true] = ACTIONS(206), + [anon_sym_false] = ACTIONS(206), + [anon_sym_move] = ACTIONS(209), + [anon_sym_ref] = ACTIONS(212), + [sym_identifier] = ACTIONS(215), + [sym_super] = ACTIONS(218), + [sym_line_comment] = ACTIONS(3), + }, + [9] = { + [sym__statement] = STATE(8), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_associated_impl] = STATE(8), + [sym_const_item] = STATE(8), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(827), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(221), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11564,16 +11346,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -11587,67 +11369,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [12] = { - [sym__statement] = STATE(6), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_associated_impl] = STATE(6), - [sym_const_item] = STATE(6), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(744), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(6), + [10] = { + [sym__statement] = STATE(16), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_associated_impl] = STATE(16), + [sym_const_item] = STATE(16), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(16), + [sym_expression] = STATE(772), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(16), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + }, + [11] = { + [sym__statement] = STATE(8), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_associated_impl] = STATE(8), + [sym_const_item] = STATE(8), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(775), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(225), [anon_sym_impl] = ACTIONS(9), @@ -11685,16 +11592,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -11708,67 +11615,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, + [12] = { + [sym__statement] = STATE(12), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_associated_impl] = STATE(12), + [sym_const_item] = STATE(12), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(885), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(12), + [ts_builtin_sym_end] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_impl] = ACTIONS(104), + [anon_sym_SEMI] = ACTIONS(107), + [anon_sym_trait] = ACTIONS(110), + [anon_sym_type] = ACTIONS(113), + [anon_sym_const] = ACTIONS(116), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_mod] = ACTIONS(128), + [anon_sym_struct] = ACTIONS(131), + [anon_sym_enum] = ACTIONS(134), + [anon_sym_fn] = ACTIONS(137), + [anon_sym_let] = ACTIONS(140), + [anon_sym_use] = ACTIONS(143), + [anon_sym_COLON_COLON] = ACTIONS(146), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_ByteArray] = ACTIONS(152), + [anon_sym_felt252] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(119), + [anon_sym_DOT_DOT] = ACTIONS(161), + [anon_sym_break] = ACTIONS(164), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_default] = ACTIONS(170), + [anon_sym_if] = ACTIONS(173), + [anon_sym_extern] = ACTIONS(176), + [anon_sym_loop] = ACTIONS(179), + [anon_sym_match] = ACTIONS(182), + [anon_sym_pub] = ACTIONS(185), + [anon_sym_return] = ACTIONS(188), + [anon_sym_while] = ACTIONS(191), + [anon_sym_for] = ACTIONS(194), + [sym_numeric_literal] = ACTIONS(197), + [aux_sym_string_literal_token1] = ACTIONS(200), + [sym_shortstring_literal] = ACTIONS(203), + [anon_sym_true] = ACTIONS(206), + [anon_sym_false] = ACTIONS(206), + [anon_sym_move] = ACTIONS(209), + [anon_sym_ref] = ACTIONS(212), + [sym_identifier] = ACTIONS(215), + [sym_super] = ACTIONS(218), + [sym_line_comment] = ACTIONS(3), + }, [13] = { - [sym__statement] = STATE(15), - [sym_impl_item] = STATE(15), - [sym_trait_item] = STATE(15), - [sym_associated_type] = STATE(15), - [sym_associated_impl] = STATE(15), - [sym_const_item] = STATE(15), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(15), - [sym_attribute_item] = STATE(15), - [sym_inner_attribute_item] = STATE(15), - [sym_mod_item] = STATE(15), - [sym_struct_item] = STATE(15), - [sym_enum_item] = STATE(15), - [sym_type_item] = STATE(15), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(15), - [sym_function_item] = STATE(15), - [sym_function_signature_item] = STATE(15), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(15), - [sym_use_declaration] = STATE(15), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(15), - [sym_expression] = STATE(664), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(15), + [sym__statement] = STATE(11), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_associated_impl] = STATE(11), + [sym_const_item] = STATE(11), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(11), + [sym_expression] = STATE(777), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(11), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(227), [anon_sym_impl] = ACTIONS(9), @@ -11806,16 +11838,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -11830,66 +11862,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [14] = { - [sym__statement] = STATE(6), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_associated_impl] = STATE(6), - [sym_const_item] = STATE(6), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(713), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(6), + [sym__statement] = STATE(8), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_associated_impl] = STATE(8), + [sym_const_item] = STATE(8), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(779), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(229), [anon_sym_impl] = ACTIONS(9), @@ -11927,16 +11961,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -11951,66 +11985,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [15] = { - [sym__statement] = STATE(6), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_associated_impl] = STATE(6), - [sym_const_item] = STATE(6), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(666), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(6), + [sym__statement] = STATE(14), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_associated_impl] = STATE(14), + [sym_const_item] = STATE(14), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(14), + [sym_expression] = STATE(784), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(14), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(231), [anon_sym_impl] = ACTIONS(9), @@ -12048,16 +12084,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -12072,66 +12108,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [16] = { - [sym__statement] = STATE(2), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_associated_impl] = STATE(2), - [sym_const_item] = STATE(2), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(2), - [sym_expression] = STATE(720), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(2), + [sym__statement] = STATE(8), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_associated_impl] = STATE(8), + [sym_const_item] = STATE(8), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(771), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(233), [anon_sym_impl] = ACTIONS(9), @@ -12169,16 +12207,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -12199,7 +12237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_associated_type] = STATE(6), [sym_associated_impl] = STATE(6), [sym_const_item] = STATE(6), - [sym_macro_invocation] = STATE(122), + [sym_macro_invocation] = STATE(158), [sym_empty_statement] = STATE(6), [sym_attribute_item] = STATE(6), [sym_inner_attribute_item] = STATE(6), @@ -12207,51 +12245,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(6), [sym_enum_item] = STATE(6), [sym_type_item] = STATE(6), - [sym_extern_type] = STATE(247), + [sym_extern_type] = STATE(317), [sym_external_function_item] = STATE(6), [sym_function_item] = STATE(6), [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1251), + [sym_function] = STATE(1257), [sym_let_declaration] = STATE(6), [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(699), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), + [sym_expression] = STATE(852), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), [aux_sym_source_file_repeat1] = STATE(6), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(235), @@ -12290,16 +12330,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -12314,66 +12354,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [18] = { - [sym__statement] = STATE(7), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_associated_impl] = STATE(7), - [sym_const_item] = STATE(7), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(7), - [sym_expression] = STATE(687), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(7), + [sym__statement] = STATE(4), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_associated_impl] = STATE(4), + [sym_const_item] = STATE(4), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(748), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(237), [anon_sym_impl] = ACTIONS(9), @@ -12411,16 +12453,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -12435,66 +12477,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [19] = { - [sym__statement] = STATE(6), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_associated_impl] = STATE(6), - [sym_const_item] = STATE(6), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(639), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(6), + [sym__statement] = STATE(3), + [sym_impl_item] = STATE(3), + [sym_trait_item] = STATE(3), + [sym_associated_type] = STATE(3), + [sym_associated_impl] = STATE(3), + [sym_const_item] = STATE(3), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(3), + [sym_attribute_item] = STATE(3), + [sym_inner_attribute_item] = STATE(3), + [sym_mod_item] = STATE(3), + [sym_struct_item] = STATE(3), + [sym_enum_item] = STATE(3), + [sym_type_item] = STATE(3), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(3), + [sym_expression] = STATE(798), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(3), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(239), [anon_sym_impl] = ACTIONS(9), @@ -12532,16 +12576,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -12556,68 +12600,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [20] = { - [sym__statement] = STATE(5), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_associated_impl] = STATE(5), - [sym_const_item] = STATE(5), - [sym_macro_invocation] = STATE(122), - [sym_empty_statement] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_extern_type] = STATE(247), - [sym_external_function_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function] = STATE(1251), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression_statement] = STATE(5), - [sym_expression] = STATE(756), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(119), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(119), - [sym_if_expression] = STATE(119), - [sym_match_expression] = STATE(119), - [sym_while_expression] = STATE(119), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(119), - [sym_loop_expression] = STATE(119), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [sym_visibility_modifier] = STATE(929), - [sym_extern] = STATE(1253), - [aux_sym_source_file_repeat1] = STATE(5), - [ts_builtin_sym_end] = ACTIONS(241), + [sym__statement] = STATE(2), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_associated_impl] = STATE(2), + [sym_const_item] = STATE(2), + [sym_macro_invocation] = STATE(158), + [sym_empty_statement] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_extern_type] = STATE(317), + [sym_external_function_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function] = STATE(1257), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression_statement] = STATE(2), + [sym_expression] = STATE(791), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(160), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(160), + [sym_if_expression] = STATE(160), + [sym_match_expression] = STATE(160), + [sym_while_expression] = STATE(160), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(160), + [sym_loop_expression] = STATE(160), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [sym_visibility_modifier] = STATE(946), + [sym_extern] = STATE(1260), + [aux_sym_source_file_repeat1] = STATE(2), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(241), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -12653,16 +12699,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_pub] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_pub] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -12677,52 +12723,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [21] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(501), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(532), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(243), [anon_sym_SEMI] = ACTIONS(243), [anon_sym_EQ] = ACTIONS(245), [anon_sym_BANG] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(243), [anon_sym_RBRACK] = ACTIONS(243), [anon_sym_COMMA] = ACTIONS(243), [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(247), + [anon_sym_STAR] = ACTIONS(245), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_RPAREN] = ACTIONS(243), [anon_sym_u8] = ACTIONS(41), @@ -12742,13 +12790,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(245), [anon_sym_GT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(245), [anon_sym_SLASH] = ACTIONS(245), [anon_sym_PERCENT] = ACTIONS(245), [anon_sym_CARET] = ACTIONS(243), [anon_sym_TILDE] = ACTIONS(19), [anon_sym_AMP] = ACTIONS(245), - [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(245), [anon_sym_AMP_AMP] = ACTIONS(243), [anon_sym_PIPE_PIPE] = ACTIONS(243), [anon_sym_LT_LT] = ACTIONS(243), @@ -12763,16 +12811,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(243), [anon_sym_LT_EQ] = ACTIONS(243), [anon_sym_AT] = ACTIONS(19), - [anon_sym_DOT] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(245), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -12787,42 +12835,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [22] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(509), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(531), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_BANG] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_RBRACK] = ACTIONS(251), + [anon_sym_COMMA] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(251), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_PERCENT] = ACTIONS(253), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS_EQ] = ACTIONS(251), + [anon_sym_DASH_EQ] = ACTIONS(251), + [anon_sym_STAR_EQ] = ACTIONS(251), + [anon_sym_SLASH_EQ] = ACTIONS(251), + [anon_sym_PERCENT_EQ] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_BANG_EQ] = ACTIONS(251), + [anon_sym_GT_EQ] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(251), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(251), + [anon_sym_DOT] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(251), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + }, + [23] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(533), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_EQ] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_RBRACK] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(255), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_LT] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(255), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_AMP_AMP] = ACTIONS(255), + [anon_sym_PIPE_PIPE] = ACTIONS(255), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(255), + [anon_sym_PLUS_EQ] = ACTIONS(255), + [anon_sym_DASH_EQ] = ACTIONS(255), + [anon_sym_STAR_EQ] = ACTIONS(255), + [anon_sym_SLASH_EQ] = ACTIONS(255), + [anon_sym_PERCENT_EQ] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_BANG_EQ] = ACTIONS(255), + [anon_sym_GT_EQ] = ACTIONS(255), + [anon_sym_LT_EQ] = ACTIONS(255), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(255), + [anon_sym_DOT] = ACTIONS(257), + [anon_sym_QMARK] = ACTIONS(255), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + }, + [24] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(533), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(255), [anon_sym_SEMI] = ACTIONS(255), @@ -12873,16 +13147,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(255), [anon_sym_LT_EQ] = ACTIONS(255), [anon_sym_AT] = ACTIONS(19), - [anon_sym_DOT] = ACTIONS(255), + [anon_sym_DOT_DOT] = ACTIONS(255), + [anon_sym_DOT] = ACTIONS(257), [anon_sym_QMARK] = ACTIONS(255), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -12896,74 +13170,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [23] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(749), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), + [25] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(520), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(259), + [anon_sym_EQ] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(259), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(259), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_GT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(263), + [anon_sym_SLASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_PLUS_EQ] = ACTIONS(259), + [anon_sym_DASH_EQ] = ACTIONS(259), + [anon_sym_STAR_EQ] = ACTIONS(259), + [anon_sym_SLASH_EQ] = ACTIONS(259), + [anon_sym_PERCENT_EQ] = ACTIONS(259), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(261), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + }, + [26] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(532), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(243), + [anon_sym_SEMI] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(245), + [anon_sym_BANG] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_RBRACK] = ACTIONS(243), + [anon_sym_COMMA] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_RPAREN] = ACTIONS(243), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_LT] = ACTIONS(245), + [anon_sym_GT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_PERCENT] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_PIPE] = ACTIONS(245), + [anon_sym_AMP_AMP] = ACTIONS(243), + [anon_sym_PIPE_PIPE] = ACTIONS(243), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_GT_EQ] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(245), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [sym_super] = ACTIONS(85), + [sym_line_comment] = ACTIONS(3), + }, + [27] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(781), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), [anon_sym_EQ] = ACTIONS(245), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), [anon_sym_LT] = ACTIONS(245), [anon_sym_GT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(245), [anon_sym_SLASH] = ACTIONS(245), [anon_sym_PERCENT] = ACTIONS(245), [anon_sym_CARET] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_TILDE] = ACTIONS(279), [anon_sym_AMP] = ACTIONS(245), - [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(245), [anon_sym_AMP_AMP] = ACTIONS(243), [anon_sym_PIPE_PIPE] = ACTIONS(243), [anon_sym_LT_LT] = ACTIONS(243), @@ -12977,89 +13477,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_GT_EQ] = ACTIONS(243), [anon_sym_LT_EQ] = ACTIONS(243), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_DOT] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(245), [anon_sym_EQ_GT] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), [sym_line_comment] = ACTIONS(3), }, - [24] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(747), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), + [28] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(758), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), [anon_sym_EQ] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(271), [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_COLON_COLON] = ACTIONS(265), + [anon_sym_COLON_COLON] = ACTIONS(273), [anon_sym_STAR] = ACTIONS(257), [anon_sym_LPAREN] = ACTIONS(255), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), [anon_sym_LT] = ACTIONS(257), [anon_sym_GT] = ACTIONS(257), [anon_sym_PLUS] = ACTIONS(257), @@ -13067,7 +13569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(257), [anon_sym_PERCENT] = ACTIONS(257), [anon_sym_CARET] = ACTIONS(255), - [anon_sym_TILDE] = ACTIONS(273), + [anon_sym_TILDE] = ACTIONS(279), [anon_sym_AMP] = ACTIONS(257), [anon_sym_PIPE] = ACTIONS(257), [anon_sym_AMP_AMP] = ACTIONS(255), @@ -13083,99 +13585,747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(255), [anon_sym_GT_EQ] = ACTIONS(255), [anon_sym_LT_EQ] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_DOT] = ACTIONS(255), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(255), + [anon_sym_DOT] = ACTIONS(257), [anon_sym_EQ_GT] = ACTIONS(255), [anon_sym_QMARK] = ACTIONS(255), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), [sym_line_comment] = ACTIONS(3), }, - [25] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(820), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), + [29] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(780), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(251), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_PERCENT] = ACTIONS(253), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS_EQ] = ACTIONS(251), + [anon_sym_DASH_EQ] = ACTIONS(251), + [anon_sym_STAR_EQ] = ACTIONS(251), + [anon_sym_SLASH_EQ] = ACTIONS(251), + [anon_sym_PERCENT_EQ] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_BANG_EQ] = ACTIONS(251), + [anon_sym_GT_EQ] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(251), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(251), + [anon_sym_DOT] = ACTIONS(253), + [anon_sym_EQ_GT] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(251), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [30] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(774), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_GT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_PLUS_EQ] = ACTIONS(259), + [anon_sym_DASH_EQ] = ACTIONS(259), + [anon_sym_STAR_EQ] = ACTIONS(259), + [anon_sym_SLASH_EQ] = ACTIONS(259), + [anon_sym_PERCENT_EQ] = ACTIONS(259), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_DOT] = ACTIONS(261), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [31] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(758), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(255), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_AMP_AMP] = ACTIONS(255), + [anon_sym_PIPE_PIPE] = ACTIONS(255), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(255), + [anon_sym_PLUS_EQ] = ACTIONS(255), + [anon_sym_DASH_EQ] = ACTIONS(255), + [anon_sym_STAR_EQ] = ACTIONS(255), + [anon_sym_SLASH_EQ] = ACTIONS(255), + [anon_sym_PERCENT_EQ] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_BANG_EQ] = ACTIONS(255), + [anon_sym_GT_EQ] = ACTIONS(255), + [anon_sym_LT_EQ] = ACTIONS(255), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(255), + [anon_sym_DOT] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(255), + [anon_sym_QMARK] = ACTIONS(255), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [32] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(781), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), [anon_sym_EQ] = ACTIONS(245), - [anon_sym_BANG] = ACTIONS(311), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(245), + [anon_sym_GT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_PERCENT] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_PIPE] = ACTIONS(245), + [anon_sym_AMP_AMP] = ACTIONS(243), + [anon_sym_PIPE_PIPE] = ACTIONS(243), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_GT_EQ] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(245), + [anon_sym_EQ_GT] = ACTIONS(243), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [33] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(851), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_BANG] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(251), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_PERCENT] = ACTIONS(253), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS_EQ] = ACTIONS(251), + [anon_sym_DASH_EQ] = ACTIONS(251), + [anon_sym_STAR_EQ] = ACTIONS(251), + [anon_sym_SLASH_EQ] = ACTIONS(251), + [anon_sym_PERCENT_EQ] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_BANG_EQ] = ACTIONS(251), + [anon_sym_GT_EQ] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(251), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(251), + [anon_sym_DOT] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(251), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [34] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(745), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(321), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(311), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_GT] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(261), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_PLUS_EQ] = ACTIONS(259), + [anon_sym_DASH_EQ] = ACTIONS(259), + [anon_sym_STAR_EQ] = ACTIONS(259), + [anon_sym_SLASH_EQ] = ACTIONS(259), + [anon_sym_PERCENT_EQ] = ACTIONS(259), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(261), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [35] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(734), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(245), + [anon_sym_BANG] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(245), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), [anon_sym_LT] = ACTIONS(245), [anon_sym_GT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(245), [anon_sym_SLASH] = ACTIONS(245), [anon_sym_PERCENT] = ACTIONS(245), [anon_sym_CARET] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_AMP] = ACTIONS(245), - [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(245), [anon_sym_AMP_AMP] = ACTIONS(243), [anon_sym_PIPE_PIPE] = ACTIONS(243), [anon_sym_LT_LT] = ACTIONS(243), @@ -13189,17 +14339,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_GT_EQ] = ACTIONS(243), [anon_sym_LT_EQ] = ACTIONS(243), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(245), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -13207,70 +14357,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [26] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(813), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [36] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(853), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(255), [anon_sym_EQ] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(311), + [anon_sym_BANG] = ACTIONS(321), [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_COLON_COLON] = ACTIONS(313), + [anon_sym_COLON_COLON] = ACTIONS(323), [anon_sym_STAR] = ACTIONS(257), - [anon_sym_LPAREN] = ACTIONS(255), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), [anon_sym_LT] = ACTIONS(257), [anon_sym_GT] = ACTIONS(257), [anon_sym_PLUS] = ACTIONS(257), @@ -13278,7 +14430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(257), [anon_sym_PERCENT] = ACTIONS(257), [anon_sym_CARET] = ACTIONS(255), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_AMP] = ACTIONS(257), [anon_sym_PIPE] = ACTIONS(257), [anon_sym_AMP_AMP] = ACTIONS(255), @@ -13294,17 +14446,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(255), [anon_sym_GT_EQ] = ACTIONS(255), [anon_sym_LT_EQ] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(255), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(255), + [anon_sym_DOT] = ACTIONS(257), [anon_sym_QMARK] = ACTIONS(255), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -13312,814 +14464,719 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [27] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(337), - [anon_sym_RBRACE] = ACTIONS(340), - [anon_sym_impl] = ACTIONS(342), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym_trait] = ACTIONS(342), - [anon_sym_type] = ACTIONS(342), - [anon_sym_COLON] = ACTIONS(348), - [anon_sym_const] = ACTIONS(342), - [anon_sym_EQ] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(348), - [anon_sym_POUND] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(351), - [anon_sym_RBRACK] = ACTIONS(340), - [anon_sym_mod] = ACTIONS(342), - [anon_sym_struct] = ACTIONS(342), - [anon_sym_enum] = ACTIONS(342), - [anon_sym_COMMA] = ACTIONS(345), - [anon_sym_fn] = ACTIONS(342), - [anon_sym_DASH_GT] = ACTIONS(345), - [anon_sym_let] = ACTIONS(342), - [anon_sym_use] = ACTIONS(342), - [anon_sym_COLON_COLON] = ACTIONS(345), - [anon_sym_STAR] = ACTIONS(348), - [anon_sym_LPAREN] = ACTIONS(354), - [anon_sym__] = ACTIONS(348), - [anon_sym_RPAREN] = ACTIONS(340), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_ByteArray] = ACTIONS(357), - [anon_sym_felt252] = ACTIONS(357), - [anon_sym_LT] = ACTIONS(348), - [anon_sym_GT] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(348), - [anon_sym_DASH] = ACTIONS(360), - [anon_sym_SLASH] = ACTIONS(348), - [anon_sym_PERCENT] = ACTIONS(348), - [anon_sym_CARET] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(348), - [anon_sym_PIPE] = ACTIONS(348), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_LT_LT] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_PLUS_EQ] = ACTIONS(345), - [anon_sym_DASH_EQ] = ACTIONS(345), - [anon_sym_STAR_EQ] = ACTIONS(345), - [anon_sym_SLASH_EQ] = ACTIONS(345), - [anon_sym_PERCENT_EQ] = ACTIONS(345), - [anon_sym_CARET_EQ] = ACTIONS(345), - [anon_sym_AMP_EQ] = ACTIONS(345), - [anon_sym_PIPE_EQ] = ACTIONS(345), - [anon_sym_EQ_EQ] = ACTIONS(345), - [anon_sym_BANG_EQ] = ACTIONS(345), - [anon_sym_GT_EQ] = ACTIONS(345), - [anon_sym_LT_EQ] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(348), - [anon_sym_EQ_GT] = ACTIONS(345), - [anon_sym_QMARK] = ACTIONS(345), - [anon_sym_break] = ACTIONS(342), - [anon_sym_continue] = ACTIONS(342), - [anon_sym_default] = ACTIONS(342), - [anon_sym_if] = ACTIONS(342), - [anon_sym_extern] = ACTIONS(342), - [anon_sym_nopanic] = ACTIONS(342), - [anon_sym_loop] = ACTIONS(342), - [anon_sym_match] = ACTIONS(342), - [anon_sym_pub] = ACTIONS(342), - [anon_sym_return] = ACTIONS(342), - [anon_sym_static] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [anon_sym_for] = ACTIONS(342), - [sym_numeric_literal] = ACTIONS(363), - [aux_sym_string_literal_token1] = ACTIONS(366), - [sym_shortstring_literal] = ACTIONS(369), - [anon_sym_true] = ACTIONS(372), - [anon_sym_false] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(375), - [sym_identifier] = ACTIONS(342), - [sym_mutable_specifier] = ACTIONS(342), - [sym_super] = ACTIONS(342), - [sym_line_comment] = ACTIONS(3), - }, - [28] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [37] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(734), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(245), + [anon_sym_BANG] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_LT] = ACTIONS(245), + [anon_sym_GT] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_PERCENT] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(245), + [anon_sym_PIPE] = ACTIONS(245), + [anon_sym_AMP_AMP] = ACTIONS(243), + [anon_sym_PIPE_PIPE] = ACTIONS(243), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(243), + [anon_sym_DASH_EQ] = ACTIONS(243), + [anon_sym_STAR_EQ] = ACTIONS(243), + [anon_sym_SLASH_EQ] = ACTIONS(243), + [anon_sym_PERCENT_EQ] = ACTIONS(243), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(243), + [anon_sym_GT_EQ] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(245), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [29] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(406), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [38] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(853), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_EQ] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_LPAREN] = ACTIONS(255), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_LT] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(257), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(255), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_AMP_AMP] = ACTIONS(255), + [anon_sym_PIPE_PIPE] = ACTIONS(255), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(255), + [anon_sym_PLUS_EQ] = ACTIONS(255), + [anon_sym_DASH_EQ] = ACTIONS(255), + [anon_sym_STAR_EQ] = ACTIONS(255), + [anon_sym_SLASH_EQ] = ACTIONS(255), + [anon_sym_PERCENT_EQ] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_BANG_EQ] = ACTIONS(255), + [anon_sym_GT_EQ] = ACTIONS(255), + [anon_sym_LT_EQ] = ACTIONS(255), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(255), + [anon_sym_DOT] = ACTIONS(257), + [anon_sym_QMARK] = ACTIONS(255), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [30] = { - [sym_delim_token_tree] = STATE(28), - [sym__delim_tokens] = STATE(28), - [sym__literal] = STATE(28), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(28), - [aux_sym_delim_token_tree_repeat1] = STATE(28), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(408), - [anon_sym_impl] = ACTIONS(410), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(410), - [anon_sym_type] = ACTIONS(410), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(410), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(410), - [anon_sym_struct] = ACTIONS(410), - [anon_sym_enum] = ACTIONS(410), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(410), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(410), - [anon_sym_use] = ACTIONS(410), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_default] = ACTIONS(410), - [anon_sym_if] = ACTIONS(410), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_nopanic] = ACTIONS(410), - [anon_sym_loop] = ACTIONS(410), - [anon_sym_match] = ACTIONS(410), - [anon_sym_pub] = ACTIONS(410), - [anon_sym_return] = ACTIONS(410), - [anon_sym_static] = ACTIONS(410), - [anon_sym_while] = ACTIONS(410), - [anon_sym_for] = ACTIONS(410), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(412), - [sym_identifier] = ACTIONS(410), - [sym_mutable_specifier] = ACTIONS(410), - [sym_super] = ACTIONS(410), + [39] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(350), + [anon_sym_impl] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_trait] = ACTIONS(352), + [anon_sym_type] = ACTIONS(352), + [anon_sym_COLON] = ACTIONS(358), + [anon_sym_const] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(358), + [anon_sym_BANG] = ACTIONS(358), + [anon_sym_POUND] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_RBRACK] = ACTIONS(350), + [anon_sym_mod] = ACTIONS(352), + [anon_sym_struct] = ACTIONS(352), + [anon_sym_enum] = ACTIONS(352), + [anon_sym_COMMA] = ACTIONS(355), + [anon_sym_fn] = ACTIONS(352), + [anon_sym_DASH_GT] = ACTIONS(355), + [anon_sym_let] = ACTIONS(352), + [anon_sym_use] = ACTIONS(352), + [anon_sym_COLON_COLON] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym__] = ACTIONS(358), + [anon_sym_RPAREN] = ACTIONS(350), + [anon_sym_u8] = ACTIONS(367), + [anon_sym_i8] = ACTIONS(367), + [anon_sym_u16] = ACTIONS(367), + [anon_sym_i16] = ACTIONS(367), + [anon_sym_u32] = ACTIONS(367), + [anon_sym_i32] = ACTIONS(367), + [anon_sym_u64] = ACTIONS(367), + [anon_sym_i64] = ACTIONS(367), + [anon_sym_u128] = ACTIONS(367), + [anon_sym_i128] = ACTIONS(367), + [anon_sym_usize] = ACTIONS(367), + [anon_sym_bool] = ACTIONS(367), + [anon_sym_ByteArray] = ACTIONS(367), + [anon_sym_felt252] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_PLUS] = ACTIONS(358), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(358), + [anon_sym_PERCENT] = ACTIONS(358), + [anon_sym_CARET] = ACTIONS(358), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_AMP] = ACTIONS(358), + [anon_sym_PIPE] = ACTIONS(358), + [anon_sym_AMP_AMP] = ACTIONS(355), + [anon_sym_PIPE_PIPE] = ACTIONS(355), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_GT_GT] = ACTIONS(355), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_STAR_EQ] = ACTIONS(355), + [anon_sym_SLASH_EQ] = ACTIONS(355), + [anon_sym_PERCENT_EQ] = ACTIONS(355), + [anon_sym_CARET_EQ] = ACTIONS(355), + [anon_sym_AMP_EQ] = ACTIONS(355), + [anon_sym_PIPE_EQ] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(355), + [anon_sym_GT_EQ] = ACTIONS(355), + [anon_sym_LT_EQ] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(358), + [anon_sym_EQ_GT] = ACTIONS(355), + [anon_sym_QMARK] = ACTIONS(355), + [anon_sym_break] = ACTIONS(352), + [anon_sym_continue] = ACTIONS(352), + [anon_sym_default] = ACTIONS(352), + [anon_sym_if] = ACTIONS(352), + [anon_sym_extern] = ACTIONS(352), + [anon_sym_nopanic] = ACTIONS(352), + [anon_sym_loop] = ACTIONS(352), + [anon_sym_match] = ACTIONS(352), + [anon_sym_pub] = ACTIONS(352), + [anon_sym_return] = ACTIONS(352), + [anon_sym_static] = ACTIONS(352), + [anon_sym_while] = ACTIONS(352), + [anon_sym_for] = ACTIONS(352), + [sym_numeric_literal] = ACTIONS(373), + [aux_sym_string_literal_token1] = ACTIONS(376), + [sym_shortstring_literal] = ACTIONS(379), + [anon_sym_true] = ACTIONS(382), + [anon_sym_false] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(385), + [sym_identifier] = ACTIONS(352), + [sym_mutable_specifier] = ACTIONS(352), + [sym_super] = ACTIONS(352), [sym_line_comment] = ACTIONS(3), }, - [31] = { - [sym_delim_token_tree] = STATE(36), - [sym__delim_tokens] = STATE(36), - [sym__literal] = STATE(36), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(36), - [aux_sym_delim_token_tree_repeat1] = STATE(36), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(414), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(414), - [anon_sym_type] = ACTIONS(414), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(408), - [anon_sym_mod] = ACTIONS(414), - [anon_sym_struct] = ACTIONS(414), - [anon_sym_enum] = ACTIONS(414), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(414), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(414), - [anon_sym_use] = ACTIONS(414), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_default] = ACTIONS(414), - [anon_sym_if] = ACTIONS(414), - [anon_sym_extern] = ACTIONS(414), - [anon_sym_nopanic] = ACTIONS(414), - [anon_sym_loop] = ACTIONS(414), - [anon_sym_match] = ACTIONS(414), - [anon_sym_pub] = ACTIONS(414), - [anon_sym_return] = ACTIONS(414), - [anon_sym_static] = ACTIONS(414), - [anon_sym_while] = ACTIONS(414), - [anon_sym_for] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(416), - [sym_identifier] = ACTIONS(414), - [sym_mutable_specifier] = ACTIONS(414), - [sym_super] = ACTIONS(414), + [40] = { + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__literal] = STATE(58), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(58), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(390), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(390), + [anon_sym_type] = ACTIONS(390), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(398), + [anon_sym_mod] = ACTIONS(390), + [anon_sym_struct] = ACTIONS(390), + [anon_sym_enum] = ACTIONS(390), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(390), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(390), + [anon_sym_use] = ACTIONS(390), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_default] = ACTIONS(390), + [anon_sym_if] = ACTIONS(390), + [anon_sym_extern] = ACTIONS(390), + [anon_sym_nopanic] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(390), + [anon_sym_match] = ACTIONS(390), + [anon_sym_pub] = ACTIONS(390), + [anon_sym_return] = ACTIONS(390), + [anon_sym_static] = ACTIONS(390), + [anon_sym_while] = ACTIONS(390), + [anon_sym_for] = ACTIONS(390), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(414), + [sym_identifier] = ACTIONS(390), + [sym_mutable_specifier] = ACTIONS(390), + [sym_super] = ACTIONS(390), [sym_line_comment] = ACTIONS(3), }, - [32] = { - [sym_delim_token_tree] = STATE(38), - [sym__delim_tokens] = STATE(38), - [sym__literal] = STATE(38), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(38), - [aux_sym_delim_token_tree_repeat1] = STATE(38), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(418), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(418), - [anon_sym_type] = ACTIONS(418), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(418), - [anon_sym_struct] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(418), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(418), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(418), - [anon_sym_use] = ACTIONS(418), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(408), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(418), - [anon_sym_continue] = ACTIONS(418), - [anon_sym_default] = ACTIONS(418), - [anon_sym_if] = ACTIONS(418), - [anon_sym_extern] = ACTIONS(418), - [anon_sym_nopanic] = ACTIONS(418), - [anon_sym_loop] = ACTIONS(418), - [anon_sym_match] = ACTIONS(418), - [anon_sym_pub] = ACTIONS(418), - [anon_sym_return] = ACTIONS(418), - [anon_sym_static] = ACTIONS(418), - [anon_sym_while] = ACTIONS(418), - [anon_sym_for] = ACTIONS(418), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), + [41] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(418), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), [anon_sym_DOLLAR] = ACTIONS(420), - [sym_identifier] = ACTIONS(418), - [sym_mutable_specifier] = ACTIONS(418), - [sym_super] = ACTIONS(418), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [33] = { - [sym_delim_token_tree] = STATE(43), - [sym__delim_tokens] = STATE(43), - [sym__literal] = STATE(43), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(43), - [aux_sym_delim_token_tree_repeat1] = STATE(43), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(422), - [anon_sym_type] = ACTIONS(422), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(422), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(424), - [anon_sym_mod] = ACTIONS(422), - [anon_sym_struct] = ACTIONS(422), - [anon_sym_enum] = ACTIONS(422), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(422), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(422), - [anon_sym_use] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(422), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_default] = ACTIONS(422), - [anon_sym_if] = ACTIONS(422), - [anon_sym_extern] = ACTIONS(422), - [anon_sym_nopanic] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(422), - [anon_sym_match] = ACTIONS(422), - [anon_sym_pub] = ACTIONS(422), - [anon_sym_return] = ACTIONS(422), - [anon_sym_static] = ACTIONS(422), - [anon_sym_while] = ACTIONS(422), - [anon_sym_for] = ACTIONS(422), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), + [42] = { + [sym_delim_token_tree] = STATE(44), + [sym__delim_tokens] = STATE(44), + [sym__literal] = STATE(44), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(44), + [aux_sym_delim_token_tree_repeat1] = STATE(44), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(422), + [anon_sym_impl] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(424), + [anon_sym_type] = ACTIONS(424), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(424), + [anon_sym_struct] = ACTIONS(424), + [anon_sym_enum] = ACTIONS(424), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(424), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(424), + [anon_sym_use] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(424), + [anon_sym_default] = ACTIONS(424), + [anon_sym_if] = ACTIONS(424), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_nopanic] = ACTIONS(424), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(424), + [anon_sym_pub] = ACTIONS(424), + [anon_sym_return] = ACTIONS(424), + [anon_sym_static] = ACTIONS(424), + [anon_sym_while] = ACTIONS(424), + [anon_sym_for] = ACTIONS(424), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), [anon_sym_DOLLAR] = ACTIONS(426), - [sym_identifier] = ACTIONS(422), - [sym_mutable_specifier] = ACTIONS(422), - [sym_super] = ACTIONS(422), + [sym_identifier] = ACTIONS(424), + [sym_mutable_specifier] = ACTIONS(424), + [sym_super] = ACTIONS(424), [sym_line_comment] = ACTIONS(3), }, - [34] = { - [sym_delim_token_tree] = STATE(42), - [sym__delim_tokens] = STATE(42), - [sym__literal] = STATE(42), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(42), - [aux_sym_delim_token_tree_repeat1] = STATE(42), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(424), + [43] = { + [sym_delim_token_tree] = STATE(45), + [sym__delim_tokens] = STATE(45), + [sym__literal] = STATE(45), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(45), + [aux_sym_delim_token_tree_repeat1] = STATE(45), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), [anon_sym_impl] = ACTIONS(428), - [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(392), [anon_sym_trait] = ACTIONS(428), [anon_sym_type] = ACTIONS(428), - [anon_sym_COLON] = ACTIONS(386), + [anon_sym_COLON] = ACTIONS(394), [anon_sym_const] = ACTIONS(428), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(422), [anon_sym_mod] = ACTIONS(428), [anon_sym_struct] = ACTIONS(428), [anon_sym_enum] = ACTIONS(428), - [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_COMMA] = ACTIONS(392), [anon_sym_fn] = ACTIONS(428), - [anon_sym_DASH_GT] = ACTIONS(384), + [anon_sym_DASH_GT] = ACTIONS(392), [anon_sym_let] = ACTIONS(428), [anon_sym_use] = ACTIONS(428), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), [anon_sym_break] = ACTIONS(428), [anon_sym_continue] = ACTIONS(428), [anon_sym_default] = ACTIONS(428), @@ -14133,508 +15190,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(428), [anon_sym_while] = ACTIONS(428), [anon_sym_for] = ACTIONS(428), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), [anon_sym_DOLLAR] = ACTIONS(430), [sym_identifier] = ACTIONS(428), [sym_mutable_specifier] = ACTIONS(428), [sym_super] = ACTIONS(428), [sym_line_comment] = ACTIONS(3), }, - [35] = { - [sym_delim_token_tree] = STATE(51), - [sym__delim_tokens] = STATE(51), - [sym__literal] = STATE(51), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(51), - [aux_sym_delim_token_tree_repeat1] = STATE(51), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(432), - [anon_sym_type] = ACTIONS(432), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(432), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(434), - [anon_sym_mod] = ACTIONS(432), - [anon_sym_struct] = ACTIONS(432), - [anon_sym_enum] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(432), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(432), - [anon_sym_use] = ACTIONS(432), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(432), - [anon_sym_continue] = ACTIONS(432), - [anon_sym_default] = ACTIONS(432), - [anon_sym_if] = ACTIONS(432), - [anon_sym_extern] = ACTIONS(432), - [anon_sym_nopanic] = ACTIONS(432), - [anon_sym_loop] = ACTIONS(432), - [anon_sym_match] = ACTIONS(432), - [anon_sym_pub] = ACTIONS(432), - [anon_sym_return] = ACTIONS(432), - [anon_sym_static] = ACTIONS(432), - [anon_sym_while] = ACTIONS(432), - [anon_sym_for] = ACTIONS(432), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(436), - [sym_identifier] = ACTIONS(432), - [sym_mutable_specifier] = ACTIONS(432), - [sym_super] = ACTIONS(432), + [44] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(432), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [36] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(380), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [45] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(432), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [37] = { - [sym_delim_token_tree] = STATE(44), - [sym__delim_tokens] = STATE(44), - [sym__literal] = STATE(44), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(44), - [aux_sym_delim_token_tree_repeat1] = STATE(44), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(438), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(438), - [anon_sym_type] = ACTIONS(438), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(438), - [anon_sym_struct] = ACTIONS(438), - [anon_sym_enum] = ACTIONS(438), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(438), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(438), - [anon_sym_use] = ACTIONS(438), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(424), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_if] = ACTIONS(438), - [anon_sym_extern] = ACTIONS(438), - [anon_sym_nopanic] = ACTIONS(438), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(438), - [anon_sym_pub] = ACTIONS(438), - [anon_sym_return] = ACTIONS(438), - [anon_sym_static] = ACTIONS(438), - [anon_sym_while] = ACTIONS(438), - [anon_sym_for] = ACTIONS(438), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(440), - [sym_identifier] = ACTIONS(438), - [sym_mutable_specifier] = ACTIONS(438), - [sym_super] = ACTIONS(438), + [46] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(434), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [38] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(380), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [47] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(418), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [39] = { - [sym_delim_token_tree] = STATE(40), - [sym__delim_tokens] = STATE(40), - [sym__literal] = STATE(40), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(40), - [aux_sym_delim_token_tree_repeat1] = STATE(40), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), + [48] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), + [sym_line_comment] = ACTIONS(3), + }, + [49] = { + [sym_delim_token_tree] = STATE(41), + [sym__delim_tokens] = STATE(41), + [sym__literal] = STATE(41), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(41), + [aux_sym_delim_token_tree_repeat1] = STATE(41), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(436), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(436), + [anon_sym_type] = ACTIONS(436), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(436), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(436), + [anon_sym_struct] = ACTIONS(436), + [anon_sym_enum] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(436), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(436), + [anon_sym_use] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(436), + [anon_sym_default] = ACTIONS(436), + [anon_sym_if] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(436), + [anon_sym_nopanic] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(436), + [anon_sym_match] = ACTIONS(436), + [anon_sym_pub] = ACTIONS(436), + [anon_sym_return] = ACTIONS(436), + [anon_sym_static] = ACTIONS(436), + [anon_sym_while] = ACTIONS(436), + [anon_sym_for] = ACTIONS(436), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(440), + [sym_identifier] = ACTIONS(436), + [sym_mutable_specifier] = ACTIONS(436), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [50] = { + [sym_delim_token_tree] = STATE(47), + [sym__delim_tokens] = STATE(47), + [sym__literal] = STATE(47), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(47), + [aux_sym_delim_token_tree_repeat1] = STATE(47), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), [anon_sym_impl] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(392), [anon_sym_trait] = ACTIONS(442), [anon_sym_type] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(386), + [anon_sym_COLON] = ACTIONS(394), [anon_sym_const] = ACTIONS(442), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(438), [anon_sym_mod] = ACTIONS(442), [anon_sym_struct] = ACTIONS(442), [anon_sym_enum] = ACTIONS(442), - [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_COMMA] = ACTIONS(392), [anon_sym_fn] = ACTIONS(442), - [anon_sym_DASH_GT] = ACTIONS(384), + [anon_sym_DASH_GT] = ACTIONS(392), [anon_sym_let] = ACTIONS(442), [anon_sym_use] = ACTIONS(442), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(444), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), [anon_sym_break] = ACTIONS(442), [anon_sym_continue] = ACTIONS(442), [anon_sym_default] = ACTIONS(442), @@ -14648,199 +15911,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(442), [anon_sym_while] = ACTIONS(442), [anon_sym_for] = ACTIONS(442), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(446), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(444), [sym_identifier] = ACTIONS(442), [sym_mutable_specifier] = ACTIONS(442), [sym_super] = ACTIONS(442), [sym_line_comment] = ACTIONS(3), }, - [40] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(448), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [51] = { + [sym_delim_token_tree] = STATE(48), + [sym__delim_tokens] = STATE(48), + [sym__literal] = STATE(48), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(48), + [aux_sym_delim_token_tree_repeat1] = STATE(48), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(438), + [anon_sym_impl] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(446), + [anon_sym_type] = ACTIONS(446), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(446), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(446), + [anon_sym_struct] = ACTIONS(446), + [anon_sym_enum] = ACTIONS(446), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(446), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(446), + [anon_sym_use] = ACTIONS(446), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(446), + [anon_sym_default] = ACTIONS(446), + [anon_sym_if] = ACTIONS(446), + [anon_sym_extern] = ACTIONS(446), + [anon_sym_nopanic] = ACTIONS(446), + [anon_sym_loop] = ACTIONS(446), + [anon_sym_match] = ACTIONS(446), + [anon_sym_pub] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_static] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(448), + [sym_identifier] = ACTIONS(446), + [sym_mutable_specifier] = ACTIONS(446), + [sym_super] = ACTIONS(446), [sym_line_comment] = ACTIONS(3), }, - [41] = { - [sym_delim_token_tree] = STATE(46), - [sym__delim_tokens] = STATE(46), - [sym__literal] = STATE(46), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(46), - [aux_sym_delim_token_tree_repeat1] = STATE(46), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), + [52] = { + [sym_delim_token_tree] = STATE(61), + [sym__delim_tokens] = STATE(61), + [sym__literal] = STATE(61), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(61), + [aux_sym_delim_token_tree_repeat1] = STATE(61), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), [anon_sym_impl] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(392), [anon_sym_trait] = ACTIONS(450), [anon_sym_type] = ACTIONS(450), - [anon_sym_COLON] = ACTIONS(386), + [anon_sym_COLON] = ACTIONS(394), [anon_sym_const] = ACTIONS(450), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), [anon_sym_mod] = ACTIONS(450), [anon_sym_struct] = ACTIONS(450), [anon_sym_enum] = ACTIONS(450), - [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_COMMA] = ACTIONS(392), [anon_sym_fn] = ACTIONS(450), - [anon_sym_DASH_GT] = ACTIONS(384), + [anon_sym_DASH_GT] = ACTIONS(392), [anon_sym_let] = ACTIONS(450), [anon_sym_use] = ACTIONS(450), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(422), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), [anon_sym_break] = ACTIONS(450), [anon_sym_continue] = ACTIONS(450), [anon_sym_default] = ACTIONS(450), @@ -14854,714 +16117,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(450), [anon_sym_while] = ACTIONS(450), [anon_sym_for] = ACTIONS(450), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), [anon_sym_DOLLAR] = ACTIONS(452), [sym_identifier] = ACTIONS(450), [sym_mutable_specifier] = ACTIONS(450), [sym_super] = ACTIONS(450), [sym_line_comment] = ACTIONS(3), }, - [42] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [53] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(454), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [43] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), + [54] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), [anon_sym_RBRACK] = ACTIONS(454), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [44] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [55] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(454), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [45] = { - [sym_delim_token_tree] = STATE(29), - [sym__delim_tokens] = STATE(29), - [sym__literal] = STATE(29), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(29), - [aux_sym_delim_token_tree_repeat1] = STATE(29), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(456), - [anon_sym_impl] = ACTIONS(458), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(458), - [anon_sym_type] = ACTIONS(458), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(458), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(458), - [anon_sym_struct] = ACTIONS(458), - [anon_sym_enum] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(458), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(458), - [anon_sym_use] = ACTIONS(458), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(458), - [anon_sym_continue] = ACTIONS(458), - [anon_sym_default] = ACTIONS(458), - [anon_sym_if] = ACTIONS(458), - [anon_sym_extern] = ACTIONS(458), - [anon_sym_nopanic] = ACTIONS(458), - [anon_sym_loop] = ACTIONS(458), - [anon_sym_match] = ACTIONS(458), - [anon_sym_pub] = ACTIONS(458), - [anon_sym_return] = ACTIONS(458), - [anon_sym_static] = ACTIONS(458), - [anon_sym_while] = ACTIONS(458), - [anon_sym_for] = ACTIONS(458), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), + [56] = { + [sym_delim_token_tree] = STATE(53), + [sym__delim_tokens] = STATE(53), + [sym__literal] = STATE(53), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(53), + [aux_sym_delim_token_tree_repeat1] = STATE(53), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(456), + [anon_sym_struct] = ACTIONS(456), + [anon_sym_enum] = ACTIONS(456), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(456), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(456), + [anon_sym_use] = ACTIONS(456), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(456), + [anon_sym_continue] = ACTIONS(456), + [anon_sym_default] = ACTIONS(456), + [anon_sym_if] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(456), + [anon_sym_nopanic] = ACTIONS(456), + [anon_sym_loop] = ACTIONS(456), + [anon_sym_match] = ACTIONS(456), + [anon_sym_pub] = ACTIONS(456), + [anon_sym_return] = ACTIONS(456), + [anon_sym_static] = ACTIONS(456), + [anon_sym_while] = ACTIONS(456), + [anon_sym_for] = ACTIONS(456), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), [anon_sym_DOLLAR] = ACTIONS(460), - [sym_identifier] = ACTIONS(458), - [sym_mutable_specifier] = ACTIONS(458), - [sym_super] = ACTIONS(458), - [sym_line_comment] = ACTIONS(3), - }, - [46] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(448), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), - [sym_line_comment] = ACTIONS(3), - }, - [47] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(448), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [sym_identifier] = ACTIONS(456), + [sym_mutable_specifier] = ACTIONS(456), + [sym_super] = ACTIONS(456), [sym_line_comment] = ACTIONS(3), }, - [48] = { - [sym_delim_token_tree] = STATE(56), - [sym__delim_tokens] = STATE(56), - [sym__literal] = STATE(56), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(56), - [aux_sym_delim_token_tree_repeat1] = STATE(56), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), + [57] = { + [sym_delim_token_tree] = STATE(54), + [sym__delim_tokens] = STATE(54), + [sym__literal] = STATE(54), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(54), + [aux_sym_delim_token_tree_repeat1] = STATE(54), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), [anon_sym_impl] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(392), [anon_sym_trait] = ACTIONS(462), [anon_sym_type] = ACTIONS(462), - [anon_sym_COLON] = ACTIONS(386), + [anon_sym_COLON] = ACTIONS(394), [anon_sym_const] = ACTIONS(462), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(458), [anon_sym_mod] = ACTIONS(462), [anon_sym_struct] = ACTIONS(462), [anon_sym_enum] = ACTIONS(462), - [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_COMMA] = ACTIONS(392), [anon_sym_fn] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(384), + [anon_sym_DASH_GT] = ACTIONS(392), [anon_sym_let] = ACTIONS(462), [anon_sym_use] = ACTIONS(462), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), [anon_sym_break] = ACTIONS(462), [anon_sym_continue] = ACTIONS(462), [anon_sym_default] = ACTIONS(462), @@ -15575,96 +16632,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(462), [anon_sym_while] = ACTIONS(462), [anon_sym_for] = ACTIONS(462), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), [anon_sym_DOLLAR] = ACTIONS(464), [sym_identifier] = ACTIONS(462), [sym_mutable_specifier] = ACTIONS(462), [sym_super] = ACTIONS(462), [sym_line_comment] = ACTIONS(3), }, - [49] = { - [sym_delim_token_tree] = STATE(53), - [sym__delim_tokens] = STATE(53), - [sym__literal] = STATE(53), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(53), - [aux_sym_delim_token_tree_repeat1] = STATE(53), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), + [58] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(434), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), + [sym_line_comment] = ACTIONS(3), + }, + [59] = { + [sym_delim_token_tree] = STATE(55), + [sym__delim_tokens] = STATE(55), + [sym__literal] = STATE(55), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(55), + [aux_sym_delim_token_tree_repeat1] = STATE(55), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(458), [anon_sym_impl] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(392), [anon_sym_trait] = ACTIONS(466), [anon_sym_type] = ACTIONS(466), - [anon_sym_COLON] = ACTIONS(386), + [anon_sym_COLON] = ACTIONS(394), [anon_sym_const] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), [anon_sym_mod] = ACTIONS(466), [anon_sym_struct] = ACTIONS(466), [anon_sym_enum] = ACTIONS(466), - [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_COMMA] = ACTIONS(392), [anon_sym_fn] = ACTIONS(466), - [anon_sym_DASH_GT] = ACTIONS(384), + [anon_sym_DASH_GT] = ACTIONS(392), [anon_sym_let] = ACTIONS(466), [anon_sym_use] = ACTIONS(466), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(434), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), [anon_sym_break] = ACTIONS(466), [anon_sym_continue] = ACTIONS(466), [anon_sym_default] = ACTIONS(466), @@ -15678,817 +16838,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(466), [anon_sym_while] = ACTIONS(466), [anon_sym_for] = ACTIONS(466), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), [anon_sym_DOLLAR] = ACTIONS(468), [sym_identifier] = ACTIONS(466), [sym_mutable_specifier] = ACTIONS(466), [sym_super] = ACTIONS(466), [sym_line_comment] = ACTIONS(3), }, - [50] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), - [sym_line_comment] = ACTIONS(3), - }, - [51] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(470), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), - [sym_line_comment] = ACTIONS(3), - }, - [52] = { - [sym_delim_token_tree] = STATE(50), - [sym__delim_tokens] = STATE(50), - [sym__literal] = STATE(50), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(50), - [aux_sym_delim_token_tree_repeat1] = STATE(50), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(434), - [anon_sym_impl] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(472), - [anon_sym_type] = ACTIONS(472), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(472), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(472), - [anon_sym_struct] = ACTIONS(472), - [anon_sym_enum] = ACTIONS(472), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(472), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(472), - [anon_sym_use] = ACTIONS(472), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(472), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_default] = ACTIONS(472), - [anon_sym_if] = ACTIONS(472), - [anon_sym_extern] = ACTIONS(472), - [anon_sym_nopanic] = ACTIONS(472), - [anon_sym_loop] = ACTIONS(472), - [anon_sym_match] = ACTIONS(472), - [anon_sym_pub] = ACTIONS(472), - [anon_sym_return] = ACTIONS(472), - [anon_sym_static] = ACTIONS(472), - [anon_sym_while] = ACTIONS(472), - [anon_sym_for] = ACTIONS(472), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(474), - [sym_identifier] = ACTIONS(472), - [sym_mutable_specifier] = ACTIONS(472), - [sym_super] = ACTIONS(472), - [sym_line_comment] = ACTIONS(3), - }, - [53] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [60] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(434), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [54] = { - [sym_delim_token_tree] = STATE(55), - [sym__delim_tokens] = STATE(55), - [sym__literal] = STATE(55), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(55), - [aux_sym_delim_token_tree_repeat1] = STATE(55), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(476), - [anon_sym_type] = ACTIONS(476), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(476), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(476), - [anon_sym_struct] = ACTIONS(476), - [anon_sym_enum] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(476), - [anon_sym_use] = ACTIONS(476), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(456), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(476), - [anon_sym_continue] = ACTIONS(476), - [anon_sym_default] = ACTIONS(476), - [anon_sym_if] = ACTIONS(476), - [anon_sym_extern] = ACTIONS(476), - [anon_sym_nopanic] = ACTIONS(476), - [anon_sym_loop] = ACTIONS(476), - [anon_sym_match] = ACTIONS(476), - [anon_sym_pub] = ACTIONS(476), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(476), - [anon_sym_while] = ACTIONS(476), - [anon_sym_for] = ACTIONS(476), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(478), - [sym_identifier] = ACTIONS(476), - [sym_mutable_specifier] = ACTIONS(476), - [sym_super] = ACTIONS(476), + [61] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(432), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [55] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(406), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [62] = { + [sym_delim_token_tree] = STATE(46), + [sym__delim_tokens] = STATE(46), + [sym__literal] = STATE(46), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(46), + [aux_sym_delim_token_tree_repeat1] = STATE(46), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(398), + [anon_sym_impl] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_enum] = ACTIONS(470), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(470), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(470), + [anon_sym_use] = ACTIONS(470), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_default] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_extern] = ACTIONS(470), + [anon_sym_nopanic] = ACTIONS(470), + [anon_sym_loop] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_pub] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_static] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(472), + [sym_identifier] = ACTIONS(470), + [sym_mutable_specifier] = ACTIONS(470), + [sym_super] = ACTIONS(470), [sym_line_comment] = ACTIONS(3), }, - [56] = { - [sym_delim_token_tree] = STATE(27), - [sym__delim_tokens] = STATE(27), - [sym__literal] = STATE(27), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(27), - [aux_sym_delim_token_tree_repeat1] = STATE(27), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_impl] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_trait] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_const] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(406), - [anon_sym_mod] = ACTIONS(382), - [anon_sym_struct] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_fn] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_let] = ACTIONS(382), - [anon_sym_use] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_break] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_if] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_nopanic] = ACTIONS(382), - [anon_sym_loop] = ACTIONS(382), - [anon_sym_match] = ACTIONS(382), - [anon_sym_pub] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_identifier] = ACTIONS(382), - [sym_mutable_specifier] = ACTIONS(382), - [sym_super] = ACTIONS(382), + [63] = { + [sym_delim_token_tree] = STATE(60), + [sym__delim_tokens] = STATE(60), + [sym__literal] = STATE(60), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(60), + [aux_sym_delim_token_tree_repeat1] = STATE(60), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(474), + [anon_sym_type] = ACTIONS(474), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(474), + [anon_sym_struct] = ACTIONS(474), + [anon_sym_enum] = ACTIONS(474), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(474), + [anon_sym_use] = ACTIONS(474), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(398), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(474), + [anon_sym_default] = ACTIONS(474), + [anon_sym_if] = ACTIONS(474), + [anon_sym_extern] = ACTIONS(474), + [anon_sym_nopanic] = ACTIONS(474), + [anon_sym_loop] = ACTIONS(474), + [anon_sym_match] = ACTIONS(474), + [anon_sym_pub] = ACTIONS(474), + [anon_sym_return] = ACTIONS(474), + [anon_sym_static] = ACTIONS(474), + [anon_sym_while] = ACTIONS(474), + [anon_sym_for] = ACTIONS(474), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(476), + [sym_identifier] = ACTIONS(474), + [sym_mutable_specifier] = ACTIONS(474), + [sym_super] = ACTIONS(474), [sym_line_comment] = ACTIONS(3), }, - [57] = { - [sym_delim_token_tree] = STATE(47), - [sym__delim_tokens] = STATE(47), - [sym__literal] = STATE(47), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(47), - [aux_sym_delim_token_tree_repeat1] = STATE(47), - [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(444), + [64] = { + [sym_delim_token_tree] = STATE(66), + [sym__delim_tokens] = STATE(66), + [sym__literal] = STATE(66), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(66), + [aux_sym_delim_token_tree_repeat1] = STATE(66), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(478), [anon_sym_impl] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(392), [anon_sym_trait] = ACTIONS(480), [anon_sym_type] = ACTIONS(480), - [anon_sym_COLON] = ACTIONS(386), + [anon_sym_COLON] = ACTIONS(394), [anon_sym_const] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), [anon_sym_mod] = ACTIONS(480), [anon_sym_struct] = ACTIONS(480), [anon_sym_enum] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_COMMA] = ACTIONS(392), [anon_sym_fn] = ACTIONS(480), - [anon_sym_DASH_GT] = ACTIONS(384), + [anon_sym_DASH_GT] = ACTIONS(392), [anon_sym_let] = ACTIONS(480), [anon_sym_use] = ACTIONS(480), - [anon_sym_COLON_COLON] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym__] = ACTIONS(386), - [anon_sym_u8] = ACTIONS(392), - [anon_sym_i8] = ACTIONS(392), - [anon_sym_u16] = ACTIONS(392), - [anon_sym_i16] = ACTIONS(392), - [anon_sym_u32] = ACTIONS(392), - [anon_sym_i32] = ACTIONS(392), - [anon_sym_u64] = ACTIONS(392), - [anon_sym_i64] = ACTIONS(392), - [anon_sym_u128] = ACTIONS(392), - [anon_sym_i128] = ACTIONS(392), - [anon_sym_usize] = ACTIONS(392), - [anon_sym_bool] = ACTIONS(392), - [anon_sym_ByteArray] = ACTIONS(392), - [anon_sym_felt252] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), [anon_sym_break] = ACTIONS(480), [anon_sym_continue] = ACTIONS(480), [anon_sym_default] = ACTIONS(480), @@ -16502,1029 +17353,1546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(480), [anon_sym_while] = ACTIONS(480), [anon_sym_for] = ACTIONS(480), - [sym_numeric_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(398), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), [anon_sym_DOLLAR] = ACTIONS(482), [sym_identifier] = ACTIONS(480), [sym_mutable_specifier] = ACTIONS(480), [sym_super] = ACTIONS(480), [sym_line_comment] = ACTIONS(3), }, - [58] = { - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(484), - [anon_sym_impl] = ACTIONS(486), - [anon_sym_SEMI] = ACTIONS(488), - [anon_sym_trait] = ACTIONS(486), - [anon_sym_type] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(490), - [anon_sym_const] = ACTIONS(486), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_POUND] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_RBRACK] = ACTIONS(484), - [anon_sym_mod] = ACTIONS(486), - [anon_sym_struct] = ACTIONS(486), - [anon_sym_enum] = ACTIONS(486), - [anon_sym_COMMA] = ACTIONS(488), - [anon_sym_fn] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(488), - [anon_sym_let] = ACTIONS(486), - [anon_sym_use] = ACTIONS(486), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(484), - [anon_sym__] = ACTIONS(490), - [anon_sym_RPAREN] = ACTIONS(484), - [anon_sym_u8] = ACTIONS(486), - [anon_sym_i8] = ACTIONS(486), - [anon_sym_u16] = ACTIONS(486), - [anon_sym_i16] = ACTIONS(486), - [anon_sym_u32] = ACTIONS(486), - [anon_sym_i32] = ACTIONS(486), - [anon_sym_u64] = ACTIONS(486), - [anon_sym_i64] = ACTIONS(486), - [anon_sym_u128] = ACTIONS(486), - [anon_sym_i128] = ACTIONS(486), - [anon_sym_usize] = ACTIONS(486), - [anon_sym_bool] = ACTIONS(486), - [anon_sym_ByteArray] = ACTIONS(486), - [anon_sym_felt252] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_PERCENT] = ACTIONS(490), - [anon_sym_CARET] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(488), - [anon_sym_PIPE_PIPE] = ACTIONS(488), - [anon_sym_LT_LT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(488), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_PERCENT_EQ] = ACTIONS(488), - [anon_sym_CARET_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_AT] = ACTIONS(488), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_break] = ACTIONS(486), - [anon_sym_continue] = ACTIONS(486), - [anon_sym_default] = ACTIONS(486), - [anon_sym_if] = ACTIONS(486), - [anon_sym_extern] = ACTIONS(486), - [anon_sym_nopanic] = ACTIONS(486), - [anon_sym_loop] = ACTIONS(486), - [anon_sym_match] = ACTIONS(486), - [anon_sym_pub] = ACTIONS(486), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(486), - [anon_sym_while] = ACTIONS(486), - [anon_sym_for] = ACTIONS(486), - [sym_numeric_literal] = ACTIONS(486), - [aux_sym_string_literal_token1] = ACTIONS(484), - [sym_shortstring_literal] = ACTIONS(484), - [anon_sym_true] = ACTIONS(486), - [anon_sym_false] = ACTIONS(486), - [anon_sym_DOLLAR] = ACTIONS(484), - [sym_identifier] = ACTIONS(486), - [sym_mutable_specifier] = ACTIONS(486), - [sym_super] = ACTIONS(486), + [65] = { + [sym_delim_token_tree] = STATE(68), + [sym__delim_tokens] = STATE(68), + [sym__literal] = STATE(68), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(68), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(484), + [anon_sym_type] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(478), + [anon_sym_mod] = ACTIONS(484), + [anon_sym_struct] = ACTIONS(484), + [anon_sym_enum] = ACTIONS(484), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(484), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(484), + [anon_sym_use] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(484), + [anon_sym_continue] = ACTIONS(484), + [anon_sym_default] = ACTIONS(484), + [anon_sym_if] = ACTIONS(484), + [anon_sym_extern] = ACTIONS(484), + [anon_sym_nopanic] = ACTIONS(484), + [anon_sym_loop] = ACTIONS(484), + [anon_sym_match] = ACTIONS(484), + [anon_sym_pub] = ACTIONS(484), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(484), + [anon_sym_while] = ACTIONS(484), + [anon_sym_for] = ACTIONS(484), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(486), + [sym_identifier] = ACTIONS(484), + [sym_mutable_specifier] = ACTIONS(484), + [sym_super] = ACTIONS(484), [sym_line_comment] = ACTIONS(3), }, - [59] = { - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_impl] = ACTIONS(494), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_trait] = ACTIONS(494), - [anon_sym_type] = ACTIONS(494), - [anon_sym_COLON] = ACTIONS(499), - [anon_sym_const] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_POUND] = ACTIONS(496), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_RBRACK] = ACTIONS(492), - [anon_sym_mod] = ACTIONS(494), - [anon_sym_struct] = ACTIONS(494), - [anon_sym_enum] = ACTIONS(494), - [anon_sym_COMMA] = ACTIONS(496), - [anon_sym_fn] = ACTIONS(494), - [anon_sym_DASH_GT] = ACTIONS(496), - [anon_sym_let] = ACTIONS(494), - [anon_sym_use] = ACTIONS(494), - [anon_sym_COLON_COLON] = ACTIONS(496), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym__] = ACTIONS(499), - [anon_sym_RPAREN] = ACTIONS(492), - [anon_sym_u8] = ACTIONS(494), - [anon_sym_i8] = ACTIONS(494), - [anon_sym_u16] = ACTIONS(494), - [anon_sym_i16] = ACTIONS(494), - [anon_sym_u32] = ACTIONS(494), - [anon_sym_i32] = ACTIONS(494), - [anon_sym_u64] = ACTIONS(494), - [anon_sym_i64] = ACTIONS(494), - [anon_sym_u128] = ACTIONS(494), - [anon_sym_i128] = ACTIONS(494), - [anon_sym_usize] = ACTIONS(494), - [anon_sym_bool] = ACTIONS(494), - [anon_sym_ByteArray] = ACTIONS(494), - [anon_sym_felt252] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(499), - [anon_sym_GT] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_SLASH] = ACTIONS(499), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_CARET] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE_PIPE] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(496), - [anon_sym_GT_GT] = ACTIONS(496), - [anon_sym_PLUS_EQ] = ACTIONS(496), - [anon_sym_DASH_EQ] = ACTIONS(496), - [anon_sym_STAR_EQ] = ACTIONS(496), - [anon_sym_SLASH_EQ] = ACTIONS(496), - [anon_sym_PERCENT_EQ] = ACTIONS(496), - [anon_sym_CARET_EQ] = ACTIONS(496), - [anon_sym_AMP_EQ] = ACTIONS(496), - [anon_sym_PIPE_EQ] = ACTIONS(496), - [anon_sym_EQ_EQ] = ACTIONS(496), - [anon_sym_BANG_EQ] = ACTIONS(496), - [anon_sym_GT_EQ] = ACTIONS(496), - [anon_sym_LT_EQ] = ACTIONS(496), - [anon_sym_AT] = ACTIONS(496), - [anon_sym_DOT_DOT] = ACTIONS(496), - [anon_sym_DOT] = ACTIONS(499), - [anon_sym_EQ_GT] = ACTIONS(496), - [anon_sym_QMARK] = ACTIONS(496), - [anon_sym_break] = ACTIONS(494), - [anon_sym_continue] = ACTIONS(494), - [anon_sym_default] = ACTIONS(494), - [anon_sym_if] = ACTIONS(494), - [anon_sym_extern] = ACTIONS(494), - [anon_sym_nopanic] = ACTIONS(494), - [anon_sym_loop] = ACTIONS(494), - [anon_sym_match] = ACTIONS(494), - [anon_sym_pub] = ACTIONS(494), - [anon_sym_return] = ACTIONS(494), - [anon_sym_static] = ACTIONS(494), - [anon_sym_while] = ACTIONS(494), - [anon_sym_for] = ACTIONS(494), - [sym_numeric_literal] = ACTIONS(494), - [aux_sym_string_literal_token1] = ACTIONS(492), - [sym_shortstring_literal] = ACTIONS(492), - [anon_sym_true] = ACTIONS(494), - [anon_sym_false] = ACTIONS(494), + [66] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), + [sym_line_comment] = ACTIONS(3), + }, + [67] = { + [sym_delim_token_tree] = STATE(69), + [sym__delim_tokens] = STATE(69), + [sym__literal] = STATE(69), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(69), + [aux_sym_delim_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(490), + [anon_sym_type] = ACTIONS(490), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(490), + [anon_sym_enum] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(490), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(490), + [anon_sym_use] = ACTIONS(490), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(478), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(490), + [anon_sym_continue] = ACTIONS(490), + [anon_sym_default] = ACTIONS(490), + [anon_sym_if] = ACTIONS(490), + [anon_sym_extern] = ACTIONS(490), + [anon_sym_nopanic] = ACTIONS(490), + [anon_sym_loop] = ACTIONS(490), + [anon_sym_match] = ACTIONS(490), + [anon_sym_pub] = ACTIONS(490), + [anon_sym_return] = ACTIONS(490), + [anon_sym_static] = ACTIONS(490), + [anon_sym_while] = ACTIONS(490), + [anon_sym_for] = ACTIONS(490), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), [anon_sym_DOLLAR] = ACTIONS(492), - [sym_identifier] = ACTIONS(494), - [sym_mutable_specifier] = ACTIONS(494), - [sym_super] = ACTIONS(494), + [sym_identifier] = ACTIONS(490), + [sym_mutable_specifier] = ACTIONS(490), + [sym_super] = ACTIONS(490), [sym_line_comment] = ACTIONS(3), }, - [60] = { - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(502), - [anon_sym_impl] = ACTIONS(504), - [anon_sym_SEMI] = ACTIONS(502), - [anon_sym_trait] = ACTIONS(504), - [anon_sym_type] = ACTIONS(504), - [anon_sym_COLON] = ACTIONS(504), - [anon_sym_const] = ACTIONS(504), - [anon_sym_EQ] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_POUND] = ACTIONS(502), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_RBRACK] = ACTIONS(502), - [anon_sym_mod] = ACTIONS(504), - [anon_sym_struct] = ACTIONS(504), - [anon_sym_enum] = ACTIONS(504), - [anon_sym_COMMA] = ACTIONS(502), - [anon_sym_fn] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(502), - [anon_sym_let] = ACTIONS(504), - [anon_sym_use] = ACTIONS(504), - [anon_sym_COLON_COLON] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(502), - [anon_sym__] = ACTIONS(504), - [anon_sym_RPAREN] = ACTIONS(502), - [anon_sym_u8] = ACTIONS(504), - [anon_sym_i8] = ACTIONS(504), - [anon_sym_u16] = ACTIONS(504), - [anon_sym_i16] = ACTIONS(504), - [anon_sym_u32] = ACTIONS(504), - [anon_sym_i32] = ACTIONS(504), - [anon_sym_u64] = ACTIONS(504), - [anon_sym_i64] = ACTIONS(504), - [anon_sym_u128] = ACTIONS(504), - [anon_sym_i128] = ACTIONS(504), - [anon_sym_usize] = ACTIONS(504), - [anon_sym_bool] = ACTIONS(504), - [anon_sym_ByteArray] = ACTIONS(504), - [anon_sym_felt252] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_SLASH] = ACTIONS(504), - [anon_sym_PERCENT] = ACTIONS(504), - [anon_sym_CARET] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_AMP] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_AMP_AMP] = ACTIONS(502), - [anon_sym_PIPE_PIPE] = ACTIONS(502), - [anon_sym_LT_LT] = ACTIONS(502), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(502), - [anon_sym_DASH_EQ] = ACTIONS(502), - [anon_sym_STAR_EQ] = ACTIONS(502), - [anon_sym_SLASH_EQ] = ACTIONS(502), - [anon_sym_PERCENT_EQ] = ACTIONS(502), - [anon_sym_CARET_EQ] = ACTIONS(502), - [anon_sym_AMP_EQ] = ACTIONS(502), - [anon_sym_PIPE_EQ] = ACTIONS(502), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_GT_EQ] = ACTIONS(502), - [anon_sym_LT_EQ] = ACTIONS(502), - [anon_sym_AT] = ACTIONS(502), - [anon_sym_DOT_DOT] = ACTIONS(502), - [anon_sym_DOT] = ACTIONS(504), - [anon_sym_EQ_GT] = ACTIONS(502), - [anon_sym_QMARK] = ACTIONS(502), - [anon_sym_break] = ACTIONS(504), - [anon_sym_continue] = ACTIONS(504), - [anon_sym_default] = ACTIONS(504), - [anon_sym_if] = ACTIONS(504), - [anon_sym_extern] = ACTIONS(504), - [anon_sym_nopanic] = ACTIONS(504), - [anon_sym_loop] = ACTIONS(504), - [anon_sym_match] = ACTIONS(504), - [anon_sym_pub] = ACTIONS(504), - [anon_sym_return] = ACTIONS(504), - [anon_sym_static] = ACTIONS(504), - [anon_sym_while] = ACTIONS(504), - [anon_sym_for] = ACTIONS(504), - [sym_numeric_literal] = ACTIONS(504), - [aux_sym_string_literal_token1] = ACTIONS(502), - [sym_shortstring_literal] = ACTIONS(502), - [anon_sym_true] = ACTIONS(504), - [anon_sym_false] = ACTIONS(504), - [anon_sym_DOLLAR] = ACTIONS(502), - [sym_identifier] = ACTIONS(504), - [sym_mutable_specifier] = ACTIONS(504), - [sym_super] = ACTIONS(504), + [68] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(488), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [61] = { - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_impl] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(506), - [anon_sym_trait] = ACTIONS(508), - [anon_sym_type] = ACTIONS(508), - [anon_sym_COLON] = ACTIONS(508), - [anon_sym_const] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(506), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_RBRACK] = ACTIONS(506), - [anon_sym_mod] = ACTIONS(508), - [anon_sym_struct] = ACTIONS(508), - [anon_sym_enum] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_fn] = ACTIONS(508), - [anon_sym_DASH_GT] = ACTIONS(506), - [anon_sym_let] = ACTIONS(508), - [anon_sym_use] = ACTIONS(508), - [anon_sym_COLON_COLON] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym__] = ACTIONS(508), - [anon_sym_RPAREN] = ACTIONS(506), - [anon_sym_u8] = ACTIONS(508), - [anon_sym_i8] = ACTIONS(508), - [anon_sym_u16] = ACTIONS(508), - [anon_sym_i16] = ACTIONS(508), - [anon_sym_u32] = ACTIONS(508), - [anon_sym_i32] = ACTIONS(508), - [anon_sym_u64] = ACTIONS(508), - [anon_sym_i64] = ACTIONS(508), - [anon_sym_u128] = ACTIONS(508), - [anon_sym_i128] = ACTIONS(508), - [anon_sym_usize] = ACTIONS(508), - [anon_sym_bool] = ACTIONS(508), - [anon_sym_ByteArray] = ACTIONS(508), - [anon_sym_felt252] = ACTIONS(508), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PERCENT] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(506), - [anon_sym_PLUS_EQ] = ACTIONS(506), - [anon_sym_DASH_EQ] = ACTIONS(506), - [anon_sym_STAR_EQ] = ACTIONS(506), - [anon_sym_SLASH_EQ] = ACTIONS(506), - [anon_sym_PERCENT_EQ] = ACTIONS(506), - [anon_sym_CARET_EQ] = ACTIONS(506), - [anon_sym_AMP_EQ] = ACTIONS(506), - [anon_sym_PIPE_EQ] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_AT] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(506), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_EQ_GT] = ACTIONS(506), - [anon_sym_QMARK] = ACTIONS(506), - [anon_sym_break] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_default] = ACTIONS(508), - [anon_sym_if] = ACTIONS(508), - [anon_sym_extern] = ACTIONS(508), - [anon_sym_nopanic] = ACTIONS(508), - [anon_sym_loop] = ACTIONS(508), - [anon_sym_match] = ACTIONS(508), - [anon_sym_pub] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_static] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [sym_numeric_literal] = ACTIONS(510), - [aux_sym_string_literal_token1] = ACTIONS(506), - [sym_shortstring_literal] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [anon_sym_DOLLAR] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [sym_mutable_specifier] = ACTIONS(508), - [sym_super] = ACTIONS(508), + [69] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(76), + [sym_string_literal] = STATE(76), + [sym_boolean_literal] = STATE(76), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(71), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(394), + [anon_sym_const] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(392), + [anon_sym_let] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym__] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(488), + [anon_sym_u8] = ACTIONS(402), + [anon_sym_i8] = ACTIONS(402), + [anon_sym_u16] = ACTIONS(402), + [anon_sym_i16] = ACTIONS(402), + [anon_sym_u32] = ACTIONS(402), + [anon_sym_i32] = ACTIONS(402), + [anon_sym_u64] = ACTIONS(402), + [anon_sym_i64] = ACTIONS(402), + [anon_sym_u128] = ACTIONS(402), + [anon_sym_i128] = ACTIONS(402), + [anon_sym_usize] = ACTIONS(402), + [anon_sym_bool] = ACTIONS(402), + [anon_sym_ByteArray] = ACTIONS(402), + [anon_sym_felt252] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_break] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_nopanic] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [sym_numeric_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(408), + [sym_shortstring_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(420), + [sym_identifier] = ACTIONS(416), + [sym_mutable_specifier] = ACTIONS(416), + [sym_super] = ACTIONS(416), [sym_line_comment] = ACTIONS(3), }, - [62] = { - [anon_sym_LBRACE] = ACTIONS(513), - [anon_sym_RBRACE] = ACTIONS(513), - [anon_sym_impl] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_trait] = ACTIONS(515), - [anon_sym_type] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_const] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_POUND] = ACTIONS(513), - [anon_sym_LBRACK] = ACTIONS(513), - [anon_sym_RBRACK] = ACTIONS(513), - [anon_sym_mod] = ACTIONS(515), - [anon_sym_struct] = ACTIONS(515), - [anon_sym_enum] = ACTIONS(515), - [anon_sym_COMMA] = ACTIONS(513), - [anon_sym_fn] = ACTIONS(515), - [anon_sym_DASH_GT] = ACTIONS(513), - [anon_sym_let] = ACTIONS(515), - [anon_sym_use] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_STAR] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(513), - [anon_sym__] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(513), - [anon_sym_u8] = ACTIONS(515), - [anon_sym_i8] = ACTIONS(515), - [anon_sym_u16] = ACTIONS(515), - [anon_sym_i16] = ACTIONS(515), - [anon_sym_u32] = ACTIONS(515), - [anon_sym_i32] = ACTIONS(515), - [anon_sym_u64] = ACTIONS(515), - [anon_sym_i64] = ACTIONS(515), - [anon_sym_u128] = ACTIONS(515), - [anon_sym_i128] = ACTIONS(515), - [anon_sym_usize] = ACTIONS(515), - [anon_sym_bool] = ACTIONS(515), - [anon_sym_ByteArray] = ACTIONS(515), - [anon_sym_felt252] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_SLASH] = ACTIONS(515), - [anon_sym_PERCENT] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_PLUS_EQ] = ACTIONS(513), - [anon_sym_DASH_EQ] = ACTIONS(513), - [anon_sym_STAR_EQ] = ACTIONS(513), - [anon_sym_SLASH_EQ] = ACTIONS(513), - [anon_sym_PERCENT_EQ] = ACTIONS(513), - [anon_sym_CARET_EQ] = ACTIONS(513), - [anon_sym_AMP_EQ] = ACTIONS(513), - [anon_sym_PIPE_EQ] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(513), - [anon_sym_DOT_DOT] = ACTIONS(513), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_EQ_GT] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(513), - [anon_sym_break] = ACTIONS(515), - [anon_sym_continue] = ACTIONS(515), - [anon_sym_default] = ACTIONS(515), - [anon_sym_if] = ACTIONS(515), - [anon_sym_extern] = ACTIONS(515), - [anon_sym_nopanic] = ACTIONS(515), - [anon_sym_loop] = ACTIONS(515), - [anon_sym_match] = ACTIONS(515), - [anon_sym_pub] = ACTIONS(515), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(515), - [anon_sym_while] = ACTIONS(515), - [anon_sym_for] = ACTIONS(515), - [sym_numeric_literal] = ACTIONS(515), - [aux_sym_string_literal_token1] = ACTIONS(513), - [sym_shortstring_literal] = ACTIONS(513), - [anon_sym_true] = ACTIONS(515), - [anon_sym_false] = ACTIONS(515), - [anon_sym_DOLLAR] = ACTIONS(513), - [sym_identifier] = ACTIONS(515), - [sym_mutable_specifier] = ACTIONS(515), - [sym_super] = ACTIONS(515), + [70] = { + [aux_sym__non_special_token_repeat1] = STATE(70), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_impl] = ACTIONS(496), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_trait] = ACTIONS(496), + [anon_sym_type] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(501), + [anon_sym_const] = ACTIONS(496), + [anon_sym_EQ] = ACTIONS(501), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_POUND] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_RBRACK] = ACTIONS(494), + [anon_sym_mod] = ACTIONS(496), + [anon_sym_struct] = ACTIONS(496), + [anon_sym_enum] = ACTIONS(496), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_fn] = ACTIONS(496), + [anon_sym_DASH_GT] = ACTIONS(498), + [anon_sym_let] = ACTIONS(496), + [anon_sym_use] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym__] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(494), + [anon_sym_u8] = ACTIONS(496), + [anon_sym_i8] = ACTIONS(496), + [anon_sym_u16] = ACTIONS(496), + [anon_sym_i16] = ACTIONS(496), + [anon_sym_u32] = ACTIONS(496), + [anon_sym_i32] = ACTIONS(496), + [anon_sym_u64] = ACTIONS(496), + [anon_sym_i64] = ACTIONS(496), + [anon_sym_u128] = ACTIONS(496), + [anon_sym_i128] = ACTIONS(496), + [anon_sym_usize] = ACTIONS(496), + [anon_sym_bool] = ACTIONS(496), + [anon_sym_ByteArray] = ACTIONS(496), + [anon_sym_felt252] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(501), + [anon_sym_GT] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(501), + [anon_sym_PERCENT] = ACTIONS(501), + [anon_sym_CARET] = ACTIONS(501), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(498), + [anon_sym_PIPE_PIPE] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_PLUS_EQ] = ACTIONS(498), + [anon_sym_DASH_EQ] = ACTIONS(498), + [anon_sym_STAR_EQ] = ACTIONS(498), + [anon_sym_SLASH_EQ] = ACTIONS(498), + [anon_sym_PERCENT_EQ] = ACTIONS(498), + [anon_sym_CARET_EQ] = ACTIONS(498), + [anon_sym_AMP_EQ] = ACTIONS(498), + [anon_sym_PIPE_EQ] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(498), + [anon_sym_DOT_DOT] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_EQ_GT] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_break] = ACTIONS(496), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(496), + [anon_sym_if] = ACTIONS(496), + [anon_sym_extern] = ACTIONS(496), + [anon_sym_nopanic] = ACTIONS(496), + [anon_sym_loop] = ACTIONS(496), + [anon_sym_match] = ACTIONS(496), + [anon_sym_pub] = ACTIONS(496), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(496), + [anon_sym_while] = ACTIONS(496), + [anon_sym_for] = ACTIONS(496), + [sym_numeric_literal] = ACTIONS(496), + [aux_sym_string_literal_token1] = ACTIONS(494), + [sym_shortstring_literal] = ACTIONS(494), + [anon_sym_true] = ACTIONS(496), + [anon_sym_false] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(494), + [sym_identifier] = ACTIONS(496), + [sym_mutable_specifier] = ACTIONS(496), + [sym_super] = ACTIONS(496), [sym_line_comment] = ACTIONS(3), }, - [63] = { - [anon_sym_LBRACE] = ACTIONS(517), - [anon_sym_RBRACE] = ACTIONS(517), - [anon_sym_impl] = ACTIONS(519), - [anon_sym_SEMI] = ACTIONS(517), - [anon_sym_trait] = ACTIONS(519), - [anon_sym_type] = ACTIONS(519), - [anon_sym_COLON] = ACTIONS(519), - [anon_sym_const] = ACTIONS(519), - [anon_sym_EQ] = ACTIONS(519), - [anon_sym_BANG] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(517), - [anon_sym_mod] = ACTIONS(519), - [anon_sym_struct] = ACTIONS(519), - [anon_sym_enum] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(517), - [anon_sym_fn] = ACTIONS(519), - [anon_sym_DASH_GT] = ACTIONS(517), - [anon_sym_let] = ACTIONS(519), - [anon_sym_use] = ACTIONS(519), - [anon_sym_COLON_COLON] = ACTIONS(517), - [anon_sym_STAR] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym__] = ACTIONS(519), - [anon_sym_RPAREN] = ACTIONS(517), - [anon_sym_u8] = ACTIONS(519), - [anon_sym_i8] = ACTIONS(519), - [anon_sym_u16] = ACTIONS(519), - [anon_sym_i16] = ACTIONS(519), - [anon_sym_u32] = ACTIONS(519), - [anon_sym_i32] = ACTIONS(519), - [anon_sym_u64] = ACTIONS(519), - [anon_sym_i64] = ACTIONS(519), - [anon_sym_u128] = ACTIONS(519), - [anon_sym_i128] = ACTIONS(519), - [anon_sym_usize] = ACTIONS(519), - [anon_sym_bool] = ACTIONS(519), - [anon_sym_ByteArray] = ACTIONS(519), - [anon_sym_felt252] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(519), - [anon_sym_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(519), - [anon_sym_DASH] = ACTIONS(519), - [anon_sym_SLASH] = ACTIONS(519), - [anon_sym_PERCENT] = ACTIONS(519), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(519), - [anon_sym_AMP_AMP] = ACTIONS(517), - [anon_sym_PIPE_PIPE] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(517), - [anon_sym_GT_GT] = ACTIONS(517), - [anon_sym_PLUS_EQ] = ACTIONS(517), - [anon_sym_DASH_EQ] = ACTIONS(517), - [anon_sym_STAR_EQ] = ACTIONS(517), - [anon_sym_SLASH_EQ] = ACTIONS(517), - [anon_sym_PERCENT_EQ] = ACTIONS(517), - [anon_sym_CARET_EQ] = ACTIONS(517), - [anon_sym_AMP_EQ] = ACTIONS(517), - [anon_sym_PIPE_EQ] = ACTIONS(517), - [anon_sym_EQ_EQ] = ACTIONS(517), - [anon_sym_BANG_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_DOT_DOT] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(519), - [anon_sym_EQ_GT] = ACTIONS(517), - [anon_sym_QMARK] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(519), - [anon_sym_default] = ACTIONS(519), - [anon_sym_if] = ACTIONS(519), - [anon_sym_extern] = ACTIONS(519), - [anon_sym_nopanic] = ACTIONS(519), - [anon_sym_loop] = ACTIONS(519), - [anon_sym_match] = ACTIONS(519), - [anon_sym_pub] = ACTIONS(519), - [anon_sym_return] = ACTIONS(519), - [anon_sym_static] = ACTIONS(519), - [anon_sym_while] = ACTIONS(519), - [anon_sym_for] = ACTIONS(519), - [sym_numeric_literal] = ACTIONS(519), - [aux_sym_string_literal_token1] = ACTIONS(517), - [sym_shortstring_literal] = ACTIONS(517), - [anon_sym_true] = ACTIONS(519), - [anon_sym_false] = ACTIONS(519), - [anon_sym_DOLLAR] = ACTIONS(517), - [sym_identifier] = ACTIONS(519), - [sym_mutable_specifier] = ACTIONS(519), - [sym_super] = ACTIONS(519), + [71] = { + [aux_sym__non_special_token_repeat1] = STATE(70), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_RBRACE] = ACTIONS(504), + [anon_sym_impl] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_trait] = ACTIONS(506), + [anon_sym_type] = ACTIONS(506), + [anon_sym_COLON] = ACTIONS(510), + [anon_sym_const] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_POUND] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(504), + [anon_sym_RBRACK] = ACTIONS(504), + [anon_sym_mod] = ACTIONS(506), + [anon_sym_struct] = ACTIONS(506), + [anon_sym_enum] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_fn] = ACTIONS(506), + [anon_sym_DASH_GT] = ACTIONS(508), + [anon_sym_let] = ACTIONS(506), + [anon_sym_use] = ACTIONS(506), + [anon_sym_COLON_COLON] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(504), + [anon_sym__] = ACTIONS(510), + [anon_sym_RPAREN] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(506), + [anon_sym_i8] = ACTIONS(506), + [anon_sym_u16] = ACTIONS(506), + [anon_sym_i16] = ACTIONS(506), + [anon_sym_u32] = ACTIONS(506), + [anon_sym_i32] = ACTIONS(506), + [anon_sym_u64] = ACTIONS(506), + [anon_sym_i64] = ACTIONS(506), + [anon_sym_u128] = ACTIONS(506), + [anon_sym_i128] = ACTIONS(506), + [anon_sym_usize] = ACTIONS(506), + [anon_sym_bool] = ACTIONS(506), + [anon_sym_ByteArray] = ACTIONS(506), + [anon_sym_felt252] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(508), + [anon_sym_PIPE_PIPE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(508), + [anon_sym_PLUS_EQ] = ACTIONS(508), + [anon_sym_DASH_EQ] = ACTIONS(508), + [anon_sym_STAR_EQ] = ACTIONS(508), + [anon_sym_SLASH_EQ] = ACTIONS(508), + [anon_sym_PERCENT_EQ] = ACTIONS(508), + [anon_sym_CARET_EQ] = ACTIONS(508), + [anon_sym_AMP_EQ] = ACTIONS(508), + [anon_sym_PIPE_EQ] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_EQ_GT] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_break] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(506), + [anon_sym_default] = ACTIONS(506), + [anon_sym_if] = ACTIONS(506), + [anon_sym_extern] = ACTIONS(506), + [anon_sym_nopanic] = ACTIONS(506), + [anon_sym_loop] = ACTIONS(506), + [anon_sym_match] = ACTIONS(506), + [anon_sym_pub] = ACTIONS(506), + [anon_sym_return] = ACTIONS(506), + [anon_sym_static] = ACTIONS(506), + [anon_sym_while] = ACTIONS(506), + [anon_sym_for] = ACTIONS(506), + [sym_numeric_literal] = ACTIONS(506), + [aux_sym_string_literal_token1] = ACTIONS(504), + [sym_shortstring_literal] = ACTIONS(504), + [anon_sym_true] = ACTIONS(506), + [anon_sym_false] = ACTIONS(506), + [anon_sym_DOLLAR] = ACTIONS(504), + [sym_identifier] = ACTIONS(506), + [sym_mutable_specifier] = ACTIONS(506), + [sym_super] = ACTIONS(506), [sym_line_comment] = ACTIONS(3), }, - [64] = { - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_impl] = ACTIONS(523), - [anon_sym_SEMI] = ACTIONS(521), - [anon_sym_trait] = ACTIONS(523), - [anon_sym_type] = ACTIONS(523), - [anon_sym_COLON] = ACTIONS(523), - [anon_sym_const] = ACTIONS(523), - [anon_sym_EQ] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(523), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_RBRACK] = ACTIONS(521), - [anon_sym_mod] = ACTIONS(523), - [anon_sym_struct] = ACTIONS(523), - [anon_sym_enum] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_fn] = ACTIONS(523), - [anon_sym_DASH_GT] = ACTIONS(521), - [anon_sym_let] = ACTIONS(523), - [anon_sym_use] = ACTIONS(523), - [anon_sym_COLON_COLON] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym__] = ACTIONS(523), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_u8] = ACTIONS(523), - [anon_sym_i8] = ACTIONS(523), - [anon_sym_u16] = ACTIONS(523), - [anon_sym_i16] = ACTIONS(523), - [anon_sym_u32] = ACTIONS(523), - [anon_sym_i32] = ACTIONS(523), - [anon_sym_u64] = ACTIONS(523), - [anon_sym_i64] = ACTIONS(523), - [anon_sym_u128] = ACTIONS(523), - [anon_sym_i128] = ACTIONS(523), - [anon_sym_usize] = ACTIONS(523), - [anon_sym_bool] = ACTIONS(523), - [anon_sym_ByteArray] = ACTIONS(523), - [anon_sym_felt252] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(523), - [anon_sym_GT] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(523), - [anon_sym_DASH] = ACTIONS(523), - [anon_sym_SLASH] = ACTIONS(523), - [anon_sym_PERCENT] = ACTIONS(523), - [anon_sym_CARET] = ACTIONS(523), - [anon_sym_TILDE] = ACTIONS(521), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(523), - [anon_sym_AMP_AMP] = ACTIONS(521), - [anon_sym_PIPE_PIPE] = ACTIONS(521), - [anon_sym_LT_LT] = ACTIONS(521), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_PLUS_EQ] = ACTIONS(521), - [anon_sym_DASH_EQ] = ACTIONS(521), - [anon_sym_STAR_EQ] = ACTIONS(521), - [anon_sym_SLASH_EQ] = ACTIONS(521), - [anon_sym_PERCENT_EQ] = ACTIONS(521), - [anon_sym_CARET_EQ] = ACTIONS(521), - [anon_sym_AMP_EQ] = ACTIONS(521), - [anon_sym_PIPE_EQ] = ACTIONS(521), - [anon_sym_EQ_EQ] = ACTIONS(521), - [anon_sym_BANG_EQ] = ACTIONS(521), - [anon_sym_GT_EQ] = ACTIONS(521), - [anon_sym_LT_EQ] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT] = ACTIONS(523), - [anon_sym_EQ_GT] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(521), - [anon_sym_break] = ACTIONS(523), - [anon_sym_continue] = ACTIONS(523), - [anon_sym_default] = ACTIONS(523), - [anon_sym_if] = ACTIONS(523), - [anon_sym_extern] = ACTIONS(523), - [anon_sym_nopanic] = ACTIONS(523), - [anon_sym_loop] = ACTIONS(523), - [anon_sym_match] = ACTIONS(523), - [anon_sym_pub] = ACTIONS(523), - [anon_sym_return] = ACTIONS(523), - [anon_sym_static] = ACTIONS(523), - [anon_sym_while] = ACTIONS(523), - [anon_sym_for] = ACTIONS(523), - [sym_numeric_literal] = ACTIONS(523), - [aux_sym_string_literal_token1] = ACTIONS(521), - [sym_shortstring_literal] = ACTIONS(521), - [anon_sym_true] = ACTIONS(523), - [anon_sym_false] = ACTIONS(523), - [anon_sym_DOLLAR] = ACTIONS(521), - [sym_identifier] = ACTIONS(523), - [sym_mutable_specifier] = ACTIONS(523), - [sym_super] = ACTIONS(523), + [72] = { + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_impl] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_trait] = ACTIONS(514), + [anon_sym_type] = ACTIONS(514), + [anon_sym_COLON] = ACTIONS(514), + [anon_sym_const] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(514), + [anon_sym_POUND] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_RBRACK] = ACTIONS(512), + [anon_sym_mod] = ACTIONS(514), + [anon_sym_struct] = ACTIONS(514), + [anon_sym_enum] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_fn] = ACTIONS(514), + [anon_sym_DASH_GT] = ACTIONS(512), + [anon_sym_let] = ACTIONS(514), + [anon_sym_use] = ACTIONS(514), + [anon_sym_COLON_COLON] = ACTIONS(512), + [anon_sym_STAR] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym__] = ACTIONS(514), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_u8] = ACTIONS(514), + [anon_sym_i8] = ACTIONS(514), + [anon_sym_u16] = ACTIONS(514), + [anon_sym_i16] = ACTIONS(514), + [anon_sym_u32] = ACTIONS(514), + [anon_sym_i32] = ACTIONS(514), + [anon_sym_u64] = ACTIONS(514), + [anon_sym_i64] = ACTIONS(514), + [anon_sym_u128] = ACTIONS(514), + [anon_sym_i128] = ACTIONS(514), + [anon_sym_usize] = ACTIONS(514), + [anon_sym_bool] = ACTIONS(514), + [anon_sym_ByteArray] = ACTIONS(514), + [anon_sym_felt252] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(514), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_CARET] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_PLUS_EQ] = ACTIONS(512), + [anon_sym_DASH_EQ] = ACTIONS(512), + [anon_sym_STAR_EQ] = ACTIONS(512), + [anon_sym_SLASH_EQ] = ACTIONS(512), + [anon_sym_PERCENT_EQ] = ACTIONS(512), + [anon_sym_CARET_EQ] = ACTIONS(512), + [anon_sym_AMP_EQ] = ACTIONS(512), + [anon_sym_PIPE_EQ] = ACTIONS(512), + [anon_sym_EQ_EQ] = ACTIONS(512), + [anon_sym_BANG_EQ] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DOT] = ACTIONS(514), + [anon_sym_EQ_GT] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_continue] = ACTIONS(514), + [anon_sym_default] = ACTIONS(514), + [anon_sym_if] = ACTIONS(514), + [anon_sym_extern] = ACTIONS(514), + [anon_sym_nopanic] = ACTIONS(514), + [anon_sym_loop] = ACTIONS(514), + [anon_sym_match] = ACTIONS(514), + [anon_sym_pub] = ACTIONS(514), + [anon_sym_return] = ACTIONS(514), + [anon_sym_static] = ACTIONS(514), + [anon_sym_while] = ACTIONS(514), + [anon_sym_for] = ACTIONS(514), + [sym_numeric_literal] = ACTIONS(514), + [aux_sym_string_literal_token1] = ACTIONS(512), + [sym_shortstring_literal] = ACTIONS(512), + [anon_sym_true] = ACTIONS(514), + [anon_sym_false] = ACTIONS(514), + [anon_sym_DOLLAR] = ACTIONS(512), + [sym_identifier] = ACTIONS(514), + [sym_mutable_specifier] = ACTIONS(514), + [sym_super] = ACTIONS(514), [sym_line_comment] = ACTIONS(3), }, - [65] = { - [anon_sym_LBRACE] = ACTIONS(525), - [anon_sym_RBRACE] = ACTIONS(525), - [anon_sym_impl] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(525), - [anon_sym_trait] = ACTIONS(527), - [anon_sym_type] = ACTIONS(527), - [anon_sym_COLON] = ACTIONS(527), - [anon_sym_const] = ACTIONS(527), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(525), - [anon_sym_RBRACK] = ACTIONS(525), - [anon_sym_mod] = ACTIONS(527), - [anon_sym_struct] = ACTIONS(527), - [anon_sym_enum] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(525), - [anon_sym_fn] = ACTIONS(527), - [anon_sym_DASH_GT] = ACTIONS(525), - [anon_sym_let] = ACTIONS(527), - [anon_sym_use] = ACTIONS(527), - [anon_sym_COLON_COLON] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym__] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(525), - [anon_sym_u8] = ACTIONS(527), - [anon_sym_i8] = ACTIONS(527), - [anon_sym_u16] = ACTIONS(527), - [anon_sym_i16] = ACTIONS(527), - [anon_sym_u32] = ACTIONS(527), - [anon_sym_i32] = ACTIONS(527), - [anon_sym_u64] = ACTIONS(527), - [anon_sym_i64] = ACTIONS(527), - [anon_sym_u128] = ACTIONS(527), - [anon_sym_i128] = ACTIONS(527), - [anon_sym_usize] = ACTIONS(527), - [anon_sym_bool] = ACTIONS(527), - [anon_sym_ByteArray] = ACTIONS(527), - [anon_sym_felt252] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(527), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_TILDE] = ACTIONS(525), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_AMP_AMP] = ACTIONS(525), - [anon_sym_PIPE_PIPE] = ACTIONS(525), - [anon_sym_LT_LT] = ACTIONS(525), - [anon_sym_GT_GT] = ACTIONS(525), - [anon_sym_PLUS_EQ] = ACTIONS(525), - [anon_sym_DASH_EQ] = ACTIONS(525), - [anon_sym_STAR_EQ] = ACTIONS(525), - [anon_sym_SLASH_EQ] = ACTIONS(525), - [anon_sym_PERCENT_EQ] = ACTIONS(525), - [anon_sym_CARET_EQ] = ACTIONS(525), - [anon_sym_AMP_EQ] = ACTIONS(525), - [anon_sym_PIPE_EQ] = ACTIONS(525), - [anon_sym_EQ_EQ] = ACTIONS(525), - [anon_sym_BANG_EQ] = ACTIONS(525), - [anon_sym_GT_EQ] = ACTIONS(525), - [anon_sym_LT_EQ] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(525), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT] = ACTIONS(527), - [anon_sym_EQ_GT] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(527), - [anon_sym_default] = ACTIONS(527), - [anon_sym_if] = ACTIONS(527), - [anon_sym_extern] = ACTIONS(527), - [anon_sym_nopanic] = ACTIONS(527), - [anon_sym_loop] = ACTIONS(527), - [anon_sym_match] = ACTIONS(527), - [anon_sym_pub] = ACTIONS(527), - [anon_sym_return] = ACTIONS(527), - [anon_sym_static] = ACTIONS(527), - [anon_sym_while] = ACTIONS(527), - [anon_sym_for] = ACTIONS(527), - [sym_numeric_literal] = ACTIONS(527), - [aux_sym_string_literal_token1] = ACTIONS(525), - [sym_shortstring_literal] = ACTIONS(525), - [anon_sym_true] = ACTIONS(527), - [anon_sym_false] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(525), - [sym_identifier] = ACTIONS(527), - [sym_mutable_specifier] = ACTIONS(527), - [sym_super] = ACTIONS(527), + [73] = { + [anon_sym_LBRACE] = ACTIONS(516), + [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_impl] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_trait] = ACTIONS(518), + [anon_sym_type] = ACTIONS(518), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_const] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_POUND] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_RBRACK] = ACTIONS(516), + [anon_sym_mod] = ACTIONS(518), + [anon_sym_struct] = ACTIONS(518), + [anon_sym_enum] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(516), + [anon_sym_fn] = ACTIONS(518), + [anon_sym_DASH_GT] = ACTIONS(516), + [anon_sym_let] = ACTIONS(518), + [anon_sym_use] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(516), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(516), + [anon_sym__] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_u8] = ACTIONS(518), + [anon_sym_i8] = ACTIONS(518), + [anon_sym_u16] = ACTIONS(518), + [anon_sym_i16] = ACTIONS(518), + [anon_sym_u32] = ACTIONS(518), + [anon_sym_i32] = ACTIONS(518), + [anon_sym_u64] = ACTIONS(518), + [anon_sym_i64] = ACTIONS(518), + [anon_sym_u128] = ACTIONS(518), + [anon_sym_i128] = ACTIONS(518), + [anon_sym_usize] = ACTIONS(518), + [anon_sym_bool] = ACTIONS(518), + [anon_sym_ByteArray] = ACTIONS(518), + [anon_sym_felt252] = ACTIONS(518), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_GT] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_SLASH] = ACTIONS(518), + [anon_sym_PERCENT] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(518), + [anon_sym_PIPE] = ACTIONS(518), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_PLUS_EQ] = ACTIONS(516), + [anon_sym_DASH_EQ] = ACTIONS(516), + [anon_sym_STAR_EQ] = ACTIONS(516), + [anon_sym_SLASH_EQ] = ACTIONS(516), + [anon_sym_PERCENT_EQ] = ACTIONS(516), + [anon_sym_CARET_EQ] = ACTIONS(516), + [anon_sym_AMP_EQ] = ACTIONS(516), + [anon_sym_PIPE_EQ] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_BANG_EQ] = ACTIONS(516), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(518), + [anon_sym_EQ_GT] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(518), + [anon_sym_default] = ACTIONS(518), + [anon_sym_if] = ACTIONS(518), + [anon_sym_extern] = ACTIONS(518), + [anon_sym_nopanic] = ACTIONS(518), + [anon_sym_loop] = ACTIONS(518), + [anon_sym_match] = ACTIONS(518), + [anon_sym_pub] = ACTIONS(518), + [anon_sym_return] = ACTIONS(518), + [anon_sym_static] = ACTIONS(518), + [anon_sym_while] = ACTIONS(518), + [anon_sym_for] = ACTIONS(518), + [sym_numeric_literal] = ACTIONS(518), + [aux_sym_string_literal_token1] = ACTIONS(516), + [sym_shortstring_literal] = ACTIONS(516), + [anon_sym_true] = ACTIONS(518), + [anon_sym_false] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_identifier] = ACTIONS(518), + [sym_mutable_specifier] = ACTIONS(518), + [sym_super] = ACTIONS(518), [sym_line_comment] = ACTIONS(3), }, - [66] = { - [anon_sym_LBRACE] = ACTIONS(529), - [anon_sym_RBRACE] = ACTIONS(529), - [anon_sym_impl] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(529), - [anon_sym_trait] = ACTIONS(531), - [anon_sym_type] = ACTIONS(531), - [anon_sym_COLON] = ACTIONS(531), - [anon_sym_const] = ACTIONS(531), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_POUND] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_RBRACK] = ACTIONS(529), - [anon_sym_mod] = ACTIONS(531), - [anon_sym_struct] = ACTIONS(531), - [anon_sym_enum] = ACTIONS(531), - [anon_sym_COMMA] = ACTIONS(529), - [anon_sym_fn] = ACTIONS(531), - [anon_sym_DASH_GT] = ACTIONS(529), - [anon_sym_let] = ACTIONS(531), - [anon_sym_use] = ACTIONS(531), - [anon_sym_COLON_COLON] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym__] = ACTIONS(531), - [anon_sym_RPAREN] = ACTIONS(529), - [anon_sym_u8] = ACTIONS(531), - [anon_sym_i8] = ACTIONS(531), - [anon_sym_u16] = ACTIONS(531), - [anon_sym_i16] = ACTIONS(531), - [anon_sym_u32] = ACTIONS(531), - [anon_sym_i32] = ACTIONS(531), - [anon_sym_u64] = ACTIONS(531), - [anon_sym_i64] = ACTIONS(531), - [anon_sym_u128] = ACTIONS(531), - [anon_sym_i128] = ACTIONS(531), - [anon_sym_usize] = ACTIONS(531), - [anon_sym_bool] = ACTIONS(531), - [anon_sym_ByteArray] = ACTIONS(531), - [anon_sym_felt252] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_PERCENT] = ACTIONS(531), - [anon_sym_CARET] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_PIPE] = ACTIONS(531), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_LT_LT] = ACTIONS(529), - [anon_sym_GT_GT] = ACTIONS(529), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(529), - [anon_sym_GT_EQ] = ACTIONS(529), - [anon_sym_LT_EQ] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(529), - [anon_sym_DOT_DOT] = ACTIONS(529), - [anon_sym_DOT] = ACTIONS(531), - [anon_sym_EQ_GT] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(529), - [anon_sym_break] = ACTIONS(531), - [anon_sym_continue] = ACTIONS(531), - [anon_sym_default] = ACTIONS(531), - [anon_sym_if] = ACTIONS(531), - [anon_sym_extern] = ACTIONS(531), - [anon_sym_nopanic] = ACTIONS(531), - [anon_sym_loop] = ACTIONS(531), - [anon_sym_match] = ACTIONS(531), - [anon_sym_pub] = ACTIONS(531), - [anon_sym_return] = ACTIONS(531), - [anon_sym_static] = ACTIONS(531), - [anon_sym_while] = ACTIONS(531), - [anon_sym_for] = ACTIONS(531), - [sym_numeric_literal] = ACTIONS(531), - [aux_sym_string_literal_token1] = ACTIONS(529), - [sym_shortstring_literal] = ACTIONS(529), - [anon_sym_true] = ACTIONS(531), - [anon_sym_false] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(529), - [sym_identifier] = ACTIONS(531), - [sym_mutable_specifier] = ACTIONS(531), - [sym_super] = ACTIONS(531), + [74] = { + [anon_sym_LBRACE] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_impl] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(520), + [anon_sym_trait] = ACTIONS(522), + [anon_sym_type] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(522), + [anon_sym_const] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(522), + [anon_sym_POUND] = ACTIONS(520), + [anon_sym_LBRACK] = ACTIONS(520), + [anon_sym_RBRACK] = ACTIONS(520), + [anon_sym_mod] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(522), + [anon_sym_enum] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(520), + [anon_sym_fn] = ACTIONS(522), + [anon_sym_DASH_GT] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_use] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym__] = ACTIONS(522), + [anon_sym_RPAREN] = ACTIONS(520), + [anon_sym_u8] = ACTIONS(522), + [anon_sym_i8] = ACTIONS(522), + [anon_sym_u16] = ACTIONS(522), + [anon_sym_i16] = ACTIONS(522), + [anon_sym_u32] = ACTIONS(522), + [anon_sym_i32] = ACTIONS(522), + [anon_sym_u64] = ACTIONS(522), + [anon_sym_i64] = ACTIONS(522), + [anon_sym_u128] = ACTIONS(522), + [anon_sym_i128] = ACTIONS(522), + [anon_sym_usize] = ACTIONS(522), + [anon_sym_bool] = ACTIONS(522), + [anon_sym_ByteArray] = ACTIONS(522), + [anon_sym_felt252] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(522), + [anon_sym_GT] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(522), + [anon_sym_DASH] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(522), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_CARET] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(520), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_PIPE] = ACTIONS(522), + [anon_sym_AMP_AMP] = ACTIONS(520), + [anon_sym_PIPE_PIPE] = ACTIONS(520), + [anon_sym_LT_LT] = ACTIONS(520), + [anon_sym_GT_GT] = ACTIONS(520), + [anon_sym_PLUS_EQ] = ACTIONS(520), + [anon_sym_DASH_EQ] = ACTIONS(520), + [anon_sym_STAR_EQ] = ACTIONS(520), + [anon_sym_SLASH_EQ] = ACTIONS(520), + [anon_sym_PERCENT_EQ] = ACTIONS(520), + [anon_sym_CARET_EQ] = ACTIONS(520), + [anon_sym_AMP_EQ] = ACTIONS(520), + [anon_sym_PIPE_EQ] = ACTIONS(520), + [anon_sym_EQ_EQ] = ACTIONS(520), + [anon_sym_BANG_EQ] = ACTIONS(520), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_DOT_DOT] = ACTIONS(520), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_EQ_GT] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_break] = ACTIONS(522), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_default] = ACTIONS(522), + [anon_sym_if] = ACTIONS(522), + [anon_sym_extern] = ACTIONS(522), + [anon_sym_nopanic] = ACTIONS(522), + [anon_sym_loop] = ACTIONS(522), + [anon_sym_match] = ACTIONS(522), + [anon_sym_pub] = ACTIONS(522), + [anon_sym_return] = ACTIONS(522), + [anon_sym_static] = ACTIONS(522), + [anon_sym_while] = ACTIONS(522), + [anon_sym_for] = ACTIONS(522), + [sym_numeric_literal] = ACTIONS(522), + [aux_sym_string_literal_token1] = ACTIONS(520), + [sym_shortstring_literal] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_DOLLAR] = ACTIONS(520), + [sym_identifier] = ACTIONS(522), + [sym_mutable_specifier] = ACTIONS(522), + [sym_super] = ACTIONS(522), [sym_line_comment] = ACTIONS(3), }, - [67] = { - [anon_sym_LBRACE] = ACTIONS(533), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_impl] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(533), - [anon_sym_trait] = ACTIONS(535), - [anon_sym_type] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(535), - [anon_sym_const] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_LBRACK] = ACTIONS(533), - [anon_sym_RBRACK] = ACTIONS(533), - [anon_sym_mod] = ACTIONS(535), - [anon_sym_struct] = ACTIONS(535), - [anon_sym_enum] = ACTIONS(535), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_fn] = ACTIONS(535), - [anon_sym_DASH_GT] = ACTIONS(533), - [anon_sym_let] = ACTIONS(535), - [anon_sym_use] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(533), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym__] = ACTIONS(535), - [anon_sym_RPAREN] = ACTIONS(533), - [anon_sym_u8] = ACTIONS(535), - [anon_sym_i8] = ACTIONS(535), - [anon_sym_u16] = ACTIONS(535), - [anon_sym_i16] = ACTIONS(535), - [anon_sym_u32] = ACTIONS(535), - [anon_sym_i32] = ACTIONS(535), - [anon_sym_u64] = ACTIONS(535), - [anon_sym_i64] = ACTIONS(535), - [anon_sym_u128] = ACTIONS(535), - [anon_sym_i128] = ACTIONS(535), - [anon_sym_usize] = ACTIONS(535), - [anon_sym_bool] = ACTIONS(535), - [anon_sym_ByteArray] = ACTIONS(535), - [anon_sym_felt252] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(535), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(535), - [anon_sym_CARET] = ACTIONS(535), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_AMP_AMP] = ACTIONS(533), - [anon_sym_PIPE_PIPE] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(533), - [anon_sym_GT_GT] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_EQ_EQ] = ACTIONS(533), - [anon_sym_BANG_EQ] = ACTIONS(533), - [anon_sym_GT_EQ] = ACTIONS(533), - [anon_sym_LT_EQ] = ACTIONS(533), - [anon_sym_AT] = ACTIONS(533), - [anon_sym_DOT_DOT] = ACTIONS(533), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_EQ_GT] = ACTIONS(533), - [anon_sym_QMARK] = ACTIONS(533), - [anon_sym_break] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_default] = ACTIONS(535), - [anon_sym_if] = ACTIONS(535), - [anon_sym_extern] = ACTIONS(535), - [anon_sym_nopanic] = ACTIONS(535), - [anon_sym_loop] = ACTIONS(535), - [anon_sym_match] = ACTIONS(535), - [anon_sym_pub] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_static] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [anon_sym_for] = ACTIONS(535), - [sym_numeric_literal] = ACTIONS(535), - [aux_sym_string_literal_token1] = ACTIONS(533), - [sym_shortstring_literal] = ACTIONS(533), - [anon_sym_true] = ACTIONS(535), - [anon_sym_false] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(533), - [sym_identifier] = ACTIONS(535), - [sym_mutable_specifier] = ACTIONS(535), - [sym_super] = ACTIONS(535), + [75] = { + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_impl] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_trait] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_const] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_RBRACK] = ACTIONS(524), + [anon_sym_mod] = ACTIONS(526), + [anon_sym_struct] = ACTIONS(526), + [anon_sym_enum] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(526), + [anon_sym_DASH_GT] = ACTIONS(524), + [anon_sym_let] = ACTIONS(526), + [anon_sym_use] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym__] = ACTIONS(526), + [anon_sym_RPAREN] = ACTIONS(524), + [anon_sym_u8] = ACTIONS(526), + [anon_sym_i8] = ACTIONS(526), + [anon_sym_u16] = ACTIONS(526), + [anon_sym_i16] = ACTIONS(526), + [anon_sym_u32] = ACTIONS(526), + [anon_sym_i32] = ACTIONS(526), + [anon_sym_u64] = ACTIONS(526), + [anon_sym_i64] = ACTIONS(526), + [anon_sym_u128] = ACTIONS(526), + [anon_sym_i128] = ACTIONS(526), + [anon_sym_usize] = ACTIONS(526), + [anon_sym_bool] = ACTIONS(526), + [anon_sym_ByteArray] = ACTIONS(526), + [anon_sym_felt252] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_AMP_AMP] = ACTIONS(524), + [anon_sym_PIPE_PIPE] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(524), + [anon_sym_PLUS_EQ] = ACTIONS(524), + [anon_sym_DASH_EQ] = ACTIONS(524), + [anon_sym_STAR_EQ] = ACTIONS(524), + [anon_sym_SLASH_EQ] = ACTIONS(524), + [anon_sym_PERCENT_EQ] = ACTIONS(524), + [anon_sym_CARET_EQ] = ACTIONS(524), + [anon_sym_AMP_EQ] = ACTIONS(524), + [anon_sym_PIPE_EQ] = ACTIONS(524), + [anon_sym_EQ_EQ] = ACTIONS(524), + [anon_sym_BANG_EQ] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_DOT_DOT] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_EQ_GT] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_break] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_default] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [anon_sym_extern] = ACTIONS(526), + [anon_sym_nopanic] = ACTIONS(526), + [anon_sym_loop] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_pub] = ACTIONS(526), + [anon_sym_return] = ACTIONS(526), + [anon_sym_static] = ACTIONS(526), + [anon_sym_while] = ACTIONS(526), + [anon_sym_for] = ACTIONS(526), + [sym_numeric_literal] = ACTIONS(526), + [aux_sym_string_literal_token1] = ACTIONS(524), + [sym_shortstring_literal] = ACTIONS(524), + [anon_sym_true] = ACTIONS(526), + [anon_sym_false] = ACTIONS(526), + [anon_sym_DOLLAR] = ACTIONS(524), + [sym_identifier] = ACTIONS(526), + [sym_mutable_specifier] = ACTIONS(526), + [sym_super] = ACTIONS(526), [sym_line_comment] = ACTIONS(3), }, - [68] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(627), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1351), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [76] = { + [anon_sym_LBRACE] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(528), + [anon_sym_impl] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_trait] = ACTIONS(530), + [anon_sym_type] = ACTIONS(530), + [anon_sym_COLON] = ACTIONS(530), + [anon_sym_const] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_BANG] = ACTIONS(530), + [anon_sym_POUND] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(528), + [anon_sym_RBRACK] = ACTIONS(528), + [anon_sym_mod] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(530), + [anon_sym_enum] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(528), + [anon_sym_fn] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(528), + [anon_sym_let] = ACTIONS(530), + [anon_sym_use] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(528), + [anon_sym__] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(528), + [anon_sym_u8] = ACTIONS(530), + [anon_sym_i8] = ACTIONS(530), + [anon_sym_u16] = ACTIONS(530), + [anon_sym_i16] = ACTIONS(530), + [anon_sym_u32] = ACTIONS(530), + [anon_sym_i32] = ACTIONS(530), + [anon_sym_u64] = ACTIONS(530), + [anon_sym_i64] = ACTIONS(530), + [anon_sym_u128] = ACTIONS(530), + [anon_sym_i128] = ACTIONS(530), + [anon_sym_usize] = ACTIONS(530), + [anon_sym_bool] = ACTIONS(530), + [anon_sym_ByteArray] = ACTIONS(530), + [anon_sym_felt252] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(528), + [anon_sym_AMP] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(528), + [anon_sym_PIPE_PIPE] = ACTIONS(528), + [anon_sym_LT_LT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_PLUS_EQ] = ACTIONS(528), + [anon_sym_DASH_EQ] = ACTIONS(528), + [anon_sym_STAR_EQ] = ACTIONS(528), + [anon_sym_SLASH_EQ] = ACTIONS(528), + [anon_sym_PERCENT_EQ] = ACTIONS(528), + [anon_sym_CARET_EQ] = ACTIONS(528), + [anon_sym_AMP_EQ] = ACTIONS(528), + [anon_sym_PIPE_EQ] = ACTIONS(528), + [anon_sym_EQ_EQ] = ACTIONS(528), + [anon_sym_BANG_EQ] = ACTIONS(528), + [anon_sym_GT_EQ] = ACTIONS(528), + [anon_sym_LT_EQ] = ACTIONS(528), + [anon_sym_AT] = ACTIONS(528), + [anon_sym_DOT_DOT] = ACTIONS(528), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_EQ_GT] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(528), + [anon_sym_break] = ACTIONS(530), + [anon_sym_continue] = ACTIONS(530), + [anon_sym_default] = ACTIONS(530), + [anon_sym_if] = ACTIONS(530), + [anon_sym_extern] = ACTIONS(530), + [anon_sym_nopanic] = ACTIONS(530), + [anon_sym_loop] = ACTIONS(530), + [anon_sym_match] = ACTIONS(530), + [anon_sym_pub] = ACTIONS(530), + [anon_sym_return] = ACTIONS(530), + [anon_sym_static] = ACTIONS(530), + [anon_sym_while] = ACTIONS(530), + [anon_sym_for] = ACTIONS(530), + [sym_numeric_literal] = ACTIONS(530), + [aux_sym_string_literal_token1] = ACTIONS(528), + [sym_shortstring_literal] = ACTIONS(528), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_DOLLAR] = ACTIONS(528), + [sym_identifier] = ACTIONS(530), + [sym_mutable_specifier] = ACTIONS(530), + [sym_super] = ACTIONS(530), + [sym_line_comment] = ACTIONS(3), + }, + [77] = { + [anon_sym_LBRACE] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_impl] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(532), + [anon_sym_trait] = ACTIONS(534), + [anon_sym_type] = ACTIONS(534), + [anon_sym_COLON] = ACTIONS(534), + [anon_sym_const] = ACTIONS(534), + [anon_sym_EQ] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_RBRACK] = ACTIONS(532), + [anon_sym_mod] = ACTIONS(534), + [anon_sym_struct] = ACTIONS(534), + [anon_sym_enum] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(532), + [anon_sym_fn] = ACTIONS(534), + [anon_sym_DASH_GT] = ACTIONS(532), + [anon_sym_let] = ACTIONS(534), + [anon_sym_use] = ACTIONS(534), + [anon_sym_COLON_COLON] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym__] = ACTIONS(534), + [anon_sym_RPAREN] = ACTIONS(532), + [anon_sym_u8] = ACTIONS(534), + [anon_sym_i8] = ACTIONS(534), + [anon_sym_u16] = ACTIONS(534), + [anon_sym_i16] = ACTIONS(534), + [anon_sym_u32] = ACTIONS(534), + [anon_sym_i32] = ACTIONS(534), + [anon_sym_u64] = ACTIONS(534), + [anon_sym_i64] = ACTIONS(534), + [anon_sym_u128] = ACTIONS(534), + [anon_sym_i128] = ACTIONS(534), + [anon_sym_usize] = ACTIONS(534), + [anon_sym_bool] = ACTIONS(534), + [anon_sym_ByteArray] = ACTIONS(534), + [anon_sym_felt252] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(534), + [anon_sym_TILDE] = ACTIONS(532), + [anon_sym_AMP] = ACTIONS(534), + [anon_sym_PIPE] = ACTIONS(534), + [anon_sym_AMP_AMP] = ACTIONS(532), + [anon_sym_PIPE_PIPE] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(532), + [anon_sym_PLUS_EQ] = ACTIONS(532), + [anon_sym_DASH_EQ] = ACTIONS(532), + [anon_sym_STAR_EQ] = ACTIONS(532), + [anon_sym_SLASH_EQ] = ACTIONS(532), + [anon_sym_PERCENT_EQ] = ACTIONS(532), + [anon_sym_CARET_EQ] = ACTIONS(532), + [anon_sym_AMP_EQ] = ACTIONS(532), + [anon_sym_PIPE_EQ] = ACTIONS(532), + [anon_sym_EQ_EQ] = ACTIONS(532), + [anon_sym_BANG_EQ] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(532), + [anon_sym_DOT_DOT] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(534), + [anon_sym_EQ_GT] = ACTIONS(532), + [anon_sym_QMARK] = ACTIONS(532), + [anon_sym_break] = ACTIONS(534), + [anon_sym_continue] = ACTIONS(534), + [anon_sym_default] = ACTIONS(534), + [anon_sym_if] = ACTIONS(534), + [anon_sym_extern] = ACTIONS(534), + [anon_sym_nopanic] = ACTIONS(534), + [anon_sym_loop] = ACTIONS(534), + [anon_sym_match] = ACTIONS(534), + [anon_sym_pub] = ACTIONS(534), + [anon_sym_return] = ACTIONS(534), + [anon_sym_static] = ACTIONS(534), + [anon_sym_while] = ACTIONS(534), + [anon_sym_for] = ACTIONS(534), + [sym_numeric_literal] = ACTIONS(534), + [aux_sym_string_literal_token1] = ACTIONS(532), + [sym_shortstring_literal] = ACTIONS(532), + [anon_sym_true] = ACTIONS(534), + [anon_sym_false] = ACTIONS(534), + [anon_sym_DOLLAR] = ACTIONS(532), + [sym_identifier] = ACTIONS(534), + [sym_mutable_specifier] = ACTIONS(534), + [sym_super] = ACTIONS(534), + [sym_line_comment] = ACTIONS(3), + }, + [78] = { + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_impl] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_trait] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_COLON] = ACTIONS(538), + [anon_sym_const] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_RBRACK] = ACTIONS(536), + [anon_sym_mod] = ACTIONS(538), + [anon_sym_struct] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(538), + [anon_sym_COMMA] = ACTIONS(536), + [anon_sym_fn] = ACTIONS(538), + [anon_sym_DASH_GT] = ACTIONS(536), + [anon_sym_let] = ACTIONS(538), + [anon_sym_use] = ACTIONS(538), + [anon_sym_COLON_COLON] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym__] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(536), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_ByteArray] = ACTIONS(538), + [anon_sym_felt252] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(538), + [anon_sym_TILDE] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_AMP_AMP] = ACTIONS(536), + [anon_sym_PIPE_PIPE] = ACTIONS(536), + [anon_sym_LT_LT] = ACTIONS(536), + [anon_sym_GT_GT] = ACTIONS(536), + [anon_sym_PLUS_EQ] = ACTIONS(536), + [anon_sym_DASH_EQ] = ACTIONS(536), + [anon_sym_STAR_EQ] = ACTIONS(536), + [anon_sym_SLASH_EQ] = ACTIONS(536), + [anon_sym_PERCENT_EQ] = ACTIONS(536), + [anon_sym_CARET_EQ] = ACTIONS(536), + [anon_sym_AMP_EQ] = ACTIONS(536), + [anon_sym_PIPE_EQ] = ACTIONS(536), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(536), + [anon_sym_DOT_DOT] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(538), + [anon_sym_EQ_GT] = ACTIONS(536), + [anon_sym_QMARK] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_default] = ACTIONS(538), + [anon_sym_if] = ACTIONS(538), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_nopanic] = ACTIONS(538), + [anon_sym_loop] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_pub] = ACTIONS(538), + [anon_sym_return] = ACTIONS(538), + [anon_sym_static] = ACTIONS(538), + [anon_sym_while] = ACTIONS(538), + [anon_sym_for] = ACTIONS(538), + [sym_numeric_literal] = ACTIONS(538), + [aux_sym_string_literal_token1] = ACTIONS(536), + [sym_shortstring_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(538), + [anon_sym_false] = ACTIONS(538), + [anon_sym_DOLLAR] = ACTIONS(536), + [sym_identifier] = ACTIONS(538), + [sym_mutable_specifier] = ACTIONS(538), + [sym_super] = ACTIONS(538), + [sym_line_comment] = ACTIONS(3), + }, + [79] = { + [anon_sym_LBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_impl] = ACTIONS(542), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_trait] = ACTIONS(542), + [anon_sym_type] = ACTIONS(542), + [anon_sym_COLON] = ACTIONS(542), + [anon_sym_const] = ACTIONS(542), + [anon_sym_EQ] = ACTIONS(542), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_POUND] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_RBRACK] = ACTIONS(540), + [anon_sym_mod] = ACTIONS(542), + [anon_sym_struct] = ACTIONS(542), + [anon_sym_enum] = ACTIONS(542), + [anon_sym_COMMA] = ACTIONS(540), + [anon_sym_fn] = ACTIONS(542), + [anon_sym_DASH_GT] = ACTIONS(540), + [anon_sym_let] = ACTIONS(542), + [anon_sym_use] = ACTIONS(542), + [anon_sym_COLON_COLON] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(542), + [anon_sym_LPAREN] = ACTIONS(540), + [anon_sym__] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_u8] = ACTIONS(542), + [anon_sym_i8] = ACTIONS(542), + [anon_sym_u16] = ACTIONS(542), + [anon_sym_i16] = ACTIONS(542), + [anon_sym_u32] = ACTIONS(542), + [anon_sym_i32] = ACTIONS(542), + [anon_sym_u64] = ACTIONS(542), + [anon_sym_i64] = ACTIONS(542), + [anon_sym_u128] = ACTIONS(542), + [anon_sym_i128] = ACTIONS(542), + [anon_sym_usize] = ACTIONS(542), + [anon_sym_bool] = ACTIONS(542), + [anon_sym_ByteArray] = ACTIONS(542), + [anon_sym_felt252] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(542), + [anon_sym_GT] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(542), + [anon_sym_DASH] = ACTIONS(542), + [anon_sym_SLASH] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(542), + [anon_sym_CARET] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(542), + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(540), + [anon_sym_PIPE_PIPE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(540), + [anon_sym_GT_GT] = ACTIONS(540), + [anon_sym_PLUS_EQ] = ACTIONS(540), + [anon_sym_DASH_EQ] = ACTIONS(540), + [anon_sym_STAR_EQ] = ACTIONS(540), + [anon_sym_SLASH_EQ] = ACTIONS(540), + [anon_sym_PERCENT_EQ] = ACTIONS(540), + [anon_sym_CARET_EQ] = ACTIONS(540), + [anon_sym_AMP_EQ] = ACTIONS(540), + [anon_sym_PIPE_EQ] = ACTIONS(540), + [anon_sym_EQ_EQ] = ACTIONS(540), + [anon_sym_BANG_EQ] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(540), + [anon_sym_LT_EQ] = ACTIONS(540), + [anon_sym_AT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT] = ACTIONS(542), + [anon_sym_EQ_GT] = ACTIONS(540), + [anon_sym_QMARK] = ACTIONS(540), + [anon_sym_break] = ACTIONS(542), + [anon_sym_continue] = ACTIONS(542), + [anon_sym_default] = ACTIONS(542), + [anon_sym_if] = ACTIONS(542), + [anon_sym_extern] = ACTIONS(542), + [anon_sym_nopanic] = ACTIONS(542), + [anon_sym_loop] = ACTIONS(542), + [anon_sym_match] = ACTIONS(542), + [anon_sym_pub] = ACTIONS(542), + [anon_sym_return] = ACTIONS(542), + [anon_sym_static] = ACTIONS(542), + [anon_sym_while] = ACTIONS(542), + [anon_sym_for] = ACTIONS(542), + [sym_numeric_literal] = ACTIONS(544), + [aux_sym_string_literal_token1] = ACTIONS(540), + [sym_shortstring_literal] = ACTIONS(540), + [anon_sym_true] = ACTIONS(542), + [anon_sym_false] = ACTIONS(542), + [anon_sym_DOLLAR] = ACTIONS(540), + [sym_identifier] = ACTIONS(542), + [sym_mutable_specifier] = ACTIONS(542), + [sym_super] = ACTIONS(542), + [sym_line_comment] = ACTIONS(3), + }, + [80] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(95), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(654), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1428), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(95), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(547), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COMMA] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(551), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_RPAREN] = ACTIONS(553), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -17543,14 +18911,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -17560,60 +18928,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(555), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [69] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(98), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(620), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1364), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(98), + [81] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(92), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(671), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1374), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(92), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(547), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(557), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(559), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -17632,14 +19002,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -17649,59 +19019,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(555), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [70] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(102), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(680), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1549), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(102), + [82] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(97), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(751), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1540), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(97), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(547), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(551), + [anon_sym_RPAREN] = ACTIONS(561), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -17720,14 +19092,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -17737,411 +19109,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_impl] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(553), - [anon_sym_trait] = ACTIONS(555), - [anon_sym_type] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(555), - [anon_sym_POUND] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_RBRACK] = ACTIONS(553), - [anon_sym_mod] = ACTIONS(555), - [anon_sym_struct] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(553), - [anon_sym_fn] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_use] = ACTIONS(555), - [anon_sym_COLON_COLON] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(553), - [anon_sym_RPAREN] = ACTIONS(553), - [anon_sym_u8] = ACTIONS(555), - [anon_sym_i8] = ACTIONS(555), - [anon_sym_u16] = ACTIONS(555), - [anon_sym_i16] = ACTIONS(555), - [anon_sym_u32] = ACTIONS(555), - [anon_sym_i32] = ACTIONS(555), - [anon_sym_u64] = ACTIONS(555), - [anon_sym_i64] = ACTIONS(555), - [anon_sym_u128] = ACTIONS(555), - [anon_sym_i128] = ACTIONS(555), - [anon_sym_usize] = ACTIONS(555), - [anon_sym_bool] = ACTIONS(555), - [anon_sym_ByteArray] = ACTIONS(555), - [anon_sym_felt252] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(553), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_AMP] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(553), - [anon_sym_PIPE_PIPE] = ACTIONS(553), - [anon_sym_LT_LT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(553), - [anon_sym_PLUS_EQ] = ACTIONS(553), - [anon_sym_DASH_EQ] = ACTIONS(553), - [anon_sym_STAR_EQ] = ACTIONS(553), - [anon_sym_SLASH_EQ] = ACTIONS(553), - [anon_sym_PERCENT_EQ] = ACTIONS(553), - [anon_sym_EQ_EQ] = ACTIONS(553), - [anon_sym_BANG_EQ] = ACTIONS(553), - [anon_sym_GT_EQ] = ACTIONS(553), - [anon_sym_LT_EQ] = ACTIONS(553), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(553), - [anon_sym_QMARK] = ACTIONS(553), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_default] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_extern] = ACTIONS(555), - [anon_sym_loop] = ACTIONS(555), - [anon_sym_match] = ACTIONS(555), - [anon_sym_pub] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_static] = ACTIONS(555), - [anon_sym_while] = ACTIONS(555), - [anon_sym_for] = ACTIONS(555), - [sym_numeric_literal] = ACTIONS(555), - [aux_sym_string_literal_token1] = ACTIONS(553), - [sym_shortstring_literal] = ACTIONS(553), - [anon_sym_true] = ACTIONS(555), - [anon_sym_false] = ACTIONS(555), - [anon_sym_move] = ACTIONS(555), - [anon_sym_ref] = ACTIONS(555), [sym_identifier] = ACTIONS(555), - [sym_super] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(557), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_impl] = ACTIONS(559), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_trait] = ACTIONS(559), - [anon_sym_type] = ACTIONS(559), - [anon_sym_const] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(559), - [anon_sym_BANG] = ACTIONS(559), - [anon_sym_POUND] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_mod] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(559), - [anon_sym_enum] = ACTIONS(559), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_fn] = ACTIONS(559), - [anon_sym_let] = ACTIONS(559), - [anon_sym_use] = ACTIONS(559), - [anon_sym_COLON_COLON] = ACTIONS(557), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_u8] = ACTIONS(559), - [anon_sym_i8] = ACTIONS(559), - [anon_sym_u16] = ACTIONS(559), - [anon_sym_i16] = ACTIONS(559), - [anon_sym_u32] = ACTIONS(559), - [anon_sym_i32] = ACTIONS(559), - [anon_sym_u64] = ACTIONS(559), - [anon_sym_i64] = ACTIONS(559), - [anon_sym_u128] = ACTIONS(559), - [anon_sym_i128] = ACTIONS(559), - [anon_sym_usize] = ACTIONS(559), - [anon_sym_bool] = ACTIONS(559), - [anon_sym_ByteArray] = ACTIONS(559), - [anon_sym_felt252] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(559), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(557), - [anon_sym_PLUS_EQ] = ACTIONS(557), - [anon_sym_DASH_EQ] = ACTIONS(557), - [anon_sym_STAR_EQ] = ACTIONS(557), - [anon_sym_SLASH_EQ] = ACTIONS(557), - [anon_sym_PERCENT_EQ] = ACTIONS(557), - [anon_sym_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(557), - [anon_sym_QMARK] = ACTIONS(557), - [anon_sym_break] = ACTIONS(559), - [anon_sym_continue] = ACTIONS(559), - [anon_sym_default] = ACTIONS(559), - [anon_sym_if] = ACTIONS(559), - [anon_sym_extern] = ACTIONS(559), - [anon_sym_loop] = ACTIONS(559), - [anon_sym_match] = ACTIONS(559), - [anon_sym_pub] = ACTIONS(559), - [anon_sym_return] = ACTIONS(559), - [anon_sym_static] = ACTIONS(559), - [anon_sym_while] = ACTIONS(559), - [anon_sym_for] = ACTIONS(559), - [sym_numeric_literal] = ACTIONS(559), - [aux_sym_string_literal_token1] = ACTIONS(557), - [sym_shortstring_literal] = ACTIONS(557), - [anon_sym_true] = ACTIONS(559), - [anon_sym_false] = ACTIONS(559), - [anon_sym_move] = ACTIONS(559), - [anon_sym_ref] = ACTIONS(559), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(559), - [sym_line_comment] = ACTIONS(3), - }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_impl] = ACTIONS(563), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_trait] = ACTIONS(563), - [anon_sym_type] = ACTIONS(563), - [anon_sym_const] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(561), - [anon_sym_RBRACK] = ACTIONS(561), - [anon_sym_mod] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(563), - [anon_sym_let] = ACTIONS(563), - [anon_sym_use] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_u8] = ACTIONS(563), - [anon_sym_i8] = ACTIONS(563), - [anon_sym_u16] = ACTIONS(563), - [anon_sym_i16] = ACTIONS(563), - [anon_sym_u32] = ACTIONS(563), - [anon_sym_i32] = ACTIONS(563), - [anon_sym_u64] = ACTIONS(563), - [anon_sym_i64] = ACTIONS(563), - [anon_sym_u128] = ACTIONS(563), - [anon_sym_i128] = ACTIONS(563), - [anon_sym_usize] = ACTIONS(563), - [anon_sym_bool] = ACTIONS(563), - [anon_sym_ByteArray] = ACTIONS(563), - [anon_sym_felt252] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_CARET] = ACTIONS(561), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(561), - [anon_sym_PIPE_PIPE] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(561), - [anon_sym_DASH_EQ] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(561), - [anon_sym_SLASH_EQ] = ACTIONS(561), - [anon_sym_PERCENT_EQ] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_BANG_EQ] = ACTIONS(561), - [anon_sym_GT_EQ] = ACTIONS(561), - [anon_sym_LT_EQ] = ACTIONS(561), - [anon_sym_AT] = ACTIONS(561), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_default] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_extern] = ACTIONS(563), - [anon_sym_loop] = ACTIONS(563), - [anon_sym_match] = ACTIONS(563), - [anon_sym_pub] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_static] = ACTIONS(563), - [anon_sym_while] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [sym_numeric_literal] = ACTIONS(563), - [aux_sym_string_literal_token1] = ACTIONS(561), - [sym_shortstring_literal] = ACTIONS(561), - [anon_sym_true] = ACTIONS(563), - [anon_sym_false] = ACTIONS(563), - [anon_sym_move] = ACTIONS(563), - [anon_sym_ref] = ACTIONS(563), - [sym_identifier] = ACTIONS(563), - [sym_super] = ACTIONS(563), - [sym_line_comment] = ACTIONS(3), - }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(567), - [anon_sym_type] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(567), - [anon_sym_struct] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_let] = ACTIONS(567), - [anon_sym_use] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_u8] = ACTIONS(567), - [anon_sym_i8] = ACTIONS(567), - [anon_sym_u16] = ACTIONS(567), - [anon_sym_i16] = ACTIONS(567), - [anon_sym_u32] = ACTIONS(567), - [anon_sym_i32] = ACTIONS(567), - [anon_sym_u64] = ACTIONS(567), - [anon_sym_i64] = ACTIONS(567), - [anon_sym_u128] = ACTIONS(567), - [anon_sym_i128] = ACTIONS(567), - [anon_sym_usize] = ACTIONS(567), - [anon_sym_bool] = ACTIONS(567), - [anon_sym_ByteArray] = ACTIONS(567), - [anon_sym_felt252] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(565), - [anon_sym_PIPE_PIPE] = ACTIONS(565), - [anon_sym_LT_LT] = ACTIONS(565), - [anon_sym_GT_GT] = ACTIONS(565), - [anon_sym_PLUS_EQ] = ACTIONS(565), - [anon_sym_DASH_EQ] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(565), - [anon_sym_SLASH_EQ] = ACTIONS(565), - [anon_sym_PERCENT_EQ] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(565), - [anon_sym_BANG_EQ] = ACTIONS(565), - [anon_sym_GT_EQ] = ACTIONS(565), - [anon_sym_LT_EQ] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_default] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_extern] = ACTIONS(567), - [anon_sym_loop] = ACTIONS(567), - [anon_sym_match] = ACTIONS(567), - [anon_sym_pub] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_static] = ACTIONS(567), - [anon_sym_while] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [sym_numeric_literal] = ACTIONS(567), - [aux_sym_string_literal_token1] = ACTIONS(565), - [sym_shortstring_literal] = ACTIONS(565), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_move] = ACTIONS(567), - [anon_sym_ref] = ACTIONS(567), - [sym_identifier] = ACTIONS(567), - [sym_super] = ACTIONS(567), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [75] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(102), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(680), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1549), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(102), + [83] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(97), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(751), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1540), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(97), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(547), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(563), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18160,14 +19182,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -18177,499 +19199,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(555), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(521), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_impl] = ACTIONS(523), - [anon_sym_SEMI] = ACTIONS(521), - [anon_sym_trait] = ACTIONS(523), - [anon_sym_type] = ACTIONS(523), - [anon_sym_const] = ACTIONS(523), - [anon_sym_EQ] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(523), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_RBRACK] = ACTIONS(521), - [anon_sym_mod] = ACTIONS(523), - [anon_sym_struct] = ACTIONS(523), - [anon_sym_enum] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_fn] = ACTIONS(523), - [anon_sym_let] = ACTIONS(523), - [anon_sym_use] = ACTIONS(523), - [anon_sym_COLON_COLON] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_u8] = ACTIONS(523), - [anon_sym_i8] = ACTIONS(523), - [anon_sym_u16] = ACTIONS(523), - [anon_sym_i16] = ACTIONS(523), - [anon_sym_u32] = ACTIONS(523), - [anon_sym_i32] = ACTIONS(523), - [anon_sym_u64] = ACTIONS(523), - [anon_sym_i64] = ACTIONS(523), - [anon_sym_u128] = ACTIONS(523), - [anon_sym_i128] = ACTIONS(523), - [anon_sym_usize] = ACTIONS(523), - [anon_sym_bool] = ACTIONS(523), - [anon_sym_ByteArray] = ACTIONS(523), - [anon_sym_felt252] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(523), - [anon_sym_GT] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(523), - [anon_sym_DASH] = ACTIONS(523), - [anon_sym_SLASH] = ACTIONS(523), - [anon_sym_PERCENT] = ACTIONS(523), - [anon_sym_CARET] = ACTIONS(521), - [anon_sym_TILDE] = ACTIONS(521), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(523), - [anon_sym_AMP_AMP] = ACTIONS(521), - [anon_sym_PIPE_PIPE] = ACTIONS(521), - [anon_sym_LT_LT] = ACTIONS(521), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_PLUS_EQ] = ACTIONS(521), - [anon_sym_DASH_EQ] = ACTIONS(521), - [anon_sym_STAR_EQ] = ACTIONS(521), - [anon_sym_SLASH_EQ] = ACTIONS(521), - [anon_sym_PERCENT_EQ] = ACTIONS(521), - [anon_sym_EQ_EQ] = ACTIONS(521), - [anon_sym_BANG_EQ] = ACTIONS(521), - [anon_sym_GT_EQ] = ACTIONS(521), - [anon_sym_LT_EQ] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(521), - [anon_sym_DOT] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(521), - [anon_sym_break] = ACTIONS(523), - [anon_sym_continue] = ACTIONS(523), - [anon_sym_default] = ACTIONS(523), - [anon_sym_if] = ACTIONS(523), - [anon_sym_extern] = ACTIONS(523), - [anon_sym_loop] = ACTIONS(523), - [anon_sym_match] = ACTIONS(523), - [anon_sym_pub] = ACTIONS(523), - [anon_sym_return] = ACTIONS(523), - [anon_sym_static] = ACTIONS(523), - [anon_sym_while] = ACTIONS(523), - [anon_sym_for] = ACTIONS(523), - [sym_numeric_literal] = ACTIONS(523), - [aux_sym_string_literal_token1] = ACTIONS(521), - [sym_shortstring_literal] = ACTIONS(521), - [anon_sym_true] = ACTIONS(523), - [anon_sym_false] = ACTIONS(523), - [anon_sym_move] = ACTIONS(523), - [anon_sym_ref] = ACTIONS(523), - [sym_identifier] = ACTIONS(523), - [sym_super] = ACTIONS(523), - [sym_line_comment] = ACTIONS(3), - }, - [77] = { - [ts_builtin_sym_end] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(529), - [anon_sym_RBRACE] = ACTIONS(529), - [anon_sym_impl] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(529), - [anon_sym_trait] = ACTIONS(531), - [anon_sym_type] = ACTIONS(531), - [anon_sym_const] = ACTIONS(531), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_POUND] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_RBRACK] = ACTIONS(529), - [anon_sym_mod] = ACTIONS(531), - [anon_sym_struct] = ACTIONS(531), - [anon_sym_enum] = ACTIONS(531), - [anon_sym_COMMA] = ACTIONS(529), - [anon_sym_fn] = ACTIONS(531), - [anon_sym_let] = ACTIONS(531), - [anon_sym_use] = ACTIONS(531), - [anon_sym_COLON_COLON] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_RPAREN] = ACTIONS(529), - [anon_sym_u8] = ACTIONS(531), - [anon_sym_i8] = ACTIONS(531), - [anon_sym_u16] = ACTIONS(531), - [anon_sym_i16] = ACTIONS(531), - [anon_sym_u32] = ACTIONS(531), - [anon_sym_i32] = ACTIONS(531), - [anon_sym_u64] = ACTIONS(531), - [anon_sym_i64] = ACTIONS(531), - [anon_sym_u128] = ACTIONS(531), - [anon_sym_i128] = ACTIONS(531), - [anon_sym_usize] = ACTIONS(531), - [anon_sym_bool] = ACTIONS(531), - [anon_sym_ByteArray] = ACTIONS(531), - [anon_sym_felt252] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_PERCENT] = ACTIONS(531), - [anon_sym_CARET] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_PIPE] = ACTIONS(531), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_LT_LT] = ACTIONS(529), - [anon_sym_GT_GT] = ACTIONS(529), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(529), - [anon_sym_GT_EQ] = ACTIONS(529), - [anon_sym_LT_EQ] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(529), - [anon_sym_DOT] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(529), - [anon_sym_break] = ACTIONS(531), - [anon_sym_continue] = ACTIONS(531), - [anon_sym_default] = ACTIONS(531), - [anon_sym_if] = ACTIONS(531), - [anon_sym_extern] = ACTIONS(531), - [anon_sym_loop] = ACTIONS(531), - [anon_sym_match] = ACTIONS(531), - [anon_sym_pub] = ACTIONS(531), - [anon_sym_return] = ACTIONS(531), - [anon_sym_static] = ACTIONS(531), - [anon_sym_while] = ACTIONS(531), - [anon_sym_for] = ACTIONS(531), - [sym_numeric_literal] = ACTIONS(531), - [aux_sym_string_literal_token1] = ACTIONS(529), - [sym_shortstring_literal] = ACTIONS(529), - [anon_sym_true] = ACTIONS(531), - [anon_sym_false] = ACTIONS(531), - [anon_sym_move] = ACTIONS(531), - [anon_sym_ref] = ACTIONS(531), - [sym_identifier] = ACTIONS(531), - [sym_super] = ACTIONS(531), - [sym_line_comment] = ACTIONS(3), - }, - [78] = { - [ts_builtin_sym_end] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(571), - [anon_sym_RBRACE] = ACTIONS(571), - [anon_sym_impl] = ACTIONS(573), - [anon_sym_SEMI] = ACTIONS(571), - [anon_sym_trait] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), - [anon_sym_const] = ACTIONS(573), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_POUND] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(571), - [anon_sym_mod] = ACTIONS(573), - [anon_sym_struct] = ACTIONS(573), - [anon_sym_enum] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(571), - [anon_sym_fn] = ACTIONS(573), - [anon_sym_let] = ACTIONS(573), - [anon_sym_use] = ACTIONS(573), - [anon_sym_COLON_COLON] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(571), - [anon_sym_u8] = ACTIONS(573), - [anon_sym_i8] = ACTIONS(573), - [anon_sym_u16] = ACTIONS(573), - [anon_sym_i16] = ACTIONS(573), - [anon_sym_u32] = ACTIONS(573), - [anon_sym_i32] = ACTIONS(573), - [anon_sym_u64] = ACTIONS(573), - [anon_sym_i64] = ACTIONS(573), - [anon_sym_u128] = ACTIONS(573), - [anon_sym_i128] = ACTIONS(573), - [anon_sym_usize] = ACTIONS(573), - [anon_sym_bool] = ACTIONS(573), - [anon_sym_ByteArray] = ACTIONS(573), - [anon_sym_felt252] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(571), - [anon_sym_PIPE_PIPE] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(571), - [anon_sym_GT_GT] = ACTIONS(571), - [anon_sym_PLUS_EQ] = ACTIONS(571), - [anon_sym_DASH_EQ] = ACTIONS(571), - [anon_sym_STAR_EQ] = ACTIONS(571), - [anon_sym_SLASH_EQ] = ACTIONS(571), - [anon_sym_PERCENT_EQ] = ACTIONS(571), - [anon_sym_EQ_EQ] = ACTIONS(571), - [anon_sym_BANG_EQ] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(571), - [anon_sym_LT_EQ] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_DOT] = ACTIONS(571), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_break] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_default] = ACTIONS(573), - [anon_sym_if] = ACTIONS(573), - [anon_sym_extern] = ACTIONS(573), - [anon_sym_loop] = ACTIONS(573), - [anon_sym_match] = ACTIONS(573), - [anon_sym_pub] = ACTIONS(573), - [anon_sym_return] = ACTIONS(573), - [anon_sym_static] = ACTIONS(573), - [anon_sym_while] = ACTIONS(573), - [anon_sym_for] = ACTIONS(573), - [sym_numeric_literal] = ACTIONS(573), - [aux_sym_string_literal_token1] = ACTIONS(571), - [sym_shortstring_literal] = ACTIONS(571), - [anon_sym_true] = ACTIONS(573), - [anon_sym_false] = ACTIONS(573), - [anon_sym_move] = ACTIONS(573), - [anon_sym_ref] = ACTIONS(573), - [sym_identifier] = ACTIONS(573), - [sym_super] = ACTIONS(573), - [sym_line_comment] = ACTIONS(3), - }, - [79] = { - [ts_builtin_sym_end] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(575), - [anon_sym_impl] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(575), - [anon_sym_trait] = ACTIONS(577), - [anon_sym_type] = ACTIONS(577), - [anon_sym_const] = ACTIONS(577), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_POUND] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(575), - [anon_sym_RBRACK] = ACTIONS(575), - [anon_sym_mod] = ACTIONS(577), - [anon_sym_struct] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(577), - [anon_sym_COMMA] = ACTIONS(575), - [anon_sym_fn] = ACTIONS(577), - [anon_sym_let] = ACTIONS(577), - [anon_sym_use] = ACTIONS(577), - [anon_sym_COLON_COLON] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_RPAREN] = ACTIONS(575), - [anon_sym_u8] = ACTIONS(577), - [anon_sym_i8] = ACTIONS(577), - [anon_sym_u16] = ACTIONS(577), - [anon_sym_i16] = ACTIONS(577), - [anon_sym_u32] = ACTIONS(577), - [anon_sym_i32] = ACTIONS(577), - [anon_sym_u64] = ACTIONS(577), - [anon_sym_i64] = ACTIONS(577), - [anon_sym_u128] = ACTIONS(577), - [anon_sym_i128] = ACTIONS(577), - [anon_sym_usize] = ACTIONS(577), - [anon_sym_bool] = ACTIONS(577), - [anon_sym_ByteArray] = ACTIONS(577), - [anon_sym_felt252] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(575), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_PIPE_PIPE] = ACTIONS(575), - [anon_sym_LT_LT] = ACTIONS(575), - [anon_sym_GT_GT] = ACTIONS(575), - [anon_sym_PLUS_EQ] = ACTIONS(575), - [anon_sym_DASH_EQ] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(575), - [anon_sym_SLASH_EQ] = ACTIONS(575), - [anon_sym_PERCENT_EQ] = ACTIONS(575), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_BANG_EQ] = ACTIONS(575), - [anon_sym_GT_EQ] = ACTIONS(575), - [anon_sym_LT_EQ] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(575), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_continue] = ACTIONS(577), - [anon_sym_default] = ACTIONS(577), - [anon_sym_if] = ACTIONS(577), - [anon_sym_extern] = ACTIONS(577), - [anon_sym_loop] = ACTIONS(577), - [anon_sym_match] = ACTIONS(577), - [anon_sym_pub] = ACTIONS(577), - [anon_sym_return] = ACTIONS(577), - [anon_sym_static] = ACTIONS(577), - [anon_sym_while] = ACTIONS(577), - [anon_sym_for] = ACTIONS(577), - [sym_numeric_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(575), - [sym_shortstring_literal] = ACTIONS(575), - [anon_sym_true] = ACTIONS(577), - [anon_sym_false] = ACTIONS(577), - [anon_sym_move] = ACTIONS(577), - [anon_sym_ref] = ACTIONS(577), - [sym_identifier] = ACTIONS(577), - [sym_super] = ACTIONS(577), - [sym_line_comment] = ACTIONS(3), - }, - [80] = { - [ts_builtin_sym_end] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(579), - [anon_sym_RBRACE] = ACTIONS(579), - [anon_sym_impl] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_trait] = ACTIONS(581), - [anon_sym_type] = ACTIONS(581), - [anon_sym_const] = ACTIONS(581), - [anon_sym_EQ] = ACTIONS(581), - [anon_sym_BANG] = ACTIONS(581), - [anon_sym_POUND] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_RBRACK] = ACTIONS(579), - [anon_sym_mod] = ACTIONS(581), - [anon_sym_struct] = ACTIONS(581), - [anon_sym_enum] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_fn] = ACTIONS(581), - [anon_sym_let] = ACTIONS(581), - [anon_sym_use] = ACTIONS(581), - [anon_sym_COLON_COLON] = ACTIONS(579), - [anon_sym_STAR] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_u8] = ACTIONS(581), - [anon_sym_i8] = ACTIONS(581), - [anon_sym_u16] = ACTIONS(581), - [anon_sym_i16] = ACTIONS(581), - [anon_sym_u32] = ACTIONS(581), - [anon_sym_i32] = ACTIONS(581), - [anon_sym_u64] = ACTIONS(581), - [anon_sym_i64] = ACTIONS(581), - [anon_sym_u128] = ACTIONS(581), - [anon_sym_i128] = ACTIONS(581), - [anon_sym_usize] = ACTIONS(581), - [anon_sym_bool] = ACTIONS(581), - [anon_sym_ByteArray] = ACTIONS(581), - [anon_sym_felt252] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_PLUS_EQ] = ACTIONS(579), - [anon_sym_DASH_EQ] = ACTIONS(579), - [anon_sym_STAR_EQ] = ACTIONS(579), - [anon_sym_SLASH_EQ] = ACTIONS(579), - [anon_sym_PERCENT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(579), - [anon_sym_break] = ACTIONS(581), - [anon_sym_continue] = ACTIONS(581), - [anon_sym_default] = ACTIONS(581), - [anon_sym_if] = ACTIONS(581), - [anon_sym_extern] = ACTIONS(581), - [anon_sym_loop] = ACTIONS(581), - [anon_sym_match] = ACTIONS(581), - [anon_sym_pub] = ACTIONS(581), - [anon_sym_return] = ACTIONS(581), - [anon_sym_static] = ACTIONS(581), - [anon_sym_while] = ACTIONS(581), - [anon_sym_for] = ACTIONS(581), - [sym_numeric_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_shortstring_literal] = ACTIONS(579), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), - [anon_sym_move] = ACTIONS(581), - [anon_sym_ref] = ACTIONS(581), - [sym_identifier] = ACTIONS(581), - [sym_super] = ACTIONS(581), - [sym_line_comment] = ACTIONS(3), - }, - [81] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(102), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(680), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1549), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(102), + [84] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(97), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(751), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1540), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(97), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(547), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_RPAREN] = ACTIONS(565), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18688,14 +19272,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -18705,235 +19289,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(555), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [82] = { - [ts_builtin_sym_end] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_impl] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_trait] = ACTIONS(587), - [anon_sym_type] = ACTIONS(587), - [anon_sym_const] = ACTIONS(587), - [anon_sym_EQ] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_RBRACK] = ACTIONS(585), - [anon_sym_mod] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(587), - [anon_sym_enum] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(587), - [anon_sym_let] = ACTIONS(587), - [anon_sym_use] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_u8] = ACTIONS(587), - [anon_sym_i8] = ACTIONS(587), - [anon_sym_u16] = ACTIONS(587), - [anon_sym_i16] = ACTIONS(587), - [anon_sym_u32] = ACTIONS(587), - [anon_sym_i32] = ACTIONS(587), - [anon_sym_u64] = ACTIONS(587), - [anon_sym_i64] = ACTIONS(587), - [anon_sym_u128] = ACTIONS(587), - [anon_sym_i128] = ACTIONS(587), - [anon_sym_usize] = ACTIONS(587), - [anon_sym_bool] = ACTIONS(587), - [anon_sym_ByteArray] = ACTIONS(587), - [anon_sym_felt252] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(587), - [anon_sym_GT] = ACTIONS(587), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(587), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [anon_sym_DASH_EQ] = ACTIONS(585), - [anon_sym_STAR_EQ] = ACTIONS(585), - [anon_sym_SLASH_EQ] = ACTIONS(585), - [anon_sym_PERCENT_EQ] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_break] = ACTIONS(587), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_default] = ACTIONS(587), - [anon_sym_if] = ACTIONS(587), - [anon_sym_extern] = ACTIONS(587), - [anon_sym_loop] = ACTIONS(587), - [anon_sym_match] = ACTIONS(587), - [anon_sym_pub] = ACTIONS(587), - [anon_sym_return] = ACTIONS(587), - [anon_sym_static] = ACTIONS(587), - [anon_sym_while] = ACTIONS(587), - [anon_sym_for] = ACTIONS(587), - [sym_numeric_literal] = ACTIONS(587), - [aux_sym_string_literal_token1] = ACTIONS(585), - [sym_shortstring_literal] = ACTIONS(585), - [anon_sym_true] = ACTIONS(587), - [anon_sym_false] = ACTIONS(587), - [anon_sym_move] = ACTIONS(587), - [anon_sym_ref] = ACTIONS(587), - [sym_identifier] = ACTIONS(587), - [sym_super] = ACTIONS(587), - [sym_line_comment] = ACTIONS(3), - }, - [83] = { - [ts_builtin_sym_end] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_impl] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_trait] = ACTIONS(591), - [anon_sym_type] = ACTIONS(591), - [anon_sym_const] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_RBRACK] = ACTIONS(589), - [anon_sym_mod] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(591), - [anon_sym_enum] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(591), - [anon_sym_let] = ACTIONS(591), - [anon_sym_use] = ACTIONS(591), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(589), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_u8] = ACTIONS(591), - [anon_sym_i8] = ACTIONS(591), - [anon_sym_u16] = ACTIONS(591), - [anon_sym_i16] = ACTIONS(591), - [anon_sym_u32] = ACTIONS(591), - [anon_sym_i32] = ACTIONS(591), - [anon_sym_u64] = ACTIONS(591), - [anon_sym_i64] = ACTIONS(591), - [anon_sym_u128] = ACTIONS(591), - [anon_sym_i128] = ACTIONS(591), - [anon_sym_usize] = ACTIONS(591), - [anon_sym_bool] = ACTIONS(591), - [anon_sym_ByteArray] = ACTIONS(591), - [anon_sym_felt252] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_SLASH] = ACTIONS(591), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(589), - [anon_sym_break] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(591), - [anon_sym_default] = ACTIONS(591), - [anon_sym_if] = ACTIONS(591), - [anon_sym_extern] = ACTIONS(591), - [anon_sym_loop] = ACTIONS(591), - [anon_sym_match] = ACTIONS(591), - [anon_sym_pub] = ACTIONS(591), - [anon_sym_return] = ACTIONS(591), - [anon_sym_static] = ACTIONS(591), - [anon_sym_while] = ACTIONS(591), - [anon_sym_for] = ACTIONS(591), - [sym_numeric_literal] = ACTIONS(591), - [aux_sym_string_literal_token1] = ACTIONS(589), - [sym_shortstring_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_move] = ACTIONS(591), - [anon_sym_ref] = ACTIONS(591), - [sym_identifier] = ACTIONS(591), - [sym_super] = ACTIONS(591), - [sym_line_comment] = ACTIONS(3), - }, - [84] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(102), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(680), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1549), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(102), + [85] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(97), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(751), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1540), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(97), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(547), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_RPAREN] = ACTIONS(567), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18952,14 +19362,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -18969,235 +19379,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(555), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_impl] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_trait] = ACTIONS(597), - [anon_sym_type] = ACTIONS(597), - [anon_sym_const] = ACTIONS(597), - [anon_sym_EQ] = ACTIONS(597), - [anon_sym_BANG] = ACTIONS(597), - [anon_sym_POUND] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_RBRACK] = ACTIONS(595), - [anon_sym_mod] = ACTIONS(597), - [anon_sym_struct] = ACTIONS(597), - [anon_sym_enum] = ACTIONS(597), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_let] = ACTIONS(597), - [anon_sym_use] = ACTIONS(597), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(595), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_u8] = ACTIONS(597), - [anon_sym_i8] = ACTIONS(597), - [anon_sym_u16] = ACTIONS(597), - [anon_sym_i16] = ACTIONS(597), - [anon_sym_u32] = ACTIONS(597), - [anon_sym_i32] = ACTIONS(597), - [anon_sym_u64] = ACTIONS(597), - [anon_sym_i64] = ACTIONS(597), - [anon_sym_u128] = ACTIONS(597), - [anon_sym_i128] = ACTIONS(597), - [anon_sym_usize] = ACTIONS(597), - [anon_sym_bool] = ACTIONS(597), - [anon_sym_ByteArray] = ACTIONS(597), - [anon_sym_felt252] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_PLUS_EQ] = ACTIONS(595), - [anon_sym_DASH_EQ] = ACTIONS(595), - [anon_sym_STAR_EQ] = ACTIONS(595), - [anon_sym_SLASH_EQ] = ACTIONS(595), - [anon_sym_PERCENT_EQ] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(595), - [anon_sym_break] = ACTIONS(597), - [anon_sym_continue] = ACTIONS(597), - [anon_sym_default] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_extern] = ACTIONS(597), - [anon_sym_loop] = ACTIONS(597), - [anon_sym_match] = ACTIONS(597), - [anon_sym_pub] = ACTIONS(597), - [anon_sym_return] = ACTIONS(597), - [anon_sym_static] = ACTIONS(597), - [anon_sym_while] = ACTIONS(597), - [anon_sym_for] = ACTIONS(597), - [sym_numeric_literal] = ACTIONS(597), - [aux_sym_string_literal_token1] = ACTIONS(595), - [sym_shortstring_literal] = ACTIONS(595), - [anon_sym_true] = ACTIONS(597), - [anon_sym_false] = ACTIONS(597), - [anon_sym_move] = ACTIONS(597), - [anon_sym_ref] = ACTIONS(597), - [sym_identifier] = ACTIONS(597), - [sym_super] = ACTIONS(597), - [sym_line_comment] = ACTIONS(3), - }, [86] = { - [ts_builtin_sym_end] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_impl] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_trait] = ACTIONS(601), - [anon_sym_type] = ACTIONS(601), - [anon_sym_const] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_POUND] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_RBRACK] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(601), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_fn] = ACTIONS(601), - [anon_sym_let] = ACTIONS(601), - [anon_sym_use] = ACTIONS(601), - [anon_sym_COLON_COLON] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_u8] = ACTIONS(601), - [anon_sym_i8] = ACTIONS(601), - [anon_sym_u16] = ACTIONS(601), - [anon_sym_i16] = ACTIONS(601), - [anon_sym_u32] = ACTIONS(601), - [anon_sym_i32] = ACTIONS(601), - [anon_sym_u64] = ACTIONS(601), - [anon_sym_i64] = ACTIONS(601), - [anon_sym_u128] = ACTIONS(601), - [anon_sym_i128] = ACTIONS(601), - [anon_sym_usize] = ACTIONS(601), - [anon_sym_bool] = ACTIONS(601), - [anon_sym_ByteArray] = ACTIONS(601), - [anon_sym_felt252] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(599), - [anon_sym_PLUS_EQ] = ACTIONS(599), - [anon_sym_DASH_EQ] = ACTIONS(599), - [anon_sym_STAR_EQ] = ACTIONS(599), - [anon_sym_SLASH_EQ] = ACTIONS(599), - [anon_sym_PERCENT_EQ] = ACTIONS(599), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(601), - [anon_sym_default] = ACTIONS(601), - [anon_sym_if] = ACTIONS(601), - [anon_sym_extern] = ACTIONS(601), - [anon_sym_loop] = ACTIONS(601), - [anon_sym_match] = ACTIONS(601), - [anon_sym_pub] = ACTIONS(601), - [anon_sym_return] = ACTIONS(601), - [anon_sym_static] = ACTIONS(601), - [anon_sym_while] = ACTIONS(601), - [anon_sym_for] = ACTIONS(601), - [sym_numeric_literal] = ACTIONS(601), - [aux_sym_string_literal_token1] = ACTIONS(599), - [sym_shortstring_literal] = ACTIONS(599), - [anon_sym_true] = ACTIONS(601), - [anon_sym_false] = ACTIONS(601), - [anon_sym_move] = ACTIONS(601), - [anon_sym_ref] = ACTIONS(601), - [sym_identifier] = ACTIONS(601), - [sym_super] = ACTIONS(601), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(97), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(751), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1540), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(555), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, [87] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(102), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(680), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1549), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(102), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(97), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(751), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1540), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(97), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(547), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(571), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -19216,14 +19542,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -19233,323 +19559,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(555), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, [88] = { - [ts_builtin_sym_end] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_POUND] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(605), - [anon_sym_RBRACK] = ACTIONS(605), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(605), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_RPAREN] = ACTIONS(605), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_ByteArray] = ACTIONS(607), - [anon_sym_felt252] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(605), - [anon_sym_LT_LT] = ACTIONS(605), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_PLUS_EQ] = ACTIONS(605), - [anon_sym_DASH_EQ] = ACTIONS(605), - [anon_sym_STAR_EQ] = ACTIONS(605), - [anon_sym_SLASH_EQ] = ACTIONS(605), - [anon_sym_PERCENT_EQ] = ACTIONS(605), - [anon_sym_EQ_EQ] = ACTIONS(605), - [anon_sym_BANG_EQ] = ACTIONS(605), - [anon_sym_GT_EQ] = ACTIONS(605), - [anon_sym_LT_EQ] = ACTIONS(605), - [anon_sym_AT] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(605), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_extern] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [sym_numeric_literal] = ACTIONS(607), - [aux_sym_string_literal_token1] = ACTIONS(605), - [sym_shortstring_literal] = ACTIONS(605), - [anon_sym_true] = ACTIONS(607), - [anon_sym_false] = ACTIONS(607), - [anon_sym_move] = ACTIONS(607), - [anon_sym_ref] = ACTIONS(607), - [sym_identifier] = ACTIONS(607), - [sym_super] = ACTIONS(607), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(384), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(663), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(384), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(579), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(593), + [anon_sym_i8] = ACTIONS(593), + [anon_sym_u16] = ACTIONS(593), + [anon_sym_i16] = ACTIONS(593), + [anon_sym_u32] = ACTIONS(593), + [anon_sym_i32] = ACTIONS(593), + [anon_sym_u64] = ACTIONS(593), + [anon_sym_i64] = ACTIONS(593), + [anon_sym_u128] = ACTIONS(593), + [anon_sym_i128] = ACTIONS(593), + [anon_sym_usize] = ACTIONS(593), + [anon_sym_bool] = ACTIONS(593), + [anon_sym_ByteArray] = ACTIONS(593), + [anon_sym_felt252] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_default] = ACTIONS(611), + [anon_sym_if] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(617), + [anon_sym_match] = ACTIONS(620), + [anon_sym_return] = ACTIONS(623), + [anon_sym_while] = ACTIONS(626), + [anon_sym_for] = ACTIONS(629), + [sym_numeric_literal] = ACTIONS(632), + [aux_sym_string_literal_token1] = ACTIONS(635), + [sym_shortstring_literal] = ACTIONS(638), + [anon_sym_true] = ACTIONS(641), + [anon_sym_false] = ACTIONS(641), + [anon_sym_move] = ACTIONS(644), + [anon_sym_ref] = ACTIONS(647), + [sym_identifier] = ACTIONS(650), + [sym_super] = ACTIONS(653), [sym_line_comment] = ACTIONS(3), }, [89] = { - [ts_builtin_sym_end] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_RBRACE] = ACTIONS(609), - [anon_sym_impl] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_trait] = ACTIONS(611), - [anon_sym_type] = ACTIONS(611), - [anon_sym_const] = ACTIONS(611), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(609), - [anon_sym_mod] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(611), - [anon_sym_enum] = ACTIONS(611), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_let] = ACTIONS(611), - [anon_sym_use] = ACTIONS(611), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_RPAREN] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(611), - [anon_sym_i8] = ACTIONS(611), - [anon_sym_u16] = ACTIONS(611), - [anon_sym_i16] = ACTIONS(611), - [anon_sym_u32] = ACTIONS(611), - [anon_sym_i32] = ACTIONS(611), - [anon_sym_u64] = ACTIONS(611), - [anon_sym_i64] = ACTIONS(611), - [anon_sym_u128] = ACTIONS(611), - [anon_sym_i128] = ACTIONS(611), - [anon_sym_usize] = ACTIONS(611), - [anon_sym_bool] = ACTIONS(611), - [anon_sym_ByteArray] = ACTIONS(611), - [anon_sym_felt252] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(611), - [anon_sym_PERCENT] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(609), - [anon_sym_TILDE] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(609), - [anon_sym_GT_GT] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(609), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(611), - [anon_sym_default] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_extern] = ACTIONS(611), - [anon_sym_loop] = ACTIONS(611), - [anon_sym_match] = ACTIONS(611), - [anon_sym_pub] = ACTIONS(611), - [anon_sym_return] = ACTIONS(611), - [anon_sym_static] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [sym_numeric_literal] = ACTIONS(611), - [aux_sym_string_literal_token1] = ACTIONS(609), - [sym_shortstring_literal] = ACTIONS(609), - [anon_sym_true] = ACTIONS(611), - [anon_sym_false] = ACTIONS(611), - [anon_sym_move] = ACTIONS(611), - [anon_sym_ref] = ACTIONS(611), - [sym_identifier] = ACTIONS(611), - [sym_super] = ACTIONS(611), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(90), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(625), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(90), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(658), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, [90] = { - [ts_builtin_sym_end] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_impl] = ACTIONS(615), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_trait] = ACTIONS(615), - [anon_sym_type] = ACTIONS(615), - [anon_sym_const] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_POUND] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_RBRACK] = ACTIONS(613), - [anon_sym_mod] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(615), - [anon_sym_let] = ACTIONS(615), - [anon_sym_use] = ACTIONS(615), - [anon_sym_COLON_COLON] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_u8] = ACTIONS(615), - [anon_sym_i8] = ACTIONS(615), - [anon_sym_u16] = ACTIONS(615), - [anon_sym_i16] = ACTIONS(615), - [anon_sym_u32] = ACTIONS(615), - [anon_sym_i32] = ACTIONS(615), - [anon_sym_u64] = ACTIONS(615), - [anon_sym_i64] = ACTIONS(615), - [anon_sym_u128] = ACTIONS(615), - [anon_sym_i128] = ACTIONS(615), - [anon_sym_usize] = ACTIONS(615), - [anon_sym_bool] = ACTIONS(615), - [anon_sym_ByteArray] = ACTIONS(615), - [anon_sym_felt252] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_PLUS_EQ] = ACTIONS(613), - [anon_sym_DASH_EQ] = ACTIONS(613), - [anon_sym_STAR_EQ] = ACTIONS(613), - [anon_sym_SLASH_EQ] = ACTIONS(613), - [anon_sym_PERCENT_EQ] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_default] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_extern] = ACTIONS(615), - [anon_sym_loop] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_static] = ACTIONS(615), - [anon_sym_while] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [sym_numeric_literal] = ACTIONS(615), - [aux_sym_string_literal_token1] = ACTIONS(613), - [sym_shortstring_literal] = ACTIONS(613), - [anon_sym_true] = ACTIONS(615), - [anon_sym_false] = ACTIONS(615), - [anon_sym_move] = ACTIONS(615), - [anon_sym_ref] = ACTIONS(615), - [sym_identifier] = ACTIONS(615), - [sym_super] = ACTIONS(615), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(384), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(722), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(384), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(579), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(593), + [anon_sym_i8] = ACTIONS(593), + [anon_sym_u16] = ACTIONS(593), + [anon_sym_i16] = ACTIONS(593), + [anon_sym_u32] = ACTIONS(593), + [anon_sym_i32] = ACTIONS(593), + [anon_sym_u64] = ACTIONS(593), + [anon_sym_i64] = ACTIONS(593), + [anon_sym_u128] = ACTIONS(593), + [anon_sym_i128] = ACTIONS(593), + [anon_sym_usize] = ACTIONS(593), + [anon_sym_bool] = ACTIONS(593), + [anon_sym_ByteArray] = ACTIONS(593), + [anon_sym_felt252] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_default] = ACTIONS(611), + [anon_sym_if] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(617), + [anon_sym_match] = ACTIONS(620), + [anon_sym_return] = ACTIONS(623), + [anon_sym_while] = ACTIONS(626), + [anon_sym_for] = ACTIONS(629), + [sym_numeric_literal] = ACTIONS(632), + [aux_sym_string_literal_token1] = ACTIONS(635), + [sym_shortstring_literal] = ACTIONS(638), + [anon_sym_true] = ACTIONS(641), + [anon_sym_false] = ACTIONS(641), + [anon_sym_move] = ACTIONS(644), + [anon_sym_ref] = ACTIONS(647), + [sym_identifier] = ACTIONS(650), + [sym_super] = ACTIONS(653), [sym_line_comment] = ACTIONS(3), }, [91] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(102), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(680), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1549), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(102), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(88), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(652), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(88), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(660), + [anon_sym_COMMA] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(617), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -19568,14 +19898,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -19585,55 +19915,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(83), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, [92] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(96), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(596), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(96), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(384), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(669), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1401), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(384), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(547), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(621), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19655,14 +19987,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -19672,55 +20004,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), + [sym_identifier] = ACTIONS(555), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, [93] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(102), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(680), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1549), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(102), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(91), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(638), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(91), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(664), + [anon_sym_COMMA] = ACTIONS(666), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19742,14 +20076,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -19759,142 +20093,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(83), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, [94] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(375), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(626), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(375), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(629), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_RBRACK] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_COLON_COLON] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(643), - [anon_sym_i8] = ACTIONS(643), - [anon_sym_u16] = ACTIONS(643), - [anon_sym_i16] = ACTIONS(643), - [anon_sym_u32] = ACTIONS(643), - [anon_sym_i32] = ACTIONS(643), - [anon_sym_u64] = ACTIONS(643), - [anon_sym_i64] = ACTIONS(643), - [anon_sym_u128] = ACTIONS(643), - [anon_sym_i128] = ACTIONS(643), - [anon_sym_usize] = ACTIONS(643), - [anon_sym_bool] = ACTIONS(643), - [anon_sym_ByteArray] = ACTIONS(643), - [anon_sym_felt252] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_TILDE] = ACTIONS(626), - [anon_sym_PIPE] = ACTIONS(649), - [anon_sym_AT] = ACTIONS(626), - [anon_sym_break] = ACTIONS(652), - [anon_sym_continue] = ACTIONS(655), - [anon_sym_default] = ACTIONS(658), - [anon_sym_if] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(664), - [anon_sym_match] = ACTIONS(667), - [anon_sym_return] = ACTIONS(670), - [anon_sym_static] = ACTIONS(673), - [anon_sym_while] = ACTIONS(676), - [anon_sym_for] = ACTIONS(679), - [sym_numeric_literal] = ACTIONS(682), - [aux_sym_string_literal_token1] = ACTIONS(685), - [sym_shortstring_literal] = ACTIONS(688), - [anon_sym_true] = ACTIONS(691), - [anon_sym_false] = ACTIONS(691), - [anon_sym_move] = ACTIONS(694), - [anon_sym_ref] = ACTIONS(697), - [sym_identifier] = ACTIONS(700), - [sym_super] = ACTIONS(703), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(97), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(751), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1540), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(97), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(555), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, [95] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(94), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(599), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(94), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(384), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(716), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1347), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(384), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(547), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(706), - [anon_sym_COMMA] = ACTIONS(708), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19916,14 +20254,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -19933,142 +20271,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), + [sym_identifier] = ACTIONS(555), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, [96] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(375), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(618), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(375), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(629), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_RBRACK] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_COLON_COLON] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(643), - [anon_sym_i8] = ACTIONS(643), - [anon_sym_u16] = ACTIONS(643), - [anon_sym_i16] = ACTIONS(643), - [anon_sym_u32] = ACTIONS(643), - [anon_sym_i32] = ACTIONS(643), - [anon_sym_u64] = ACTIONS(643), - [anon_sym_i64] = ACTIONS(643), - [anon_sym_u128] = ACTIONS(643), - [anon_sym_i128] = ACTIONS(643), - [anon_sym_usize] = ACTIONS(643), - [anon_sym_bool] = ACTIONS(643), - [anon_sym_ByteArray] = ACTIONS(643), - [anon_sym_felt252] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_TILDE] = ACTIONS(626), - [anon_sym_PIPE] = ACTIONS(649), - [anon_sym_AT] = ACTIONS(626), - [anon_sym_break] = ACTIONS(652), - [anon_sym_continue] = ACTIONS(655), - [anon_sym_default] = ACTIONS(658), - [anon_sym_if] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(664), - [anon_sym_match] = ACTIONS(667), - [anon_sym_return] = ACTIONS(670), - [anon_sym_static] = ACTIONS(673), - [anon_sym_while] = ACTIONS(676), - [anon_sym_for] = ACTIONS(679), - [sym_numeric_literal] = ACTIONS(682), - [aux_sym_string_literal_token1] = ACTIONS(685), - [sym_shortstring_literal] = ACTIONS(688), - [anon_sym_true] = ACTIONS(691), - [anon_sym_false] = ACTIONS(691), - [anon_sym_move] = ACTIONS(694), - [anon_sym_ref] = ACTIONS(697), - [sym_identifier] = ACTIONS(700), - [sym_super] = ACTIONS(703), - [sym_line_comment] = ACTIONS(3), - }, - [97] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(92), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(575), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(92), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(89), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(645), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(89), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(712), + [anon_sym_RBRACK] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(670), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20090,14 +20343,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -20111,50 +20364,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [98] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(375), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(625), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1384), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(375), + [97] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(384), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(795), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_named_argument] = STATE(1460), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(384), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(547), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -20177,14 +20432,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -20194,55 +20449,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(555), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, + [98] = { + [ts_builtin_sym_end] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_trait] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(672), + [anon_sym_mod] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_fn] = ACTIONS(674), + [anon_sym_let] = ACTIONS(674), + [anon_sym_use] = ACTIONS(674), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RPAREN] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(674), + [anon_sym_i8] = ACTIONS(674), + [anon_sym_u16] = ACTIONS(674), + [anon_sym_i16] = ACTIONS(674), + [anon_sym_u32] = ACTIONS(674), + [anon_sym_i32] = ACTIONS(674), + [anon_sym_u64] = ACTIONS(674), + [anon_sym_i64] = ACTIONS(674), + [anon_sym_u128] = ACTIONS(674), + [anon_sym_i128] = ACTIONS(674), + [anon_sym_usize] = ACTIONS(674), + [anon_sym_bool] = ACTIONS(674), + [anon_sym_ByteArray] = ACTIONS(674), + [anon_sym_felt252] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(674), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(672), + [anon_sym_GT_GT] = ACTIONS(672), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_break] = ACTIONS(674), + [anon_sym_continue] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_if] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(674), + [anon_sym_loop] = ACTIONS(674), + [anon_sym_match] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(674), + [anon_sym_return] = ACTIONS(674), + [anon_sym_while] = ACTIONS(674), + [anon_sym_for] = ACTIONS(674), + [sym_numeric_literal] = ACTIONS(674), + [aux_sym_string_literal_token1] = ACTIONS(672), + [sym_shortstring_literal] = ACTIONS(672), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), + [anon_sym_move] = ACTIONS(674), + [anon_sym_ref] = ACTIONS(674), + [sym_identifier] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_line_comment] = ACTIONS(3), + }, [99] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(95), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(533), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(95), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(132), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(743), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(714), - [anon_sym_COMMA] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(676), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20264,14 +20608,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -20286,224 +20630,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [100] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(375), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(629), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1265), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(375), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(79), - [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), - [sym_super] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_impl] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_trait] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_const] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_RBRACK] = ACTIONS(524), + [anon_sym_mod] = ACTIONS(526), + [anon_sym_struct] = ACTIONS(526), + [anon_sym_enum] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(526), + [anon_sym_let] = ACTIONS(526), + [anon_sym_use] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_RPAREN] = ACTIONS(524), + [anon_sym_u8] = ACTIONS(526), + [anon_sym_i8] = ACTIONS(526), + [anon_sym_u16] = ACTIONS(526), + [anon_sym_i16] = ACTIONS(526), + [anon_sym_u32] = ACTIONS(526), + [anon_sym_i32] = ACTIONS(526), + [anon_sym_u64] = ACTIONS(526), + [anon_sym_i64] = ACTIONS(526), + [anon_sym_u128] = ACTIONS(526), + [anon_sym_i128] = ACTIONS(526), + [anon_sym_usize] = ACTIONS(526), + [anon_sym_bool] = ACTIONS(526), + [anon_sym_ByteArray] = ACTIONS(526), + [anon_sym_felt252] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(524), + [anon_sym_TILDE] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_AMP_AMP] = ACTIONS(524), + [anon_sym_PIPE_PIPE] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(524), + [anon_sym_PLUS_EQ] = ACTIONS(524), + [anon_sym_DASH_EQ] = ACTIONS(524), + [anon_sym_STAR_EQ] = ACTIONS(524), + [anon_sym_SLASH_EQ] = ACTIONS(524), + [anon_sym_PERCENT_EQ] = ACTIONS(524), + [anon_sym_EQ_EQ] = ACTIONS(524), + [anon_sym_BANG_EQ] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_DOT_DOT] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_break] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_default] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [anon_sym_extern] = ACTIONS(526), + [anon_sym_loop] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_pub] = ACTIONS(526), + [anon_sym_return] = ACTIONS(526), + [anon_sym_while] = ACTIONS(526), + [anon_sym_for] = ACTIONS(526), + [sym_numeric_literal] = ACTIONS(526), + [aux_sym_string_literal_token1] = ACTIONS(524), + [sym_shortstring_literal] = ACTIONS(524), + [anon_sym_true] = ACTIONS(526), + [anon_sym_false] = ACTIONS(526), + [anon_sym_move] = ACTIONS(526), + [anon_sym_ref] = ACTIONS(526), + [sym_identifier] = ACTIONS(526), + [sym_super] = ACTIONS(526), [sym_line_comment] = ACTIONS(3), }, [101] = { - [sym_else_clause] = STATE(89), - [ts_builtin_sym_end] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_impl] = ACTIONS(720), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_trait] = ACTIONS(720), - [anon_sym_type] = ACTIONS(720), - [anon_sym_const] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(720), - [anon_sym_BANG] = ACTIONS(720), - [anon_sym_POUND] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(718), - [anon_sym_mod] = ACTIONS(720), - [anon_sym_struct] = ACTIONS(720), - [anon_sym_enum] = ACTIONS(720), - [anon_sym_fn] = ACTIONS(720), - [anon_sym_let] = ACTIONS(720), - [anon_sym_use] = ACTIONS(720), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(720), - [anon_sym_i8] = ACTIONS(720), - [anon_sym_u16] = ACTIONS(720), - [anon_sym_i16] = ACTIONS(720), - [anon_sym_u32] = ACTIONS(720), - [anon_sym_i32] = ACTIONS(720), - [anon_sym_u64] = ACTIONS(720), - [anon_sym_i64] = ACTIONS(720), - [anon_sym_u128] = ACTIONS(720), - [anon_sym_i128] = ACTIONS(720), - [anon_sym_usize] = ACTIONS(720), - [anon_sym_bool] = ACTIONS(720), - [anon_sym_ByteArray] = ACTIONS(720), - [anon_sym_felt252] = ACTIONS(720), - [anon_sym_LT] = ACTIONS(720), - [anon_sym_GT] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(720), - [anon_sym_PERCENT] = ACTIONS(720), - [anon_sym_CARET] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_PLUS_EQ] = ACTIONS(718), - [anon_sym_DASH_EQ] = ACTIONS(718), - [anon_sym_STAR_EQ] = ACTIONS(718), - [anon_sym_SLASH_EQ] = ACTIONS(718), - [anon_sym_PERCENT_EQ] = ACTIONS(718), - [anon_sym_EQ_EQ] = ACTIONS(718), - [anon_sym_BANG_EQ] = ACTIONS(718), - [anon_sym_GT_EQ] = ACTIONS(718), - [anon_sym_LT_EQ] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_DOT] = ACTIONS(718), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_break] = ACTIONS(720), - [anon_sym_continue] = ACTIONS(720), - [anon_sym_default] = ACTIONS(720), - [anon_sym_if] = ACTIONS(720), - [anon_sym_extern] = ACTIONS(720), - [anon_sym_loop] = ACTIONS(720), - [anon_sym_match] = ACTIONS(720), - [anon_sym_pub] = ACTIONS(720), - [anon_sym_return] = ACTIONS(720), - [anon_sym_static] = ACTIONS(720), - [anon_sym_while] = ACTIONS(720), - [anon_sym_for] = ACTIONS(720), - [sym_numeric_literal] = ACTIONS(720), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_shortstring_literal] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_else] = ACTIONS(722), - [anon_sym_move] = ACTIONS(720), - [anon_sym_ref] = ACTIONS(720), - [sym_identifier] = ACTIONS(720), - [sym_super] = ACTIONS(720), + [ts_builtin_sym_end] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_impl] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_trait] = ACTIONS(514), + [anon_sym_type] = ACTIONS(514), + [anon_sym_const] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(514), + [anon_sym_POUND] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_RBRACK] = ACTIONS(512), + [anon_sym_mod] = ACTIONS(514), + [anon_sym_struct] = ACTIONS(514), + [anon_sym_enum] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_fn] = ACTIONS(514), + [anon_sym_let] = ACTIONS(514), + [anon_sym_use] = ACTIONS(514), + [anon_sym_COLON_COLON] = ACTIONS(512), + [anon_sym_STAR] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_u8] = ACTIONS(514), + [anon_sym_i8] = ACTIONS(514), + [anon_sym_u16] = ACTIONS(514), + [anon_sym_i16] = ACTIONS(514), + [anon_sym_u32] = ACTIONS(514), + [anon_sym_i32] = ACTIONS(514), + [anon_sym_u64] = ACTIONS(514), + [anon_sym_i64] = ACTIONS(514), + [anon_sym_u128] = ACTIONS(514), + [anon_sym_i128] = ACTIONS(514), + [anon_sym_usize] = ACTIONS(514), + [anon_sym_bool] = ACTIONS(514), + [anon_sym_ByteArray] = ACTIONS(514), + [anon_sym_felt252] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(514), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_CARET] = ACTIONS(512), + [anon_sym_TILDE] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_PLUS_EQ] = ACTIONS(512), + [anon_sym_DASH_EQ] = ACTIONS(512), + [anon_sym_STAR_EQ] = ACTIONS(512), + [anon_sym_SLASH_EQ] = ACTIONS(512), + [anon_sym_PERCENT_EQ] = ACTIONS(512), + [anon_sym_EQ_EQ] = ACTIONS(512), + [anon_sym_BANG_EQ] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DOT] = ACTIONS(514), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_continue] = ACTIONS(514), + [anon_sym_default] = ACTIONS(514), + [anon_sym_if] = ACTIONS(514), + [anon_sym_extern] = ACTIONS(514), + [anon_sym_loop] = ACTIONS(514), + [anon_sym_match] = ACTIONS(514), + [anon_sym_pub] = ACTIONS(514), + [anon_sym_return] = ACTIONS(514), + [anon_sym_while] = ACTIONS(514), + [anon_sym_for] = ACTIONS(514), + [sym_numeric_literal] = ACTIONS(514), + [aux_sym_string_literal_token1] = ACTIONS(512), + [sym_shortstring_literal] = ACTIONS(512), + [anon_sym_true] = ACTIONS(514), + [anon_sym_false] = ACTIONS(514), + [anon_sym_move] = ACTIONS(514), + [anon_sym_ref] = ACTIONS(514), + [sym_identifier] = ACTIONS(514), + [sym_super] = ACTIONS(514), [sym_line_comment] = ACTIONS(3), }, [102] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(375), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(662), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_named_argument] = STATE(1508), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(375), + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(132), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(743), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(537), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(678), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20525,14 +20872,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -20542,54 +20889,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(83), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, [103] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(129), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(670), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(129), + [ts_builtin_sym_end] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_impl] = ACTIONS(682), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_trait] = ACTIONS(682), + [anon_sym_type] = ACTIONS(682), + [anon_sym_const] = ACTIONS(682), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(680), + [anon_sym_mod] = ACTIONS(682), + [anon_sym_struct] = ACTIONS(682), + [anon_sym_enum] = ACTIONS(682), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_fn] = ACTIONS(682), + [anon_sym_let] = ACTIONS(682), + [anon_sym_use] = ACTIONS(682), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(682), + [anon_sym_i8] = ACTIONS(682), + [anon_sym_u16] = ACTIONS(682), + [anon_sym_i16] = ACTIONS(682), + [anon_sym_u32] = ACTIONS(682), + [anon_sym_i32] = ACTIONS(682), + [anon_sym_u64] = ACTIONS(682), + [anon_sym_i64] = ACTIONS(682), + [anon_sym_u128] = ACTIONS(682), + [anon_sym_i128] = ACTIONS(682), + [anon_sym_usize] = ACTIONS(682), + [anon_sym_bool] = ACTIONS(682), + [anon_sym_ByteArray] = ACTIONS(682), + [anon_sym_felt252] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(680), + [anon_sym_TILDE] = ACTIONS(680), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(680), + [anon_sym_GT_GT] = ACTIONS(680), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_break] = ACTIONS(682), + [anon_sym_continue] = ACTIONS(682), + [anon_sym_default] = ACTIONS(682), + [anon_sym_if] = ACTIONS(682), + [anon_sym_extern] = ACTIONS(682), + [anon_sym_loop] = ACTIONS(682), + [anon_sym_match] = ACTIONS(682), + [anon_sym_pub] = ACTIONS(682), + [anon_sym_return] = ACTIONS(682), + [anon_sym_while] = ACTIONS(682), + [anon_sym_for] = ACTIONS(682), + [sym_numeric_literal] = ACTIONS(682), + [aux_sym_string_literal_token1] = ACTIONS(680), + [sym_shortstring_literal] = ACTIONS(680), + [anon_sym_true] = ACTIONS(682), + [anon_sym_false] = ACTIONS(682), + [anon_sym_move] = ACTIONS(682), + [anon_sym_ref] = ACTIONS(682), + [sym_identifier] = ACTIONS(682), + [sym_super] = ACTIONS(682), + [sym_line_comment] = ACTIONS(3), + }, + [104] = { + [ts_builtin_sym_end] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(684), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(684), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_COLON_COLON] = ACTIONS(684), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(684), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_ByteArray] = ACTIONS(686), + [anon_sym_felt252] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE] = ACTIONS(684), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(684), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [anon_sym_LT_LT] = ACTIONS(684), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_PLUS_EQ] = ACTIONS(684), + [anon_sym_DASH_EQ] = ACTIONS(684), + [anon_sym_STAR_EQ] = ACTIONS(684), + [anon_sym_SLASH_EQ] = ACTIONS(684), + [anon_sym_PERCENT_EQ] = ACTIONS(684), + [anon_sym_EQ_EQ] = ACTIONS(684), + [anon_sym_BANG_EQ] = ACTIONS(684), + [anon_sym_GT_EQ] = ACTIONS(684), + [anon_sym_LT_EQ] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_DOT_DOT] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(684), + [anon_sym_break] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [sym_numeric_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(684), + [sym_shortstring_literal] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [anon_sym_move] = ACTIONS(686), + [anon_sym_ref] = ACTIONS(686), + [sym_identifier] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_line_comment] = ACTIONS(3), + }, + [105] = { + [ts_builtin_sym_end] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(690), + [anon_sym_type] = ACTIONS(690), + [anon_sym_const] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_RBRACK] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(690), + [anon_sym_struct] = ACTIONS(690), + [anon_sym_enum] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(690), + [anon_sym_let] = ACTIONS(690), + [anon_sym_use] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(688), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_ByteArray] = ACTIONS(690), + [anon_sym_felt252] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(688), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_break] = ACTIONS(690), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_default] = ACTIONS(690), + [anon_sym_if] = ACTIONS(690), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_loop] = ACTIONS(690), + [anon_sym_match] = ACTIONS(690), + [anon_sym_pub] = ACTIONS(690), + [anon_sym_return] = ACTIONS(690), + [anon_sym_while] = ACTIONS(690), + [anon_sym_for] = ACTIONS(690), + [sym_numeric_literal] = ACTIONS(690), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_shortstring_literal] = ACTIONS(688), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_move] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(690), + [sym_identifier] = ACTIONS(690), + [sym_super] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + }, + [106] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(132), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(743), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(724), + [anon_sym_RBRACK] = ACTIONS(692), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20611,14 +21224,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -20632,50 +21245,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [104] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(129), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(670), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(129), + [107] = { + [ts_builtin_sym_end] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(696), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(696), + [anon_sym_type] = ACTIONS(696), + [anon_sym_const] = ACTIONS(696), + [anon_sym_EQ] = ACTIONS(696), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_POUND] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(696), + [anon_sym_struct] = ACTIONS(696), + [anon_sym_enum] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(696), + [anon_sym_let] = ACTIONS(696), + [anon_sym_use] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [anon_sym_u8] = ACTIONS(696), + [anon_sym_i8] = ACTIONS(696), + [anon_sym_u16] = ACTIONS(696), + [anon_sym_i16] = ACTIONS(696), + [anon_sym_u32] = ACTIONS(696), + [anon_sym_i32] = ACTIONS(696), + [anon_sym_u64] = ACTIONS(696), + [anon_sym_i64] = ACTIONS(696), + [anon_sym_u128] = ACTIONS(696), + [anon_sym_i128] = ACTIONS(696), + [anon_sym_usize] = ACTIONS(696), + [anon_sym_bool] = ACTIONS(696), + [anon_sym_ByteArray] = ACTIONS(696), + [anon_sym_felt252] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(696), + [anon_sym_GT] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(696), + [anon_sym_PERCENT] = ACTIONS(696), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(696), + [anon_sym_PIPE] = ACTIONS(696), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_PLUS_EQ] = ACTIONS(694), + [anon_sym_DASH_EQ] = ACTIONS(694), + [anon_sym_STAR_EQ] = ACTIONS(694), + [anon_sym_SLASH_EQ] = ACTIONS(694), + [anon_sym_PERCENT_EQ] = ACTIONS(694), + [anon_sym_EQ_EQ] = ACTIONS(694), + [anon_sym_BANG_EQ] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(696), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_break] = ACTIONS(696), + [anon_sym_continue] = ACTIONS(696), + [anon_sym_default] = ACTIONS(696), + [anon_sym_if] = ACTIONS(696), + [anon_sym_extern] = ACTIONS(696), + [anon_sym_loop] = ACTIONS(696), + [anon_sym_match] = ACTIONS(696), + [anon_sym_pub] = ACTIONS(696), + [anon_sym_return] = ACTIONS(696), + [anon_sym_while] = ACTIONS(696), + [anon_sym_for] = ACTIONS(696), + [sym_numeric_literal] = ACTIONS(696), + [aux_sym_string_literal_token1] = ACTIONS(694), + [sym_shortstring_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(696), + [anon_sym_false] = ACTIONS(696), + [anon_sym_move] = ACTIONS(696), + [anon_sym_ref] = ACTIONS(696), + [sym_identifier] = ACTIONS(696), + [sym_super] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + }, + [108] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(132), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(743), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_RBRACK] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20697,14 +21400,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -20718,53 +21421,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [105] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(129), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(670), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(129), + [109] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(133), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(735), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(133), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(728), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(700), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20783,14 +21488,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -20804,50 +21509,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [106] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(129), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(670), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(129), + [110] = { + [ts_builtin_sym_end] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_EQ] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(704), + [anon_sym_POUND] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_RBRACK] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_COMMA] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_ByteArray] = ACTIONS(704), + [anon_sym_felt252] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(704), + [anon_sym_PERCENT] = ACTIONS(704), + [anon_sym_CARET] = ACTIONS(702), + [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(702), + [anon_sym_PIPE_PIPE] = ACTIONS(702), + [anon_sym_LT_LT] = ACTIONS(702), + [anon_sym_GT_GT] = ACTIONS(702), + [anon_sym_PLUS_EQ] = ACTIONS(702), + [anon_sym_DASH_EQ] = ACTIONS(702), + [anon_sym_STAR_EQ] = ACTIONS(702), + [anon_sym_SLASH_EQ] = ACTIONS(702), + [anon_sym_PERCENT_EQ] = ACTIONS(702), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_GT_EQ] = ACTIONS(702), + [anon_sym_LT_EQ] = ACTIONS(702), + [anon_sym_AT] = ACTIONS(702), + [anon_sym_DOT_DOT] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_QMARK] = ACTIONS(702), + [anon_sym_break] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_extern] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [sym_numeric_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(702), + [sym_shortstring_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(704), + [anon_sym_false] = ACTIONS(704), + [anon_sym_move] = ACTIONS(704), + [anon_sym_ref] = ACTIONS(704), + [sym_identifier] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + }, + [111] = { + [ts_builtin_sym_end] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_EQ] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_POUND] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(706), + [anon_sym_RBRACK] = ACTIONS(706), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_COMMA] = ACTIONS(706), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(706), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_ByteArray] = ACTIONS(708), + [anon_sym_felt252] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(708), + [anon_sym_SLASH] = ACTIONS(708), + [anon_sym_PERCENT] = ACTIONS(708), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_PLUS_EQ] = ACTIONS(706), + [anon_sym_DASH_EQ] = ACTIONS(706), + [anon_sym_STAR_EQ] = ACTIONS(706), + [anon_sym_SLASH_EQ] = ACTIONS(706), + [anon_sym_PERCENT_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_GT_EQ] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(708), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_break] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_extern] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [sym_numeric_literal] = ACTIONS(708), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_shortstring_literal] = ACTIONS(706), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_move] = ACTIONS(708), + [anon_sym_ref] = ACTIONS(708), + [sym_identifier] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + }, + [112] = { + [ts_builtin_sym_end] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_EQ] = ACTIONS(712), + [anon_sym_BANG] = ACTIONS(712), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_RBRACK] = ACTIONS(710), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(710), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_ByteArray] = ACTIONS(712), + [anon_sym_felt252] = ACTIONS(712), + [anon_sym_LT] = ACTIONS(712), + [anon_sym_GT] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_SLASH] = ACTIONS(712), + [anon_sym_PERCENT] = ACTIONS(712), + [anon_sym_CARET] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(710), + [anon_sym_AMP] = ACTIONS(712), + [anon_sym_PIPE] = ACTIONS(712), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(712), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_break] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_extern] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [sym_numeric_literal] = ACTIONS(712), + [aux_sym_string_literal_token1] = ACTIONS(710), + [sym_shortstring_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(712), + [anon_sym_false] = ACTIONS(712), + [anon_sym_move] = ACTIONS(712), + [anon_sym_ref] = ACTIONS(712), + [sym_identifier] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_line_comment] = ACTIONS(3), + }, + [113] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(132), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(743), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(730), + [anon_sym_RBRACK] = ACTIONS(714), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20869,14 +21840,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -20890,53 +21861,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [107] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(127), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(653), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(127), + [114] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(132), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(743), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(716), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(732), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20955,14 +21928,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -20976,139 +21949,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [108] = { - [ts_builtin_sym_end] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_impl] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_trait] = ACTIONS(591), - [anon_sym_type] = ACTIONS(591), - [anon_sym_const] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_mod] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(591), - [anon_sym_enum] = ACTIONS(591), - [anon_sym_fn] = ACTIONS(591), - [anon_sym_let] = ACTIONS(591), - [anon_sym_use] = ACTIONS(591), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(589), - [anon_sym_u8] = ACTIONS(591), - [anon_sym_i8] = ACTIONS(591), - [anon_sym_u16] = ACTIONS(591), - [anon_sym_i16] = ACTIONS(591), - [anon_sym_u32] = ACTIONS(591), - [anon_sym_i32] = ACTIONS(591), - [anon_sym_u64] = ACTIONS(591), - [anon_sym_i64] = ACTIONS(591), - [anon_sym_u128] = ACTIONS(591), - [anon_sym_i128] = ACTIONS(591), - [anon_sym_usize] = ACTIONS(591), - [anon_sym_bool] = ACTIONS(591), - [anon_sym_ByteArray] = ACTIONS(591), - [anon_sym_felt252] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_SLASH] = ACTIONS(591), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(589), - [anon_sym_break] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(591), - [anon_sym_default] = ACTIONS(591), - [anon_sym_if] = ACTIONS(591), - [anon_sym_extern] = ACTIONS(591), - [anon_sym_loop] = ACTIONS(591), - [anon_sym_match] = ACTIONS(591), - [anon_sym_pub] = ACTIONS(591), - [anon_sym_return] = ACTIONS(591), - [anon_sym_static] = ACTIONS(591), - [anon_sym_while] = ACTIONS(591), - [anon_sym_for] = ACTIONS(591), - [sym_numeric_literal] = ACTIONS(591), - [aux_sym_string_literal_token1] = ACTIONS(589), - [sym_shortstring_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(591), - [anon_sym_false] = ACTIONS(591), - [anon_sym_else] = ACTIONS(591), - [anon_sym_move] = ACTIONS(591), - [anon_sym_ref] = ACTIONS(591), - [sym_identifier] = ACTIONS(591), - [sym_super] = ACTIONS(591), + [115] = { + [ts_builtin_sym_end] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_impl] = ACTIONS(720), + [anon_sym_SEMI] = ACTIONS(718), + [anon_sym_trait] = ACTIONS(720), + [anon_sym_type] = ACTIONS(720), + [anon_sym_const] = ACTIONS(720), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_POUND] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(718), + [anon_sym_RBRACK] = ACTIONS(718), + [anon_sym_mod] = ACTIONS(720), + [anon_sym_struct] = ACTIONS(720), + [anon_sym_enum] = ACTIONS(720), + [anon_sym_COMMA] = ACTIONS(718), + [anon_sym_fn] = ACTIONS(720), + [anon_sym_let] = ACTIONS(720), + [anon_sym_use] = ACTIONS(720), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_u8] = ACTIONS(720), + [anon_sym_i8] = ACTIONS(720), + [anon_sym_u16] = ACTIONS(720), + [anon_sym_i16] = ACTIONS(720), + [anon_sym_u32] = ACTIONS(720), + [anon_sym_i32] = ACTIONS(720), + [anon_sym_u64] = ACTIONS(720), + [anon_sym_i64] = ACTIONS(720), + [anon_sym_u128] = ACTIONS(720), + [anon_sym_i128] = ACTIONS(720), + [anon_sym_usize] = ACTIONS(720), + [anon_sym_bool] = ACTIONS(720), + [anon_sym_ByteArray] = ACTIONS(720), + [anon_sym_felt252] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(718), + [anon_sym_TILDE] = ACTIONS(718), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(718), + [anon_sym_PIPE_PIPE] = ACTIONS(718), + [anon_sym_LT_LT] = ACTIONS(718), + [anon_sym_GT_GT] = ACTIONS(718), + [anon_sym_PLUS_EQ] = ACTIONS(718), + [anon_sym_DASH_EQ] = ACTIONS(718), + [anon_sym_STAR_EQ] = ACTIONS(718), + [anon_sym_SLASH_EQ] = ACTIONS(718), + [anon_sym_PERCENT_EQ] = ACTIONS(718), + [anon_sym_EQ_EQ] = ACTIONS(718), + [anon_sym_BANG_EQ] = ACTIONS(718), + [anon_sym_GT_EQ] = ACTIONS(718), + [anon_sym_LT_EQ] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_DOT_DOT] = ACTIONS(718), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(718), + [anon_sym_break] = ACTIONS(720), + [anon_sym_continue] = ACTIONS(720), + [anon_sym_default] = ACTIONS(720), + [anon_sym_if] = ACTIONS(720), + [anon_sym_extern] = ACTIONS(720), + [anon_sym_loop] = ACTIONS(720), + [anon_sym_match] = ACTIONS(720), + [anon_sym_pub] = ACTIONS(720), + [anon_sym_return] = ACTIONS(720), + [anon_sym_while] = ACTIONS(720), + [anon_sym_for] = ACTIONS(720), + [sym_numeric_literal] = ACTIONS(720), + [aux_sym_string_literal_token1] = ACTIONS(718), + [sym_shortstring_literal] = ACTIONS(718), + [anon_sym_true] = ACTIONS(720), + [anon_sym_false] = ACTIONS(720), + [anon_sym_move] = ACTIONS(720), + [anon_sym_ref] = ACTIONS(720), + [sym_identifier] = ACTIONS(720), + [sym_super] = ACTIONS(720), [sym_line_comment] = ACTIONS(3), }, - [109] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(128), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(650), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(128), + [116] = { + [ts_builtin_sym_end] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_impl] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(722), + [anon_sym_trait] = ACTIONS(724), + [anon_sym_type] = ACTIONS(724), + [anon_sym_const] = ACTIONS(724), + [anon_sym_EQ] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(724), + [anon_sym_POUND] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(722), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_mod] = ACTIONS(724), + [anon_sym_struct] = ACTIONS(724), + [anon_sym_enum] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(722), + [anon_sym_fn] = ACTIONS(724), + [anon_sym_let] = ACTIONS(724), + [anon_sym_use] = ACTIONS(724), + [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(722), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_u8] = ACTIONS(724), + [anon_sym_i8] = ACTIONS(724), + [anon_sym_u16] = ACTIONS(724), + [anon_sym_i16] = ACTIONS(724), + [anon_sym_u32] = ACTIONS(724), + [anon_sym_i32] = ACTIONS(724), + [anon_sym_u64] = ACTIONS(724), + [anon_sym_i64] = ACTIONS(724), + [anon_sym_u128] = ACTIONS(724), + [anon_sym_i128] = ACTIONS(724), + [anon_sym_usize] = ACTIONS(724), + [anon_sym_bool] = ACTIONS(724), + [anon_sym_ByteArray] = ACTIONS(724), + [anon_sym_felt252] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_PERCENT] = ACTIONS(724), + [anon_sym_CARET] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(722), + [anon_sym_LT_LT] = ACTIONS(722), + [anon_sym_GT_GT] = ACTIONS(722), + [anon_sym_PLUS_EQ] = ACTIONS(722), + [anon_sym_DASH_EQ] = ACTIONS(722), + [anon_sym_STAR_EQ] = ACTIONS(722), + [anon_sym_SLASH_EQ] = ACTIONS(722), + [anon_sym_PERCENT_EQ] = ACTIONS(722), + [anon_sym_EQ_EQ] = ACTIONS(722), + [anon_sym_BANG_EQ] = ACTIONS(722), + [anon_sym_GT_EQ] = ACTIONS(722), + [anon_sym_LT_EQ] = ACTIONS(722), + [anon_sym_AT] = ACTIONS(722), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_DOT] = ACTIONS(724), + [anon_sym_QMARK] = ACTIONS(722), + [anon_sym_break] = ACTIONS(724), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_default] = ACTIONS(724), + [anon_sym_if] = ACTIONS(724), + [anon_sym_extern] = ACTIONS(724), + [anon_sym_loop] = ACTIONS(724), + [anon_sym_match] = ACTIONS(724), + [anon_sym_pub] = ACTIONS(724), + [anon_sym_return] = ACTIONS(724), + [anon_sym_while] = ACTIONS(724), + [anon_sym_for] = ACTIONS(724), + [sym_numeric_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(722), + [sym_shortstring_literal] = ACTIONS(722), + [anon_sym_true] = ACTIONS(724), + [anon_sym_false] = ACTIONS(724), + [anon_sym_move] = ACTIONS(724), + [anon_sym_ref] = ACTIONS(724), + [sym_identifier] = ACTIONS(724), + [sym_super] = ACTIONS(724), + [sym_line_comment] = ACTIONS(3), + }, + [117] = { + [ts_builtin_sym_end] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_impl] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_trait] = ACTIONS(728), + [anon_sym_type] = ACTIONS(728), + [anon_sym_const] = ACTIONS(728), + [anon_sym_EQ] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(728), + [anon_sym_POUND] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(726), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_mod] = ACTIONS(728), + [anon_sym_struct] = ACTIONS(728), + [anon_sym_enum] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_fn] = ACTIONS(728), + [anon_sym_let] = ACTIONS(728), + [anon_sym_use] = ACTIONS(728), + [anon_sym_COLON_COLON] = ACTIONS(726), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_u8] = ACTIONS(728), + [anon_sym_i8] = ACTIONS(728), + [anon_sym_u16] = ACTIONS(728), + [anon_sym_i16] = ACTIONS(728), + [anon_sym_u32] = ACTIONS(728), + [anon_sym_i32] = ACTIONS(728), + [anon_sym_u64] = ACTIONS(728), + [anon_sym_i64] = ACTIONS(728), + [anon_sym_u128] = ACTIONS(728), + [anon_sym_i128] = ACTIONS(728), + [anon_sym_usize] = ACTIONS(728), + [anon_sym_bool] = ACTIONS(728), + [anon_sym_ByteArray] = ACTIONS(728), + [anon_sym_felt252] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_PERCENT] = ACTIONS(728), + [anon_sym_CARET] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(726), + [anon_sym_LT_LT] = ACTIONS(726), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_PLUS_EQ] = ACTIONS(726), + [anon_sym_DASH_EQ] = ACTIONS(726), + [anon_sym_STAR_EQ] = ACTIONS(726), + [anon_sym_SLASH_EQ] = ACTIONS(726), + [anon_sym_PERCENT_EQ] = ACTIONS(726), + [anon_sym_EQ_EQ] = ACTIONS(726), + [anon_sym_BANG_EQ] = ACTIONS(726), + [anon_sym_GT_EQ] = ACTIONS(726), + [anon_sym_LT_EQ] = ACTIONS(726), + [anon_sym_AT] = ACTIONS(726), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_DOT] = ACTIONS(728), + [anon_sym_QMARK] = ACTIONS(726), + [anon_sym_break] = ACTIONS(728), + [anon_sym_continue] = ACTIONS(728), + [anon_sym_default] = ACTIONS(728), + [anon_sym_if] = ACTIONS(728), + [anon_sym_extern] = ACTIONS(728), + [anon_sym_loop] = ACTIONS(728), + [anon_sym_match] = ACTIONS(728), + [anon_sym_pub] = ACTIONS(728), + [anon_sym_return] = ACTIONS(728), + [anon_sym_while] = ACTIONS(728), + [anon_sym_for] = ACTIONS(728), + [sym_numeric_literal] = ACTIONS(728), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_shortstring_literal] = ACTIONS(726), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_move] = ACTIONS(728), + [anon_sym_ref] = ACTIONS(728), + [sym_identifier] = ACTIONS(728), + [sym_super] = ACTIONS(728), + [sym_line_comment] = ACTIONS(3), + }, + [118] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(132), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(743), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(730), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(734), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21127,14 +22280,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -21148,53 +22301,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [110] = { - [sym_macro_invocation] = STATE(517), + [119] = { + [sym_macro_invocation] = STATE(503), [sym_attribute_item] = STATE(129), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(670), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(742), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(736), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(732), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21213,14 +22368,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -21234,50 +22389,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [111] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(129), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(670), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(129), + [120] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(132), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(743), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(738), + [anon_sym_RBRACK] = ACTIONS(734), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -21299,14 +22456,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -21320,507 +22477,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [112] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(129), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(670), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(129), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(740), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(79), - [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), - [sym_super] = ACTIONS(85), - [sym_line_comment] = ACTIONS(3), - }, - [113] = { - [ts_builtin_sym_end] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_POUND] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(605), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_ByteArray] = ACTIONS(607), - [anon_sym_felt252] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(605), - [anon_sym_PIPE_PIPE] = ACTIONS(605), - [anon_sym_LT_LT] = ACTIONS(605), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_PLUS_EQ] = ACTIONS(605), - [anon_sym_DASH_EQ] = ACTIONS(605), - [anon_sym_STAR_EQ] = ACTIONS(605), - [anon_sym_SLASH_EQ] = ACTIONS(605), - [anon_sym_PERCENT_EQ] = ACTIONS(605), - [anon_sym_EQ_EQ] = ACTIONS(605), - [anon_sym_BANG_EQ] = ACTIONS(605), - [anon_sym_GT_EQ] = ACTIONS(605), - [anon_sym_LT_EQ] = ACTIONS(605), - [anon_sym_AT] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(605), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_extern] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [sym_numeric_literal] = ACTIONS(607), - [aux_sym_string_literal_token1] = ACTIONS(605), - [sym_shortstring_literal] = ACTIONS(605), - [anon_sym_true] = ACTIONS(607), - [anon_sym_false] = ACTIONS(607), - [anon_sym_else] = ACTIONS(607), - [anon_sym_move] = ACTIONS(607), - [anon_sym_ref] = ACTIONS(607), - [sym_identifier] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_line_comment] = ACTIONS(3), - }, - [114] = { - [ts_builtin_sym_end] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_impl] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(553), - [anon_sym_trait] = ACTIONS(555), - [anon_sym_type] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(555), - [anon_sym_POUND] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_mod] = ACTIONS(555), - [anon_sym_struct] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_use] = ACTIONS(555), - [anon_sym_COLON_COLON] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(553), - [anon_sym_u8] = ACTIONS(555), - [anon_sym_i8] = ACTIONS(555), - [anon_sym_u16] = ACTIONS(555), - [anon_sym_i16] = ACTIONS(555), - [anon_sym_u32] = ACTIONS(555), - [anon_sym_i32] = ACTIONS(555), - [anon_sym_u64] = ACTIONS(555), - [anon_sym_i64] = ACTIONS(555), - [anon_sym_u128] = ACTIONS(555), - [anon_sym_i128] = ACTIONS(555), - [anon_sym_usize] = ACTIONS(555), - [anon_sym_bool] = ACTIONS(555), - [anon_sym_ByteArray] = ACTIONS(555), - [anon_sym_felt252] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(553), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_AMP] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(553), - [anon_sym_PIPE_PIPE] = ACTIONS(553), - [anon_sym_LT_LT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(553), - [anon_sym_PLUS_EQ] = ACTIONS(553), - [anon_sym_DASH_EQ] = ACTIONS(553), - [anon_sym_STAR_EQ] = ACTIONS(553), - [anon_sym_SLASH_EQ] = ACTIONS(553), - [anon_sym_PERCENT_EQ] = ACTIONS(553), - [anon_sym_EQ_EQ] = ACTIONS(553), - [anon_sym_BANG_EQ] = ACTIONS(553), - [anon_sym_GT_EQ] = ACTIONS(553), - [anon_sym_LT_EQ] = ACTIONS(553), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(553), - [anon_sym_QMARK] = ACTIONS(553), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_default] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_extern] = ACTIONS(555), - [anon_sym_loop] = ACTIONS(555), - [anon_sym_match] = ACTIONS(555), - [anon_sym_pub] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_static] = ACTIONS(555), - [anon_sym_while] = ACTIONS(555), - [anon_sym_for] = ACTIONS(555), - [sym_numeric_literal] = ACTIONS(555), - [aux_sym_string_literal_token1] = ACTIONS(553), - [sym_shortstring_literal] = ACTIONS(553), - [anon_sym_true] = ACTIONS(555), - [anon_sym_false] = ACTIONS(555), - [anon_sym_else] = ACTIONS(555), - [anon_sym_move] = ACTIONS(555), - [anon_sym_ref] = ACTIONS(555), - [sym_identifier] = ACTIONS(555), - [sym_super] = ACTIONS(555), + [121] = { + [ts_builtin_sym_end] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_impl] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_trait] = ACTIONS(738), + [anon_sym_type] = ACTIONS(738), + [anon_sym_const] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_POUND] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_mod] = ACTIONS(738), + [anon_sym_struct] = ACTIONS(738), + [anon_sym_enum] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(736), + [anon_sym_fn] = ACTIONS(738), + [anon_sym_let] = ACTIONS(738), + [anon_sym_use] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_u8] = ACTIONS(738), + [anon_sym_i8] = ACTIONS(738), + [anon_sym_u16] = ACTIONS(738), + [anon_sym_i16] = ACTIONS(738), + [anon_sym_u32] = ACTIONS(738), + [anon_sym_i32] = ACTIONS(738), + [anon_sym_u64] = ACTIONS(738), + [anon_sym_i64] = ACTIONS(738), + [anon_sym_u128] = ACTIONS(738), + [anon_sym_i128] = ACTIONS(738), + [anon_sym_usize] = ACTIONS(738), + [anon_sym_bool] = ACTIONS(738), + [anon_sym_ByteArray] = ACTIONS(738), + [anon_sym_felt252] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE] = ACTIONS(736), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(736), + [anon_sym_PIPE_PIPE] = ACTIONS(736), + [anon_sym_LT_LT] = ACTIONS(736), + [anon_sym_GT_GT] = ACTIONS(736), + [anon_sym_PLUS_EQ] = ACTIONS(736), + [anon_sym_DASH_EQ] = ACTIONS(736), + [anon_sym_STAR_EQ] = ACTIONS(736), + [anon_sym_SLASH_EQ] = ACTIONS(736), + [anon_sym_PERCENT_EQ] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(736), + [anon_sym_BANG_EQ] = ACTIONS(736), + [anon_sym_GT_EQ] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(736), + [anon_sym_break] = ACTIONS(738), + [anon_sym_continue] = ACTIONS(738), + [anon_sym_default] = ACTIONS(738), + [anon_sym_if] = ACTIONS(738), + [anon_sym_extern] = ACTIONS(738), + [anon_sym_loop] = ACTIONS(738), + [anon_sym_match] = ACTIONS(738), + [anon_sym_pub] = ACTIONS(738), + [anon_sym_return] = ACTIONS(738), + [anon_sym_while] = ACTIONS(738), + [anon_sym_for] = ACTIONS(738), + [sym_numeric_literal] = ACTIONS(738), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_shortstring_literal] = ACTIONS(736), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [anon_sym_move] = ACTIONS(738), + [anon_sym_ref] = ACTIONS(738), + [sym_identifier] = ACTIONS(738), + [sym_super] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), }, - [115] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(129), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(670), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(129), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(79), - [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [122] = { + [ts_builtin_sym_end] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_impl] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_trait] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_const] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_POUND] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(742), + [anon_sym_struct] = ACTIONS(742), + [anon_sym_enum] = ACTIONS(742), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(742), + [anon_sym_let] = ACTIONS(742), + [anon_sym_use] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(740), + [anon_sym_STAR] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_u8] = ACTIONS(742), + [anon_sym_i8] = ACTIONS(742), + [anon_sym_u16] = ACTIONS(742), + [anon_sym_i16] = ACTIONS(742), + [anon_sym_u32] = ACTIONS(742), + [anon_sym_i32] = ACTIONS(742), + [anon_sym_u64] = ACTIONS(742), + [anon_sym_i64] = ACTIONS(742), + [anon_sym_u128] = ACTIONS(742), + [anon_sym_i128] = ACTIONS(742), + [anon_sym_usize] = ACTIONS(742), + [anon_sym_bool] = ACTIONS(742), + [anon_sym_ByteArray] = ACTIONS(742), + [anon_sym_felt252] = ACTIONS(742), + [anon_sym_LT] = ACTIONS(742), + [anon_sym_GT] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_PERCENT] = ACTIONS(742), + [anon_sym_CARET] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(742), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [anon_sym_LT_LT] = ACTIONS(740), + [anon_sym_GT_GT] = ACTIONS(740), + [anon_sym_PLUS_EQ] = ACTIONS(740), + [anon_sym_DASH_EQ] = ACTIONS(740), + [anon_sym_STAR_EQ] = ACTIONS(740), + [anon_sym_SLASH_EQ] = ACTIONS(740), + [anon_sym_PERCENT_EQ] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(740), + [anon_sym_break] = ACTIONS(742), + [anon_sym_continue] = ACTIONS(742), + [anon_sym_default] = ACTIONS(742), + [anon_sym_if] = ACTIONS(742), + [anon_sym_extern] = ACTIONS(742), + [anon_sym_loop] = ACTIONS(742), + [anon_sym_match] = ACTIONS(742), + [anon_sym_pub] = ACTIONS(742), + [anon_sym_return] = ACTIONS(742), + [anon_sym_while] = ACTIONS(742), + [anon_sym_for] = ACTIONS(742), + [sym_numeric_literal] = ACTIONS(742), + [aux_sym_string_literal_token1] = ACTIONS(740), + [sym_shortstring_literal] = ACTIONS(740), + [anon_sym_true] = ACTIONS(742), + [anon_sym_false] = ACTIONS(742), + [anon_sym_move] = ACTIONS(742), + [anon_sym_ref] = ACTIONS(742), + [sym_identifier] = ACTIONS(742), + [sym_super] = ACTIONS(742), [sym_line_comment] = ACTIONS(3), }, - [116] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(800), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym__condition] = STATE(1530), - [sym_let_condition] = STATE(1530), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(744), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), + [123] = { + [ts_builtin_sym_end] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_impl] = ACTIONS(746), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_trait] = ACTIONS(746), + [anon_sym_type] = ACTIONS(746), + [anon_sym_const] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(746), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_mod] = ACTIONS(746), + [anon_sym_struct] = ACTIONS(746), + [anon_sym_enum] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_fn] = ACTIONS(746), + [anon_sym_let] = ACTIONS(746), + [anon_sym_use] = ACTIONS(746), + [anon_sym_COLON_COLON] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_u8] = ACTIONS(746), + [anon_sym_i8] = ACTIONS(746), + [anon_sym_u16] = ACTIONS(746), + [anon_sym_i16] = ACTIONS(746), + [anon_sym_u32] = ACTIONS(746), + [anon_sym_i32] = ACTIONS(746), + [anon_sym_u64] = ACTIONS(746), + [anon_sym_i64] = ACTIONS(746), + [anon_sym_u128] = ACTIONS(746), + [anon_sym_i128] = ACTIONS(746), + [anon_sym_usize] = ACTIONS(746), + [anon_sym_bool] = ACTIONS(746), + [anon_sym_ByteArray] = ACTIONS(746), + [anon_sym_felt252] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(746), [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_PIPE] = ACTIONS(746), + [anon_sym_AMP_AMP] = ACTIONS(744), + [anon_sym_PIPE_PIPE] = ACTIONS(744), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_PLUS_EQ] = ACTIONS(744), + [anon_sym_DASH_EQ] = ACTIONS(744), + [anon_sym_STAR_EQ] = ACTIONS(744), + [anon_sym_SLASH_EQ] = ACTIONS(744), + [anon_sym_PERCENT_EQ] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_break] = ACTIONS(746), + [anon_sym_continue] = ACTIONS(746), + [anon_sym_default] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_extern] = ACTIONS(746), + [anon_sym_loop] = ACTIONS(746), + [anon_sym_match] = ACTIONS(746), + [anon_sym_pub] = ACTIONS(746), + [anon_sym_return] = ACTIONS(746), + [anon_sym_while] = ACTIONS(746), + [anon_sym_for] = ACTIONS(746), + [sym_numeric_literal] = ACTIONS(746), + [aux_sym_string_literal_token1] = ACTIONS(744), + [sym_shortstring_literal] = ACTIONS(744), + [anon_sym_true] = ACTIONS(746), + [anon_sym_false] = ACTIONS(746), + [anon_sym_move] = ACTIONS(746), + [anon_sym_ref] = ACTIONS(746), + [sym_identifier] = ACTIONS(746), + [sym_super] = ACTIONS(746), [sym_line_comment] = ACTIONS(3), }, - [117] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(800), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym__condition] = STATE(1502), - [sym_let_condition] = STATE(1502), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [124] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(862), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym__condition] = STATE(1563), + [sym_let_condition] = STATE(1563), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(744), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_let] = ACTIONS(748), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -21828,254 +22822,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [118] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(800), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym__condition] = STATE(1505), - [sym_let_condition] = STATE(1505), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [125] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(862), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym__condition] = STATE(1512), + [sym_let_condition] = STATE(1512), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(744), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_let] = ACTIONS(748), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [119] = { - [ts_builtin_sym_end] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_RBRACE] = ACTIONS(748), - [anon_sym_impl] = ACTIONS(750), - [anon_sym_SEMI] = ACTIONS(748), - [anon_sym_trait] = ACTIONS(750), - [anon_sym_type] = ACTIONS(750), - [anon_sym_const] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(752), - [anon_sym_BANG] = ACTIONS(750), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_mod] = ACTIONS(750), - [anon_sym_struct] = ACTIONS(750), - [anon_sym_enum] = ACTIONS(750), - [anon_sym_fn] = ACTIONS(750), - [anon_sym_let] = ACTIONS(750), - [anon_sym_use] = ACTIONS(750), - [anon_sym_COLON_COLON] = ACTIONS(748), - [anon_sym_STAR] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_u8] = ACTIONS(750), - [anon_sym_i8] = ACTIONS(750), - [anon_sym_u16] = ACTIONS(750), - [anon_sym_i16] = ACTIONS(750), - [anon_sym_u32] = ACTIONS(750), - [anon_sym_i32] = ACTIONS(750), - [anon_sym_u64] = ACTIONS(750), - [anon_sym_i64] = ACTIONS(750), - [anon_sym_u128] = ACTIONS(750), - [anon_sym_i128] = ACTIONS(750), - [anon_sym_usize] = ACTIONS(750), - [anon_sym_bool] = ACTIONS(750), - [anon_sym_ByteArray] = ACTIONS(750), - [anon_sym_felt252] = ACTIONS(750), - [anon_sym_LT] = ACTIONS(752), - [anon_sym_GT] = ACTIONS(752), - [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), [anon_sym_DASH] = ACTIONS(750), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_CARET] = ACTIONS(754), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(752), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [anon_sym_LT_LT] = ACTIONS(754), - [anon_sym_GT_GT] = ACTIONS(754), - [anon_sym_PLUS_EQ] = ACTIONS(754), - [anon_sym_DASH_EQ] = ACTIONS(754), - [anon_sym_STAR_EQ] = ACTIONS(754), - [anon_sym_SLASH_EQ] = ACTIONS(754), - [anon_sym_PERCENT_EQ] = ACTIONS(754), - [anon_sym_EQ_EQ] = ACTIONS(754), - [anon_sym_BANG_EQ] = ACTIONS(754), - [anon_sym_GT_EQ] = ACTIONS(754), - [anon_sym_LT_EQ] = ACTIONS(754), - [anon_sym_AT] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(754), - [anon_sym_break] = ACTIONS(750), - [anon_sym_continue] = ACTIONS(750), - [anon_sym_default] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_extern] = ACTIONS(750), - [anon_sym_loop] = ACTIONS(750), - [anon_sym_match] = ACTIONS(750), - [anon_sym_pub] = ACTIONS(750), - [anon_sym_return] = ACTIONS(750), - [anon_sym_static] = ACTIONS(750), - [anon_sym_while] = ACTIONS(750), - [anon_sym_for] = ACTIONS(750), - [sym_numeric_literal] = ACTIONS(750), - [aux_sym_string_literal_token1] = ACTIONS(748), - [sym_shortstring_literal] = ACTIONS(748), - [anon_sym_true] = ACTIONS(750), - [anon_sym_false] = ACTIONS(750), - [anon_sym_move] = ACTIONS(750), - [anon_sym_ref] = ACTIONS(750), - [sym_identifier] = ACTIONS(750), - [sym_super] = ACTIONS(750), - [sym_line_comment] = ACTIONS(3), - }, - [120] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(800), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym__condition] = STATE(1536), - [sym_let_condition] = STATE(1536), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(744), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -22083,143 +22909,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [121] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(748), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym__condition] = STATE(1650), - [sym_let_condition] = STATE(1650), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_let] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [122] = { - [ts_builtin_sym_end] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(760), + [126] = { + [sym_else_clause] = STATE(115), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(754), [anon_sym_RBRACE] = ACTIONS(754), - [anon_sym_impl] = ACTIONS(762), + [anon_sym_impl] = ACTIONS(756), [anon_sym_SEMI] = ACTIONS(754), - [anon_sym_trait] = ACTIONS(762), - [anon_sym_type] = ACTIONS(762), - [anon_sym_const] = ACTIONS(762), - [anon_sym_EQ] = ACTIONS(752), - [anon_sym_BANG] = ACTIONS(762), - [anon_sym_POUND] = ACTIONS(760), + [anon_sym_trait] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_const] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(756), + [anon_sym_POUND] = ACTIONS(754), [anon_sym_LBRACK] = ACTIONS(754), - [anon_sym_mod] = ACTIONS(762), - [anon_sym_struct] = ACTIONS(762), - [anon_sym_enum] = ACTIONS(762), - [anon_sym_fn] = ACTIONS(762), - [anon_sym_let] = ACTIONS(762), - [anon_sym_use] = ACTIONS(762), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym_STAR] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(756), + [anon_sym_struct] = ACTIONS(756), + [anon_sym_enum] = ACTIONS(756), + [anon_sym_fn] = ACTIONS(756), + [anon_sym_let] = ACTIONS(756), + [anon_sym_use] = ACTIONS(756), + [anon_sym_COLON_COLON] = ACTIONS(754), + [anon_sym_STAR] = ACTIONS(756), [anon_sym_LPAREN] = ACTIONS(754), - [anon_sym_u8] = ACTIONS(762), - [anon_sym_i8] = ACTIONS(762), - [anon_sym_u16] = ACTIONS(762), - [anon_sym_i16] = ACTIONS(762), - [anon_sym_u32] = ACTIONS(762), - [anon_sym_i32] = ACTIONS(762), - [anon_sym_u64] = ACTIONS(762), - [anon_sym_i64] = ACTIONS(762), - [anon_sym_u128] = ACTIONS(762), - [anon_sym_i128] = ACTIONS(762), - [anon_sym_usize] = ACTIONS(762), - [anon_sym_bool] = ACTIONS(762), - [anon_sym_ByteArray] = ACTIONS(762), - [anon_sym_felt252] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(752), - [anon_sym_GT] = ACTIONS(752), - [anon_sym_PLUS] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(752), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(756), + [anon_sym_i8] = ACTIONS(756), + [anon_sym_u16] = ACTIONS(756), + [anon_sym_i16] = ACTIONS(756), + [anon_sym_u32] = ACTIONS(756), + [anon_sym_i32] = ACTIONS(756), + [anon_sym_u64] = ACTIONS(756), + [anon_sym_i64] = ACTIONS(756), + [anon_sym_u128] = ACTIONS(756), + [anon_sym_i128] = ACTIONS(756), + [anon_sym_usize] = ACTIONS(756), + [anon_sym_bool] = ACTIONS(756), + [anon_sym_ByteArray] = ACTIONS(756), + [anon_sym_felt252] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), [anon_sym_CARET] = ACTIONS(754), - [anon_sym_TILDE] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(752), - [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), [anon_sym_AMP_AMP] = ACTIONS(754), [anon_sym_PIPE_PIPE] = ACTIONS(754), [anon_sym_LT_LT] = ACTIONS(754), @@ -22233,189 +22975,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(754), [anon_sym_GT_EQ] = ACTIONS(754), [anon_sym_LT_EQ] = ACTIONS(754), - [anon_sym_AT] = ACTIONS(760), - [anon_sym_DOT] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(754), + [anon_sym_DOT_DOT] = ACTIONS(754), + [anon_sym_DOT] = ACTIONS(756), [anon_sym_QMARK] = ACTIONS(754), - [anon_sym_break] = ACTIONS(762), - [anon_sym_continue] = ACTIONS(762), - [anon_sym_default] = ACTIONS(762), - [anon_sym_if] = ACTIONS(762), - [anon_sym_extern] = ACTIONS(762), - [anon_sym_loop] = ACTIONS(762), - [anon_sym_match] = ACTIONS(762), - [anon_sym_pub] = ACTIONS(762), - [anon_sym_return] = ACTIONS(762), - [anon_sym_static] = ACTIONS(762), - [anon_sym_while] = ACTIONS(762), - [anon_sym_for] = ACTIONS(762), - [sym_numeric_literal] = ACTIONS(762), - [aux_sym_string_literal_token1] = ACTIONS(760), - [sym_shortstring_literal] = ACTIONS(760), - [anon_sym_true] = ACTIONS(762), - [anon_sym_false] = ACTIONS(762), - [anon_sym_move] = ACTIONS(762), - [anon_sym_ref] = ACTIONS(762), - [sym_identifier] = ACTIONS(762), - [sym_super] = ACTIONS(762), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_default] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_extern] = ACTIONS(756), + [anon_sym_loop] = ACTIONS(756), + [anon_sym_match] = ACTIONS(756), + [anon_sym_pub] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [sym_numeric_literal] = ACTIONS(756), + [aux_sym_string_literal_token1] = ACTIONS(754), + [sym_shortstring_literal] = ACTIONS(754), + [anon_sym_true] = ACTIONS(756), + [anon_sym_false] = ACTIONS(756), + [anon_sym_else] = ACTIONS(758), + [anon_sym_move] = ACTIONS(756), + [anon_sym_ref] = ACTIONS(756), + [sym_identifier] = ACTIONS(756), + [sym_super] = ACTIONS(756), [sym_line_comment] = ACTIONS(3), }, - [123] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(800), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym__condition] = STATE(1506), - [sym_let_condition] = STATE(1506), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(744), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [124] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(800), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym__condition] = STATE(1543), - [sym_let_condition] = STATE(1543), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [127] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(862), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym__condition] = STATE(1510), + [sym_let_condition] = STATE(1510), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(744), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_let] = ACTIONS(748), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -22423,84 +23083,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [125] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(800), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym__condition] = STATE(1501), - [sym_let_condition] = STATE(1501), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [128] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(862), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym__condition] = STATE(1527), + [sym_let_condition] = STATE(1527), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(744), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_let] = ACTIONS(748), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -22508,54 +23170,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [126] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(129), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(670), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(129), + [129] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(384), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(882), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(384), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -22578,14 +23242,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -22599,48 +23263,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [127] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(375), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(795), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(375), + [130] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(891), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym__condition] = STATE(1670), + [sym_let_condition] = STATE(1670), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_let] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(764), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [131] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(132), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(743), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -22663,14 +23416,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -22684,48 +23437,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [128] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(375), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(791), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(375), + [132] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(384), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(823), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(384), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -22748,14 +23503,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -22769,48 +23524,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [129] = { - [sym_macro_invocation] = STATE(517), - [sym_attribute_item] = STATE(375), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(678), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_enum_variant_list_repeat1] = STATE(375), + [133] = { + [sym_macro_invocation] = STATE(503), + [sym_attribute_item] = STATE(384), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(884), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_enum_variant_list_repeat1] = STATE(384), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(549), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -22833,14 +23590,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -22854,77 +23611,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [130] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(657), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_tuple_expression_repeat1] = STATE(143), + [134] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(862), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym__condition] = STATE(1437), + [sym_let_condition] = STATE(1437), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_let] = ACTIONS(748), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -22932,83 +23692,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(79), - [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [131] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(758), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [135] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(862), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym__condition] = STATE(1551), + [sym_let_condition] = STATE(1551), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_DASH_GT] = ACTIONS(766), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_let] = ACTIONS(748), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym__] = ACTIONS(768), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -23016,83 +23779,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [132] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(822), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [136] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(862), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym__condition] = STATE(1526), + [sym_let_condition] = STATE(1526), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_DASH_GT] = ACTIONS(770), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_let] = ACTIONS(748), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym__] = ACTIONS(772), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -23100,141 +23866,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [133] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(824), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_DASH_GT] = ACTIONS(774), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym__] = ACTIONS(776), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_TILDE] = ACTIONS(273), + [137] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(765), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_tuple_expression_repeat1] = STATE(154), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [134] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(669), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_tuple_expression_repeat1] = STATE(147), + [138] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(803), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_DASH_GT] = ACTIONS(768), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym__] = ACTIONS(770), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -23249,18 +24019,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(263), [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -23274,51 +24044,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [135] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(738), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_tuple_expression_repeat1] = STATE(146), + [139] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(790), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_DASH_GT] = ACTIONS(772), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym__] = ACTIONS(774), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [140] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(819), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_tuple_expression_repeat1] = STATE(151), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(776), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -23337,14 +24195,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -23358,51 +24216,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [136] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(469), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [141] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(764), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_tuple_expression_repeat1] = STATE(152), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_DASH_GT] = ACTIONS(782), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym__] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(778), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -23417,18 +24277,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -23442,51 +24302,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [137] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(700), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_tuple_expression_repeat1] = STATE(140), + [142] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(536), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_DASH_GT] = ACTIONS(772), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym__] = ACTIONS(774), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -23501,18 +24363,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(263), [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -23526,51 +24388,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [138] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(491), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [143] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(783), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_tuple_expression_repeat1] = STATE(154), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_DASH_GT] = ACTIONS(766), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym__] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(780), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -23585,18 +24449,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -23610,77 +24474,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [139] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(766), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [144] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(759), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_DASH_GT] = ACTIONS(782), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_DASH_GT] = ACTIONS(768), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym__] = ACTIONS(784), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym__] = ACTIONS(770), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -23688,57 +24554,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [140] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(657), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_tuple_expression_repeat1] = STATE(147), + [145] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(831), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_DASH_GT] = ACTIONS(772), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym__] = ACTIONS(774), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -23753,18 +24621,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(263), [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -23778,51 +24646,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [141] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(651), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_tuple_expression_repeat1] = STATE(134), + [146] = { + [ts_builtin_sym_end] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(690), + [anon_sym_type] = ACTIONS(690), + [anon_sym_const] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(690), + [anon_sym_struct] = ACTIONS(690), + [anon_sym_enum] = ACTIONS(690), + [anon_sym_fn] = ACTIONS(690), + [anon_sym_let] = ACTIONS(690), + [anon_sym_use] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_ByteArray] = ACTIONS(690), + [anon_sym_felt252] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(688), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_break] = ACTIONS(690), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_default] = ACTIONS(690), + [anon_sym_if] = ACTIONS(690), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_loop] = ACTIONS(690), + [anon_sym_match] = ACTIONS(690), + [anon_sym_pub] = ACTIONS(690), + [anon_sym_return] = ACTIONS(690), + [anon_sym_while] = ACTIONS(690), + [anon_sym_for] = ACTIONS(690), + [sym_numeric_literal] = ACTIONS(690), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_shortstring_literal] = ACTIONS(688), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_else] = ACTIONS(690), + [anon_sym_move] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(690), + [sym_identifier] = ACTIONS(690), + [sym_super] = ACTIONS(690), + [sym_line_comment] = ACTIONS(3), + }, + [147] = { + [ts_builtin_sym_end] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_EQ] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(704), + [anon_sym_POUND] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_ByteArray] = ACTIONS(704), + [anon_sym_felt252] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(704), + [anon_sym_PERCENT] = ACTIONS(704), + [anon_sym_CARET] = ACTIONS(702), + [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(702), + [anon_sym_PIPE_PIPE] = ACTIONS(702), + [anon_sym_LT_LT] = ACTIONS(702), + [anon_sym_GT_GT] = ACTIONS(702), + [anon_sym_PLUS_EQ] = ACTIONS(702), + [anon_sym_DASH_EQ] = ACTIONS(702), + [anon_sym_STAR_EQ] = ACTIONS(702), + [anon_sym_SLASH_EQ] = ACTIONS(702), + [anon_sym_PERCENT_EQ] = ACTIONS(702), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_GT_EQ] = ACTIONS(702), + [anon_sym_LT_EQ] = ACTIONS(702), + [anon_sym_AT] = ACTIONS(702), + [anon_sym_DOT_DOT] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_QMARK] = ACTIONS(702), + [anon_sym_break] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_extern] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [sym_numeric_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(702), + [sym_shortstring_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(704), + [anon_sym_false] = ACTIONS(704), + [anon_sym_else] = ACTIONS(704), + [anon_sym_move] = ACTIONS(704), + [anon_sym_ref] = ACTIONS(704), + [sym_identifier] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + }, + [148] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(815), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_tuple_expression_repeat1] = STATE(137), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_RPAREN] = ACTIONS(782), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -23841,14 +24883,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -23862,135 +24904,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [142] = { - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_RBRACE] = ACTIONS(760), - [anon_sym_impl] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(754), - [anon_sym_trait] = ACTIONS(762), - [anon_sym_type] = ACTIONS(762), - [anon_sym_const] = ACTIONS(762), - [anon_sym_EQ] = ACTIONS(752), - [anon_sym_BANG] = ACTIONS(762), - [anon_sym_POUND] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(754), - [anon_sym_mod] = ACTIONS(762), - [anon_sym_struct] = ACTIONS(762), - [anon_sym_enum] = ACTIONS(762), - [anon_sym_fn] = ACTIONS(762), - [anon_sym_let] = ACTIONS(762), - [anon_sym_use] = ACTIONS(762), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(754), - [anon_sym_u8] = ACTIONS(762), - [anon_sym_i8] = ACTIONS(762), - [anon_sym_u16] = ACTIONS(762), - [anon_sym_i16] = ACTIONS(762), - [anon_sym_u32] = ACTIONS(762), - [anon_sym_i32] = ACTIONS(762), - [anon_sym_u64] = ACTIONS(762), - [anon_sym_i64] = ACTIONS(762), - [anon_sym_u128] = ACTIONS(762), - [anon_sym_i128] = ACTIONS(762), - [anon_sym_usize] = ACTIONS(762), - [anon_sym_bool] = ACTIONS(762), - [anon_sym_ByteArray] = ACTIONS(762), - [anon_sym_felt252] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(752), - [anon_sym_GT] = ACTIONS(752), - [anon_sym_PLUS] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(752), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_CARET] = ACTIONS(754), - [anon_sym_TILDE] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(752), - [anon_sym_PIPE] = ACTIONS(752), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [anon_sym_LT_LT] = ACTIONS(754), - [anon_sym_GT_GT] = ACTIONS(754), - [anon_sym_PLUS_EQ] = ACTIONS(754), - [anon_sym_DASH_EQ] = ACTIONS(754), - [anon_sym_STAR_EQ] = ACTIONS(754), - [anon_sym_SLASH_EQ] = ACTIONS(754), - [anon_sym_PERCENT_EQ] = ACTIONS(754), - [anon_sym_EQ_EQ] = ACTIONS(754), - [anon_sym_BANG_EQ] = ACTIONS(754), - [anon_sym_GT_EQ] = ACTIONS(754), - [anon_sym_LT_EQ] = ACTIONS(754), - [anon_sym_AT] = ACTIONS(760), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(754), - [anon_sym_break] = ACTIONS(762), - [anon_sym_continue] = ACTIONS(762), - [anon_sym_default] = ACTIONS(762), - [anon_sym_if] = ACTIONS(762), - [anon_sym_extern] = ACTIONS(762), - [anon_sym_loop] = ACTIONS(762), - [anon_sym_match] = ACTIONS(762), - [anon_sym_pub] = ACTIONS(762), - [anon_sym_return] = ACTIONS(762), - [anon_sym_static] = ACTIONS(762), - [anon_sym_while] = ACTIONS(762), - [anon_sym_for] = ACTIONS(762), - [sym_numeric_literal] = ACTIONS(762), - [aux_sym_string_literal_token1] = ACTIONS(760), - [sym_shortstring_literal] = ACTIONS(760), - [anon_sym_true] = ACTIONS(762), - [anon_sym_false] = ACTIONS(762), - [anon_sym_move] = ACTIONS(762), - [anon_sym_ref] = ACTIONS(762), - [sym_identifier] = ACTIONS(762), - [sym_super] = ACTIONS(762), + [149] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(812), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym__] = ACTIONS(786), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), [sym_line_comment] = ACTIONS(3), }, - [143] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_tuple_expression_repeat1] = STATE(147), + [150] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(810), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_DASH_GT] = ACTIONS(788), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym__] = ACTIONS(790), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [151] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(840), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_tuple_expression_repeat1] = STATE(154), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(792), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -24009,14 +25141,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -24030,51 +25162,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [144] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(513), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [152] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(819), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_tuple_expression_repeat1] = STATE(154), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_DASH_GT] = ACTIONS(770), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym__] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(776), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -24089,18 +25223,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -24114,135 +25248,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [145] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(776), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_DASH_GT] = ACTIONS(792), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym__] = ACTIONS(794), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [146] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(651), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_tuple_expression_repeat1] = STATE(147), + [153] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(534), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_DASH_GT] = ACTIONS(768), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym__] = ACTIONS(770), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -24257,18 +25309,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(263), [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -24282,383 +25334,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [147] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(783), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [aux_sym_tuple_expression_repeat1] = STATE(147), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(802), - [anon_sym_COLON_COLON] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_u8] = ACTIONS(813), - [anon_sym_i8] = ACTIONS(813), - [anon_sym_u16] = ACTIONS(813), - [anon_sym_i16] = ACTIONS(813), - [anon_sym_u32] = ACTIONS(813), - [anon_sym_i32] = ACTIONS(813), - [anon_sym_u64] = ACTIONS(813), - [anon_sym_i64] = ACTIONS(813), - [anon_sym_u128] = ACTIONS(813), - [anon_sym_i128] = ACTIONS(813), - [anon_sym_usize] = ACTIONS(813), - [anon_sym_bool] = ACTIONS(813), - [anon_sym_ByteArray] = ACTIONS(813), - [anon_sym_felt252] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(816), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(819), - [anon_sym_AT] = ACTIONS(799), - [anon_sym_break] = ACTIONS(822), - [anon_sym_continue] = ACTIONS(825), - [anon_sym_default] = ACTIONS(828), - [anon_sym_if] = ACTIONS(831), - [anon_sym_loop] = ACTIONS(834), - [anon_sym_match] = ACTIONS(837), - [anon_sym_return] = ACTIONS(840), - [anon_sym_static] = ACTIONS(843), - [anon_sym_while] = ACTIONS(846), - [anon_sym_for] = ACTIONS(849), - [sym_numeric_literal] = ACTIONS(852), - [aux_sym_string_literal_token1] = ACTIONS(855), - [sym_shortstring_literal] = ACTIONS(858), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [anon_sym_move] = ACTIONS(864), - [anon_sym_ref] = ACTIONS(867), - [sym_identifier] = ACTIONS(870), - [sym_super] = ACTIONS(873), - [sym_line_comment] = ACTIONS(3), - }, - [148] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(762), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_DASH_GT] = ACTIONS(876), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym__] = ACTIONS(878), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [149] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(459), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_mutable_specifier] = ACTIONS(880), - [sym_super] = ACTIONS(335), + [154] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(892), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_tuple_expression_repeat1] = STATE(154), + [anon_sym_LBRACE] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_COLON_COLON] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_u8] = ACTIONS(811), + [anon_sym_i8] = ACTIONS(811), + [anon_sym_u16] = ACTIONS(811), + [anon_sym_i16] = ACTIONS(811), + [anon_sym_u32] = ACTIONS(811), + [anon_sym_i32] = ACTIONS(811), + [anon_sym_u64] = ACTIONS(811), + [anon_sym_i64] = ACTIONS(811), + [anon_sym_u128] = ACTIONS(811), + [anon_sym_i128] = ACTIONS(811), + [anon_sym_usize] = ACTIONS(811), + [anon_sym_bool] = ACTIONS(811), + [anon_sym_ByteArray] = ACTIONS(811), + [anon_sym_felt252] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(817), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_break] = ACTIONS(823), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_default] = ACTIONS(829), + [anon_sym_if] = ACTIONS(832), + [anon_sym_loop] = ACTIONS(835), + [anon_sym_match] = ACTIONS(838), + [anon_sym_return] = ACTIONS(841), + [anon_sym_while] = ACTIONS(844), + [anon_sym_for] = ACTIONS(847), + [sym_numeric_literal] = ACTIONS(850), + [aux_sym_string_literal_token1] = ACTIONS(853), + [sym_shortstring_literal] = ACTIONS(856), + [anon_sym_true] = ACTIONS(859), + [anon_sym_false] = ACTIONS(859), + [anon_sym_move] = ACTIONS(862), + [anon_sym_ref] = ACTIONS(865), + [sym_identifier] = ACTIONS(868), + [sym_super] = ACTIONS(871), [sym_line_comment] = ACTIONS(3), }, - [150] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(752), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_mutable_specifier] = ACTIONS(882), - [sym_super] = ACTIONS(309), + [155] = { + [ts_builtin_sym_end] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_EQ] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_POUND] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(706), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(706), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_ByteArray] = ACTIONS(708), + [anon_sym_felt252] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(708), + [anon_sym_SLASH] = ACTIONS(708), + [anon_sym_PERCENT] = ACTIONS(708), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_PLUS_EQ] = ACTIONS(706), + [anon_sym_DASH_EQ] = ACTIONS(706), + [anon_sym_STAR_EQ] = ACTIONS(706), + [anon_sym_SLASH_EQ] = ACTIONS(706), + [anon_sym_PERCENT_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_GT_EQ] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(708), + [anon_sym_QMARK] = ACTIONS(706), + [anon_sym_break] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_extern] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [sym_numeric_literal] = ACTIONS(708), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_shortstring_literal] = ACTIONS(706), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_else] = ACTIONS(708), + [anon_sym_move] = ACTIONS(708), + [anon_sym_ref] = ACTIONS(708), + [sym_identifier] = ACTIONS(708), + [sym_super] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), }, - [151] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(459), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [156] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(765), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [aux_sym_tuple_expression_repeat1] = STATE(143), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(766), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -24677,14 +25571,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -24695,48 +25589,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), [sym_identifier] = ACTIONS(83), - [sym_mutable_specifier] = ACTIONS(884), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [152] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(774), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(356), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(356), - [sym_if_expression] = STATE(356), - [sym_match_expression] = STATE(356), - [sym_while_expression] = STATE(356), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(356), - [sym_loop_expression] = STATE(356), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(886), + [157] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(769), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_mutable_specifier] = ACTIONS(874), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [158] = { + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(876), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_impl] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_trait] = ACTIONS(880), + [anon_sym_type] = ACTIONS(880), + [anon_sym_const] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_POUND] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_struct] = ACTIONS(880), + [anon_sym_enum] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(880), + [anon_sym_let] = ACTIONS(880), + [anon_sym_use] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(880), + [anon_sym_i8] = ACTIONS(880), + [anon_sym_u16] = ACTIONS(880), + [anon_sym_i16] = ACTIONS(880), + [anon_sym_u32] = ACTIONS(880), + [anon_sym_i32] = ACTIONS(880), + [anon_sym_u64] = ACTIONS(880), + [anon_sym_i64] = ACTIONS(880), + [anon_sym_u128] = ACTIONS(880), + [anon_sym_i128] = ACTIONS(880), + [anon_sym_usize] = ACTIONS(880), + [anon_sym_bool] = ACTIONS(880), + [anon_sym_ByteArray] = ACTIONS(880), + [anon_sym_felt252] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(882), + [anon_sym_CARET] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_PLUS_EQ] = ACTIONS(878), + [anon_sym_DASH_EQ] = ACTIONS(878), + [anon_sym_STAR_EQ] = ACTIONS(878), + [anon_sym_SLASH_EQ] = ACTIONS(878), + [anon_sym_PERCENT_EQ] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_AT] = ACTIONS(876), + [anon_sym_DOT_DOT] = ACTIONS(878), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(878), + [anon_sym_break] = ACTIONS(880), + [anon_sym_continue] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_extern] = ACTIONS(880), + [anon_sym_loop] = ACTIONS(880), + [anon_sym_match] = ACTIONS(880), + [anon_sym_pub] = ACTIONS(880), + [anon_sym_return] = ACTIONS(880), + [anon_sym_while] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [sym_numeric_literal] = ACTIONS(880), + [aux_sym_string_literal_token1] = ACTIONS(876), + [sym_shortstring_literal] = ACTIONS(876), + [anon_sym_true] = ACTIONS(880), + [anon_sym_false] = ACTIONS(880), + [anon_sym_move] = ACTIONS(880), + [anon_sym_ref] = ACTIONS(880), + [sym_identifier] = ACTIONS(880), + [sym_super] = ACTIONS(880), + [sym_line_comment] = ACTIONS(3), + }, + [159] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(510), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -24760,16 +25825,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(888), - [anon_sym_loop] = ACTIONS(890), - [anon_sym_match] = ACTIONS(892), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(894), - [anon_sym_for] = ACTIONS(896), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), [aux_sym_string_literal_token1] = ACTIONS(73), [sym_shortstring_literal] = ACTIONS(75), @@ -24778,46 +25843,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_move] = ACTIONS(79), [anon_sym_ref] = ACTIONS(81), [sym_identifier] = ACTIONS(83), + [sym_mutable_specifier] = ACTIONS(884), [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [153] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(794), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [160] = { + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_RBRACE] = ACTIONS(886), + [anon_sym_impl] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_trait] = ACTIONS(888), + [anon_sym_type] = ACTIONS(888), + [anon_sym_const] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BANG] = ACTIONS(888), + [anon_sym_POUND] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(886), + [anon_sym_mod] = ACTIONS(888), + [anon_sym_struct] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(888), + [anon_sym_let] = ACTIONS(888), + [anon_sym_use] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_STAR] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_u8] = ACTIONS(888), + [anon_sym_i8] = ACTIONS(888), + [anon_sym_u16] = ACTIONS(888), + [anon_sym_i16] = ACTIONS(888), + [anon_sym_u32] = ACTIONS(888), + [anon_sym_i32] = ACTIONS(888), + [anon_sym_u64] = ACTIONS(888), + [anon_sym_i64] = ACTIONS(888), + [anon_sym_u128] = ACTIONS(888), + [anon_sym_i128] = ACTIONS(888), + [anon_sym_usize] = ACTIONS(888), + [anon_sym_bool] = ACTIONS(888), + [anon_sym_ByteArray] = ACTIONS(888), + [anon_sym_felt252] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(882), + [anon_sym_CARET] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_PLUS_EQ] = ACTIONS(878), + [anon_sym_DASH_EQ] = ACTIONS(878), + [anon_sym_STAR_EQ] = ACTIONS(878), + [anon_sym_SLASH_EQ] = ACTIONS(878), + [anon_sym_PERCENT_EQ] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_AT] = ACTIONS(886), + [anon_sym_DOT_DOT] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(878), + [anon_sym_break] = ACTIONS(888), + [anon_sym_continue] = ACTIONS(888), + [anon_sym_default] = ACTIONS(888), + [anon_sym_if] = ACTIONS(888), + [anon_sym_extern] = ACTIONS(888), + [anon_sym_loop] = ACTIONS(888), + [anon_sym_match] = ACTIONS(888), + [anon_sym_pub] = ACTIONS(888), + [anon_sym_return] = ACTIONS(888), + [anon_sym_while] = ACTIONS(888), + [anon_sym_for] = ACTIONS(888), + [sym_numeric_literal] = ACTIONS(888), + [aux_sym_string_literal_token1] = ACTIONS(886), + [sym_shortstring_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(888), + [anon_sym_false] = ACTIONS(888), + [anon_sym_move] = ACTIONS(888), + [anon_sym_ref] = ACTIONS(888), + [sym_identifier] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + }, + [161] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(510), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_mutable_specifier] = ACTIONS(890), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [162] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(728), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24842,14 +26080,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -24863,43 +26101,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [154] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(448), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [163] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(825), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [164] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(888), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24924,14 +26248,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -24945,125 +26269,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [155] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(797), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [165] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(501), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), + [sym_numeric_literal] = ACTIONS(892), [aux_sym_string_literal_token1] = ACTIONS(73), [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [156] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(473), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [166] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(530), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25088,14 +26416,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -25109,43 +26437,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [157] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(474), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [167] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(855), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [168] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(526), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25170,14 +26584,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -25191,43 +26605,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [158] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(476), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [169] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(747), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [170] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(527), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25252,14 +26752,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -25273,43 +26773,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [159] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(478), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [171] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(770), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [172] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(528), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25334,14 +26920,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -25355,43 +26941,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [160] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(480), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [173] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(501), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25416,14 +27004,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -25437,44 +27025,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [161] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(481), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), + [174] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(785), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(356), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(356), + [sym_if_expression] = STATE(356), + [sym_match_expression] = STATE(356), + [sym_while_expression] = STATE(356), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(356), + [sym_loop_expression] = STATE(356), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -25498,16 +27088,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(896), + [anon_sym_loop] = ACTIONS(898), + [anon_sym_match] = ACTIONS(900), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(902), + [anon_sym_for] = ACTIONS(904), [sym_numeric_literal] = ACTIONS(71), [aux_sym_string_literal_token1] = ACTIONS(73), [sym_shortstring_literal] = ACTIONS(75), @@ -25519,43 +27109,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [162] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(482), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [175] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(525), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25580,14 +27172,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -25601,43 +27193,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [163] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(484), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [176] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(524), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25662,14 +27256,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -25683,43 +27277,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [164] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(486), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [177] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(523), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25744,14 +27340,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -25765,43 +27361,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [165] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(452), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [178] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(857), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [179] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(522), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25826,14 +27508,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -25847,43 +27529,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [166] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(825), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [180] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(507), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25908,14 +27592,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -25929,43 +27613,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [167] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(728), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [181] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(886), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25990,14 +27676,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -26011,43 +27697,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [168] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(787), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [182] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(889), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26072,14 +27760,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -26093,125 +27781,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [169] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [170] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(823), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [183] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(521), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26236,14 +27844,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -26257,75 +27865,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [171] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(785), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [184] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(859), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -26333,81 +27943,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(79), - [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [172] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(757), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [185] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(792), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [186] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(849), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -26415,81 +28111,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(79), - [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [173] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(816), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [187] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(848), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -26497,49 +28195,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(79), - [anon_sym_ref] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [174] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(717), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [188] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(877), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26564,14 +28264,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -26585,43 +28285,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [175] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(777), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [189] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(843), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [190] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(833), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [191] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(860), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26646,14 +28516,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -26667,75 +28537,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [176] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(710), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [192] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(842), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -26743,49 +28615,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [177] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(779), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [193] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(826), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [194] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(835), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [195] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(836), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [196] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(832), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [197] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(497), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26810,14 +29020,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -26831,75 +29041,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [178] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(642), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [198] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(830), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -26907,50 +29119,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [179] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(778), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(350), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(350), - [sym_if_expression] = STATE(350), - [sym_match_expression] = STATE(350), - [sym_while_expression] = STATE(350), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(350), - [sym_loop_expression] = STATE(350), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(886), + [199] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(501), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -26974,17 +29188,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(888), - [anon_sym_loop] = ACTIONS(890), - [anon_sym_match] = ACTIONS(892), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(894), - [anon_sym_for] = ACTIONS(896), - [sym_numeric_literal] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(892), [aux_sym_string_literal_token1] = ACTIONS(73), [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), @@ -26995,43 +29209,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [180] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [200] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(867), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27056,14 +29272,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -27077,453 +29293,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [181] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(767), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [182] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(801), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [183] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(773), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [184] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(803), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [185] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(805), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), + [201] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(837), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), [sym_line_comment] = ACTIONS(3), }, - [186] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(754), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [202] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(865), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27548,14 +29440,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -27569,43 +29461,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [187] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(453), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [203] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(793), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27630,14 +29524,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -27651,371 +29545,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [188] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(452), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [189] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(807), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [190] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(808), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [191] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(810), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [192] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(809), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [204] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(794), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28040,14 +29608,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -28061,43 +29629,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [193] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(798), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [205] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(872), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28122,14 +29692,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -28143,126 +29713,634 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [194] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(811), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), + [206] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(838), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), [sym_line_comment] = ACTIONS(3), }, - [195] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(673), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [207] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(501), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [208] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(507), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [209] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(726), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [210] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(839), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [211] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(497), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(345), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [212] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(750), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [213] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(858), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(359), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(359), + [sym_if_expression] = STATE(359), + [sym_match_expression] = STATE(359), + [sym_while_expression] = STATE(359), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(359), + [sym_loop_expression] = STATE(359), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -28286,16 +30364,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(896), + [anon_sym_loop] = ACTIONS(898), + [anon_sym_match] = ACTIONS(900), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(902), + [anon_sym_for] = ACTIONS(904), [sym_numeric_literal] = ACTIONS(71), [aux_sym_string_literal_token1] = ACTIONS(73), [sym_shortstring_literal] = ACTIONS(75), @@ -28307,125 +30385,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [196] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(751), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), + [214] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(725), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(898), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), [sym_line_comment] = ACTIONS(3), }, - [197] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(788), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [215] = { + [anon_sym_LBRACE] = ACTIONS(876), + [anon_sym_RBRACE] = ACTIONS(876), + [anon_sym_impl] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_trait] = ACTIONS(880), + [anon_sym_type] = ACTIONS(880), + [anon_sym_const] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_POUND] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_struct] = ACTIONS(880), + [anon_sym_enum] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(880), + [anon_sym_let] = ACTIONS(880), + [anon_sym_use] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(880), + [anon_sym_i8] = ACTIONS(880), + [anon_sym_u16] = ACTIONS(880), + [anon_sym_i16] = ACTIONS(880), + [anon_sym_u32] = ACTIONS(880), + [anon_sym_i32] = ACTIONS(880), + [anon_sym_u64] = ACTIONS(880), + [anon_sym_i64] = ACTIONS(880), + [anon_sym_u128] = ACTIONS(880), + [anon_sym_i128] = ACTIONS(880), + [anon_sym_usize] = ACTIONS(880), + [anon_sym_bool] = ACTIONS(880), + [anon_sym_ByteArray] = ACTIONS(880), + [anon_sym_felt252] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(882), + [anon_sym_CARET] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_PLUS_EQ] = ACTIONS(878), + [anon_sym_DASH_EQ] = ACTIONS(878), + [anon_sym_STAR_EQ] = ACTIONS(878), + [anon_sym_SLASH_EQ] = ACTIONS(878), + [anon_sym_PERCENT_EQ] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_AT] = ACTIONS(876), + [anon_sym_DOT_DOT] = ACTIONS(878), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(878), + [anon_sym_break] = ACTIONS(880), + [anon_sym_continue] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_extern] = ACTIONS(880), + [anon_sym_loop] = ACTIONS(880), + [anon_sym_match] = ACTIONS(880), + [anon_sym_pub] = ACTIONS(880), + [anon_sym_return] = ACTIONS(880), + [anon_sym_while] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [sym_numeric_literal] = ACTIONS(880), + [aux_sym_string_literal_token1] = ACTIONS(876), + [sym_shortstring_literal] = ACTIONS(876), + [anon_sym_true] = ACTIONS(880), + [anon_sym_false] = ACTIONS(880), + [anon_sym_move] = ACTIONS(880), + [anon_sym_ref] = ACTIONS(880), + [sym_identifier] = ACTIONS(880), + [sym_super] = ACTIONS(880), + [sym_line_comment] = ACTIONS(3), + }, + [216] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(814), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [217] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(726), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(906), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [218] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(887), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28450,14 +30784,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -28471,43 +30805,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [198] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(472), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [219] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(868), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28532,14 +30868,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -28553,43 +30889,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [199] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(812), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [220] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(879), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28614,14 +30952,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -28635,44 +30973,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [200] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(780), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [221] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(828), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [sym_numeric_literal] = ACTIONS(71), + [aux_sym_string_literal_token1] = ACTIONS(73), + [sym_shortstring_literal] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), + [sym_line_comment] = ACTIONS(3), + }, + [222] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(890), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(359), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(359), + [sym_if_expression] = STATE(359), + [sym_match_expression] = STATE(359), + [sym_while_expression] = STATE(359), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(359), + [sym_loop_expression] = STATE(359), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -28696,16 +31120,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(896), + [anon_sym_loop] = ACTIONS(898), + [anon_sym_match] = ACTIONS(900), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(902), + [anon_sym_for] = ACTIONS(904), [sym_numeric_literal] = ACTIONS(71), [aux_sym_string_literal_token1] = ACTIONS(73), [sym_shortstring_literal] = ACTIONS(75), @@ -28717,43 +31141,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [201] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(821), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [223] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(844), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [224] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(529), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28778,14 +31288,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(267), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -28799,239 +31309,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [202] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(815), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [203] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(817), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), - [sym_line_comment] = ACTIONS(3), - }, - [204] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(690), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [225] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(873), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -29039,131 +31387,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [205] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(751), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [206] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(452), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [226] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(876), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -29188,17 +31456,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(900), + [sym_numeric_literal] = ACTIONS(71), [aux_sym_string_literal_token1] = ACTIONS(73), [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), @@ -29209,157 +31477,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [207] = { - [sym_macro_invocation] = STATE(866), - [sym_generic_type_with_turbofish] = STATE(1283), - [sym__literal] = STATE(867), - [sym_negative_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_boolean_literal] = STATE(846), - [sym_scoped_identifier] = STATE(732), - [sym_scoped_type_identifier_in_expression_position] = STATE(1484), - [sym_expression] = STATE(819), - [sym_generic_function] = STATE(867), - [sym_tuple_expression] = STATE(867), - [sym_return_expression] = STATE(867), - [sym_struct_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_break_expression] = STATE(867), - [sym_continue_expression] = STATE(867), - [sym_index_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_unit_expression] = STATE(867), - [sym_compound_assignment_expr] = STATE(867), - [sym__expression_ending_with_block] = STATE(867), - [sym_unary_expression] = STATE(867), - [sym_try_expression] = STATE(867), - [sym_field_expression] = STATE(753), - [sym_block] = STATE(867), - [sym_if_expression] = STATE(867), - [sym_match_expression] = STATE(867), - [sym_while_expression] = STATE(867), - [sym_closure_expression] = STATE(867), - [sym_closure_parameters] = STATE(148), - [sym_for_expression] = STATE(867), - [sym_loop_expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_call_expression] = STATE(867), - [sym_reference_expression] = STATE(867), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_COLON_COLON] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_u8] = ACTIONS(269), - [anon_sym_i8] = ACTIONS(269), - [anon_sym_u16] = ACTIONS(269), - [anon_sym_i16] = ACTIONS(269), - [anon_sym_u32] = ACTIONS(269), - [anon_sym_i32] = ACTIONS(269), - [anon_sym_u64] = ACTIONS(269), - [anon_sym_i64] = ACTIONS(269), - [anon_sym_u128] = ACTIONS(269), - [anon_sym_i128] = ACTIONS(269), - [anon_sym_usize] = ACTIONS(269), - [anon_sym_bool] = ACTIONS(269), - [anon_sym_ByteArray] = ACTIONS(269), - [anon_sym_felt252] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(758), - [anon_sym_TILDE] = ACTIONS(273), + [227] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(845), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_default] = ACTIONS(279), - [anon_sym_if] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_match] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_static] = ACTIONS(289), - [anon_sym_while] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [sym_numeric_literal] = ACTIONS(295), - [aux_sym_string_literal_token1] = ACTIONS(297), - [sym_shortstring_literal] = ACTIONS(299), - [anon_sym_true] = ACTIONS(301), - [anon_sym_false] = ACTIONS(301), - [anon_sym_move] = ACTIONS(303), - [anon_sym_ref] = ACTIONS(305), - [sym_identifier] = ACTIONS(307), - [sym_super] = ACTIONS(309), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), [sym_line_comment] = ACTIONS(3), }, - [208] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(708), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [228] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(822), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -29367,49 +31639,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [209] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(814), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [229] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(846), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [230] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(870), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -29434,14 +31792,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -29455,126 +31813,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [210] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(453), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [231] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(881), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [211] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(638), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(356), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(356), - [sym_if_expression] = STATE(356), - [sym_match_expression] = STATE(356), - [sym_while_expression] = STATE(356), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(356), - [sym_loop_expression] = STATE(356), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(886), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -29598,16 +31876,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(888), - [anon_sym_loop] = ACTIONS(890), - [anon_sym_match] = ACTIONS(892), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(894), - [anon_sym_for] = ACTIONS(896), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), [aux_sym_string_literal_token1] = ACTIONS(73), [sym_shortstring_literal] = ACTIONS(75), @@ -29619,125 +31897,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [212] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(796), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [213] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(668), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [232] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(878), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -29762,14 +31960,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -29783,372 +31981,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [214] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(772), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [215] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(448), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [216] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(781), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [217] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(782), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [233] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(856), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [218] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(676), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(350), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(350), - [sym_if_expression] = STATE(350), - [sym_match_expression] = STATE(350), - [sym_while_expression] = STATE(350), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(350), - [sym_loop_expression] = STATE(350), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(886), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -30172,16 +32044,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(888), - [anon_sym_loop] = ACTIONS(890), - [anon_sym_match] = ACTIONS(892), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(894), - [anon_sym_for] = ACTIONS(896), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), [aux_sym_string_literal_token1] = ACTIONS(73), [sym_shortstring_literal] = ACTIONS(75), @@ -30193,125 +32065,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [219] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(784), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [220] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(806), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [234] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(866), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -30336,14 +32128,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -30357,44 +32149,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [221] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(663), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), + [235] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(861), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(356), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(356), + [sym_if_expression] = STATE(356), + [sym_match_expression] = STATE(356), + [sym_while_expression] = STATE(356), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(356), + [sym_loop_expression] = STATE(356), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), + [anon_sym_LBRACE] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -30418,16 +32212,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(896), + [anon_sym_loop] = ACTIONS(898), + [anon_sym_match] = ACTIONS(900), + [anon_sym_return] = ACTIONS(65), + [anon_sym_while] = ACTIONS(902), + [anon_sym_for] = ACTIONS(904), [sym_numeric_literal] = ACTIONS(71), [aux_sym_string_literal_token1] = ACTIONS(73), [sym_shortstring_literal] = ACTIONS(75), @@ -30439,43 +32233,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [222] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(672), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [236] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(869), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -30500,14 +32296,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -30521,75 +32317,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [223] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(649), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [237] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1311), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(649), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(874), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(144), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(327), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_COLON_COLON] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(325), + [anon_sym_i8] = ACTIONS(325), + [anon_sym_u16] = ACTIONS(325), + [anon_sym_i16] = ACTIONS(325), + [anon_sym_u32] = ACTIONS(325), + [anon_sym_i32] = ACTIONS(325), + [anon_sym_u64] = ACTIONS(325), + [anon_sym_i64] = ACTIONS(325), + [anon_sym_u128] = ACTIONS(325), + [anon_sym_i128] = ACTIONS(325), + [anon_sym_usize] = ACTIONS(325), + [anon_sym_bool] = ACTIONS(325), + [anon_sym_ByteArray] = ACTIONS(325), + [anon_sym_felt252] = ACTIONS(325), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(331), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(333), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -30597,131 +32395,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(335), + [anon_sym_ref] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [sym_super] = ACTIONS(341), [sym_line_comment] = ACTIONS(3), }, - [224] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(452), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [238] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(875), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(900), + [sym_numeric_literal] = ACTIONS(71), [aux_sym_string_literal_token1] = ACTIONS(73), [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [225] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(818), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [239] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(863), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -30746,14 +32548,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -30767,157 +32569,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [226] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(786), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [240] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(871), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [227] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(789), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -30925,49 +32647,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [228] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(759), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [241] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(757), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -30992,14 +32716,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -31013,207 +32737,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [229] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(790), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [242] = { + [sym_macro_invocation] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1293), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(821), + [sym_string_literal] = STATE(821), + [sym_boolean_literal] = STATE(821), + [sym_scoped_identifier] = STATE(636), + [sym_scoped_type_identifier_in_expression_position] = STATE(1504), + [sym_expression] = STATE(864), + [sym_expression_except_range] = STATE(675), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_range_expression] = STATE(801), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(673), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_closure_expression] = STATE(806), + [sym_closure_parameters] = STATE(149), + [sym_for_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(275), + [anon_sym_u8] = ACTIONS(277), + [anon_sym_i8] = ACTIONS(277), + [anon_sym_u16] = ACTIONS(277), + [anon_sym_i16] = ACTIONS(277), + [anon_sym_u32] = ACTIONS(277), + [anon_sym_i32] = ACTIONS(277), + [anon_sym_u64] = ACTIONS(277), + [anon_sym_i64] = ACTIONS(277), + [anon_sym_u128] = ACTIONS(277), + [anon_sym_i128] = ACTIONS(277), + [anon_sym_usize] = ACTIONS(277), + [anon_sym_bool] = ACTIONS(277), + [anon_sym_ByteArray] = ACTIONS(277), + [anon_sym_felt252] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(279), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(764), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_match] = ACTIONS(291), + [anon_sym_return] = ACTIONS(293), + [anon_sym_while] = ACTIONS(295), + [anon_sym_for] = ACTIONS(297), + [sym_numeric_literal] = ACTIONS(299), + [aux_sym_string_literal_token1] = ACTIONS(301), + [sym_shortstring_literal] = ACTIONS(303), + [anon_sym_true] = ACTIONS(305), + [anon_sym_false] = ACTIONS(305), + [anon_sym_move] = ACTIONS(307), + [anon_sym_ref] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_super] = ACTIONS(313), [sym_line_comment] = ACTIONS(3), }, - [230] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(792), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [231] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1252), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(458), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(802), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(138), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [243] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(752), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -31238,14 +32884,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(51), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(63), - [anon_sym_static] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -31259,157 +32905,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, - [232] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(671), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), - [anon_sym_while] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [sym_numeric_literal] = ACTIONS(71), - [aux_sym_string_literal_token1] = ACTIONS(73), - [sym_shortstring_literal] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), - [sym_line_comment] = ACTIONS(3), - }, - [233] = { - [sym_macro_invocation] = STATE(517), - [sym_generic_type_with_turbofish] = STATE(1310), - [sym__literal] = STATE(467), - [sym_negative_literal] = STATE(520), - [sym_string_literal] = STATE(520), - [sym_boolean_literal] = STATE(520), - [sym_scoped_identifier] = STATE(745), - [sym_scoped_type_identifier_in_expression_position] = STATE(1454), - [sym_expression] = STATE(793), - [sym_generic_function] = STATE(467), - [sym_tuple_expression] = STATE(467), - [sym_return_expression] = STATE(467), - [sym_struct_expression] = STATE(467), - [sym_assignment_expression] = STATE(467), - [sym_break_expression] = STATE(467), - [sym_continue_expression] = STATE(467), - [sym_index_expression] = STATE(467), - [sym_array_expression] = STATE(467), - [sym_parenthesized_expression] = STATE(467), - [sym_unit_expression] = STATE(467), - [sym_compound_assignment_expr] = STATE(467), - [sym__expression_ending_with_block] = STATE(467), - [sym_unary_expression] = STATE(467), - [sym_try_expression] = STATE(467), - [sym_field_expression] = STATE(460), - [sym_block] = STATE(467), - [sym_if_expression] = STATE(467), - [sym_match_expression] = STATE(467), - [sym_while_expression] = STATE(467), - [sym_closure_expression] = STATE(467), - [sym_closure_parameters] = STATE(131), - [sym_for_expression] = STATE(467), - [sym_loop_expression] = STATE(467), - [sym_binary_expression] = STATE(467), - [sym_call_expression] = STATE(467), - [sym_reference_expression] = STATE(467), + [244] = { + [sym_macro_invocation] = STATE(503), + [sym_generic_type_with_turbofish] = STATE(1259), + [sym__literal] = STATE(473), + [sym_negative_literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [sym_scoped_identifier] = STATE(468), + [sym_scoped_type_identifier_in_expression_position] = STATE(1465), + [sym_expression] = STATE(824), + [sym_expression_except_range] = STATE(459), + [sym_generic_function] = STATE(473), + [sym_tuple_expression] = STATE(473), + [sym_return_expression] = STATE(473), + [sym_struct_expression] = STATE(473), + [sym_assignment_expression] = STATE(473), + [sym_break_expression] = STATE(473), + [sym_continue_expression] = STATE(473), + [sym_index_expression] = STATE(473), + [sym_array_expression] = STATE(473), + [sym_parenthesized_expression] = STATE(473), + [sym_unit_expression] = STATE(473), + [sym_compound_assignment_expr] = STATE(473), + [sym__expression_ending_with_block] = STATE(473), + [sym_unary_expression] = STATE(473), + [sym_range_expression] = STATE(511), + [sym_try_expression] = STATE(473), + [sym_field_expression] = STATE(461), + [sym_block] = STATE(473), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_closure_expression] = STATE(473), + [sym_closure_parameters] = STATE(153), + [sym_for_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_binary_expression] = STATE(473), + [sym_call_expression] = STATE(473), + [sym_reference_expression] = STATE(473), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(319), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(315), - [anon_sym_i8] = ACTIONS(315), - [anon_sym_u16] = ACTIONS(315), - [anon_sym_i16] = ACTIONS(315), - [anon_sym_u32] = ACTIONS(315), - [anon_sym_i32] = ACTIONS(315), - [anon_sym_u64] = ACTIONS(315), - [anon_sym_i64] = ACTIONS(315), - [anon_sym_u128] = ACTIONS(315), - [anon_sym_i128] = ACTIONS(315), - [anon_sym_usize] = ACTIONS(315), - [anon_sym_bool] = ACTIONS(315), - [anon_sym_ByteArray] = ACTIONS(315), - [anon_sym_felt252] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_break] = ACTIONS(321), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_default] = ACTIONS(323), - [anon_sym_if] = ACTIONS(253), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_return] = ACTIONS(325), - [anon_sym_static] = ACTIONS(327), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_default] = ACTIONS(53), + [anon_sym_if] = ACTIONS(249), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_return] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), [sym_numeric_literal] = ACTIONS(71), @@ -31417,10 +32983,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(75), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_move] = ACTIONS(329), - [anon_sym_ref] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_super] = ACTIONS(335), + [anon_sym_move] = ACTIONS(79), + [anon_sym_ref] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [sym_super] = ACTIONS(85), [sym_line_comment] = ACTIONS(3), }, }; @@ -31429,7 +32995,7 @@ static const uint16_t ts_small_parse_table[] = { [0] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(585), 23, + ACTIONS(722), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -31450,10 +33016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(587), 39, + ACTIONS(724), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31488,91 +33054,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, anon_sym_extern, anon_sym_pub, sym_identifier, sym_super, - [70] = 12, + [71] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, - sym_mutable_specifier, - STATE(926), 1, - sym_scoped_identifier, - STATE(986), 1, - sym_negative_literal, - STATE(998), 1, - sym__pattern, - STATE(1276), 1, - sym_scoped_type_identifier, - STATE(1479), 1, - sym_generic_type_with_turbofish, - STATE(1672), 1, - sym_generic_type, - STATE(990), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1002), 8, - sym_macro_invocation, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(902), 12, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PIPE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(904), 33, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_static, - anon_sym_while, - anon_sym_for, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_move, - anon_sym_ref, - sym_identifier, - sym_super, - [158] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(521), 23, + ACTIONS(524), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -31593,10 +33084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(523), 39, + ACTIONS(526), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31631,15 +33122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, anon_sym_extern, anon_sym_pub, sym_identifier, sym_super, - [228] = 3, + [142] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(595), 23, + ACTIONS(512), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -31660,10 +33152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(597), 39, + ACTIONS(514), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31698,15 +33190,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, anon_sym_extern, anon_sym_pub, sym_identifier, sym_super, - [298] = 3, + [213] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(529), 23, + ACTIONS(740), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -31727,10 +33220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(531), 39, + ACTIONS(742), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31765,15 +33258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, anon_sym_extern, anon_sym_pub, sym_identifier, sym_super, - [368] = 3, + [284] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(605), 23, + ACTIONS(688), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -31794,10 +33288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(607), 39, + ACTIONS(690), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31832,15 +33326,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, anon_sym_extern, anon_sym_pub, sym_identifier, sym_super, - [438] = 3, + [355] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(553), 23, + ACTIONS(706), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -31861,10 +33356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(555), 39, + ACTIONS(708), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31899,15 +33394,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, anon_sym_extern, anon_sym_pub, sym_identifier, sym_super, - [508] = 3, + [426] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(589), 23, + ACTIONS(702), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -31928,10 +33424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(591), 39, + ACTIONS(704), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31966,32 +33462,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, anon_sym_extern, anon_sym_pub, sym_identifier, sym_super, - [578] = 12, + [497] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(992), 1, + STATE(1022), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -32000,7 +33497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(908), 12, + ACTIONS(908), 13, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, @@ -32011,9 +33508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(910), 33, + ACTIONS(910), 32, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -32037,7 +33535,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32047,39 +33544,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [666] = 3, + [585] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(589), 18, - ts_builtin_sym_end, + ACTIONS(912), 1, + sym_mutable_specifier, + STATE(939), 1, + sym_scoped_identifier, + STATE(1000), 1, + sym__pattern, + STATE(1004), 1, + sym_negative_literal, + STATE(1294), 1, + sym_scoped_type_identifier, + STATE(1500), 1, + sym_generic_type_with_turbofish, + STATE(1669), 1, + sym_generic_type, + STATE(998), 2, + sym_string_literal, + sym_boolean_literal, + STATE(996), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(914), 13, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_BANG, - anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DASH, anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(591), 43, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + ACTIONS(916), 32, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -32094,16 +33603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, + anon_sym_DASH, anon_sym_break, anon_sym_continue, anon_sym_default, anon_sym_if, - anon_sym_extern, anon_sym_loop, anon_sym_match, - anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32113,10 +33620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [735] = 3, + [673] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(605), 18, + ACTIONS(702), 19, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32133,9 +33640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(607), 43, + ACTIONS(704), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32169,7 +33677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32179,10 +33686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [804] = 3, + [742] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(553), 18, + ACTIONS(688), 19, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32199,9 +33706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(555), 43, + ACTIONS(690), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32235,7 +33743,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32245,10 +33752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [873] = 3, + [811] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(912), 16, + ACTIONS(706), 19, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32256,16 +33763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_LPAREN, + anon_sym_GT, anon_sym_DASH, anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(914), 43, + ACTIONS(708), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32299,7 +33809,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32309,10 +33818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [940] = 3, + [880] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(916), 16, + ACTIONS(918), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32327,9 +33836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(918), 43, + ACTIONS(920), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32363,7 +33873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32373,10 +33882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1007] = 3, + [947] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(920), 16, + ACTIONS(922), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32391,9 +33900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(922), 43, + ACTIONS(924), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32427,7 +33937,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32437,10 +33946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1074] = 3, + [1014] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 16, + ACTIONS(926), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32455,9 +33964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(926), 43, + ACTIONS(928), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32491,7 +34001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32501,10 +34010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1141] = 3, + [1081] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(928), 16, + ACTIONS(930), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32519,9 +34028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(930), 43, + ACTIONS(932), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32555,7 +34065,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32565,10 +34074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1208] = 3, + [1148] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(932), 16, + ACTIONS(934), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32583,9 +34092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(934), 43, + ACTIONS(936), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32619,7 +34129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32629,10 +34138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1275] = 3, + [1215] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(936), 16, + ACTIONS(938), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32647,9 +34156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(938), 43, + ACTIONS(940), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32683,7 +34193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32693,10 +34202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1342] = 3, + [1282] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(940), 16, + ACTIONS(942), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32711,9 +34220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(942), 43, + ACTIONS(944), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32747,7 +34257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32757,10 +34266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1409] = 3, + [1349] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(944), 16, + ACTIONS(946), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32775,9 +34284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(946), 43, + ACTIONS(948), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32811,7 +34321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32821,10 +34330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1476] = 3, + [1416] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(948), 16, + ACTIONS(950), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32839,9 +34348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(950), 43, + ACTIONS(952), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32875,7 +34385,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32885,10 +34394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1543] = 3, + [1483] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(952), 16, + ACTIONS(954), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32903,9 +34412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(954), 43, + ACTIONS(956), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32939,7 +34449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -32949,10 +34458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1610] = 3, + [1550] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(956), 16, + ACTIONS(958), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32967,9 +34476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(958), 43, + ACTIONS(960), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33003,7 +34513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33013,10 +34522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1677] = 3, + [1617] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(960), 16, + ACTIONS(962), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33031,9 +34540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(962), 43, + ACTIONS(964), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33067,7 +34577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33077,10 +34586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1744] = 3, + [1684] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(964), 16, + ACTIONS(966), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33095,9 +34604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(966), 43, + ACTIONS(968), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33131,7 +34641,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33141,10 +34650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1811] = 3, + [1751] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(968), 16, + ACTIONS(970), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33159,9 +34668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(970), 43, + ACTIONS(972), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33195,7 +34705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33205,10 +34714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1878] = 3, + [1818] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(972), 16, + ACTIONS(974), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33223,9 +34732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(974), 43, + ACTIONS(976), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33259,7 +34769,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33269,10 +34778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1945] = 3, + [1885] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(976), 16, + ACTIONS(978), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33287,9 +34796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(978), 43, + ACTIONS(980), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33323,7 +34833,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33333,10 +34842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2012] = 3, + [1952] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(980), 16, + ACTIONS(982), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33351,9 +34860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(982), 43, + ACTIONS(984), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33387,7 +34897,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33397,10 +34906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2079] = 3, + [2019] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(984), 16, + ACTIONS(986), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33415,9 +34924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(986), 43, + ACTIONS(988), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33451,7 +34961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33461,10 +34970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2146] = 3, + [2086] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(988), 16, + ACTIONS(990), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33479,9 +34988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(990), 43, + ACTIONS(992), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33515,7 +35025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33525,10 +35034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2213] = 3, + [2153] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(992), 16, + ACTIONS(994), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33543,9 +35052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(994), 43, + ACTIONS(996), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33579,7 +35089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33589,10 +35098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2280] = 3, + [2220] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(996), 16, + ACTIONS(998), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33607,9 +35116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(998), 43, + ACTIONS(1000), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33643,7 +35153,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33653,10 +35162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2347] = 3, + [2287] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1000), 16, + ACTIONS(1002), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33671,9 +35180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1002), 43, + ACTIONS(1004), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33707,7 +35217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33717,10 +35226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2414] = 3, + [2354] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1004), 16, + ACTIONS(1006), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33735,9 +35244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1006), 43, + ACTIONS(1008), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33771,7 +35281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33781,10 +35290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2481] = 3, + [2421] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1008), 16, + ACTIONS(1010), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33799,9 +35308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1010), 43, + ACTIONS(1012), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33835,7 +35345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33845,10 +35354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2548] = 3, + [2488] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1012), 16, + ACTIONS(1014), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33863,9 +35372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1014), 43, + ACTIONS(1016), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33899,7 +35409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33909,10 +35418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2615] = 3, + [2555] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1016), 16, + ACTIONS(1018), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33927,9 +35436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1018), 43, + ACTIONS(1020), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33963,7 +35473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -33973,10 +35482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2682] = 3, + [2622] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1020), 16, + ACTIONS(1022), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33991,9 +35500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1022), 43, + ACTIONS(1024), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34027,7 +35537,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34037,10 +35546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2749] = 3, + [2689] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1024), 16, + ACTIONS(1026), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34055,9 +35564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1026), 43, + ACTIONS(1028), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34091,7 +35601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34101,10 +35610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2816] = 3, + [2756] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1028), 16, + ACTIONS(1030), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34119,9 +35628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1030), 43, + ACTIONS(1032), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34155,7 +35665,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34165,10 +35674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2883] = 3, + [2823] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1032), 16, + ACTIONS(1034), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34183,9 +35692,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1034), 43, + ACTIONS(1036), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34219,7 +35729,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34229,10 +35738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [2950] = 3, + [2890] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1036), 16, + ACTIONS(1038), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34247,9 +35756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1038), 43, + ACTIONS(1040), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34283,7 +35793,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34293,10 +35802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3017] = 3, + [2957] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1040), 16, + ACTIONS(1042), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34311,9 +35820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1042), 43, + ACTIONS(1044), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34347,7 +35857,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34357,10 +35866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3084] = 3, + [3024] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1044), 16, + ACTIONS(1046), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34375,9 +35884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1046), 43, + ACTIONS(1048), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34411,7 +35921,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34421,10 +35930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3151] = 3, + [3091] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1048), 16, + ACTIONS(1050), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34439,9 +35948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1050), 43, + ACTIONS(1052), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34475,7 +35985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34485,10 +35994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3218] = 3, + [3158] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1052), 16, + ACTIONS(1054), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34503,9 +36012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1054), 43, + ACTIONS(1056), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34539,7 +36049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34549,10 +36058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3285] = 3, + [3225] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1056), 16, + ACTIONS(1058), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34567,9 +36076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1058), 43, + ACTIONS(1060), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34603,7 +36113,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34613,10 +36122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3352] = 3, + [3292] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1060), 16, + ACTIONS(1062), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34631,9 +36140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1062), 43, + ACTIONS(1064), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34667,7 +36177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34677,10 +36186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3419] = 3, + [3359] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1064), 16, + ACTIONS(1066), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34695,9 +36204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1066), 43, + ACTIONS(1068), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34731,7 +36241,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34741,10 +36250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3486] = 3, + [3426] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1068), 16, + ACTIONS(1070), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34759,9 +36268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1070), 43, + ACTIONS(1072), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34795,7 +36305,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34805,10 +36314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3553] = 3, + [3493] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1072), 16, + ACTIONS(1074), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34823,9 +36332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1074), 43, + ACTIONS(1076), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34859,7 +36369,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34869,10 +36378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3620] = 3, + [3560] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1076), 16, + ACTIONS(1078), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34887,9 +36396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1078), 43, + ACTIONS(1080), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34923,7 +36433,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34933,10 +36442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3687] = 3, + [3627] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1080), 16, + ACTIONS(1082), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34951,9 +36460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1082), 43, + ACTIONS(1084), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34987,7 +36497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -34997,10 +36506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3754] = 3, + [3694] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1084), 16, + ACTIONS(1086), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35015,9 +36524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1086), 43, + ACTIONS(1088), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35051,7 +36561,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35061,10 +36570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3821] = 3, + [3761] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1088), 16, + ACTIONS(1090), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35079,9 +36588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1090), 43, + ACTIONS(1092), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35115,7 +36625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35125,10 +36634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3888] = 3, + [3828] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1092), 16, + ACTIONS(1094), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35143,9 +36652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1094), 43, + ACTIONS(1096), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35179,7 +36689,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35189,10 +36698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3955] = 3, + [3895] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1096), 16, + ACTIONS(1098), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35207,9 +36716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1098), 43, + ACTIONS(1100), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35243,7 +36753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35253,10 +36762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4022] = 3, + [3962] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1100), 16, + ACTIONS(1102), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35271,9 +36780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1102), 43, + ACTIONS(1104), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35307,7 +36817,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35317,10 +36826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4089] = 3, + [4029] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1104), 16, + ACTIONS(1106), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35335,9 +36844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1106), 43, + ACTIONS(1108), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35371,7 +36881,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35381,10 +36890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4156] = 3, + [4096] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1108), 16, + ACTIONS(1110), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35399,9 +36908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1110), 43, + ACTIONS(1112), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35435,7 +36945,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35445,10 +36954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4223] = 3, + [4163] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1112), 16, + ACTIONS(1114), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35463,9 +36972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1114), 43, + ACTIONS(1116), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35499,7 +37009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35509,10 +37018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4290] = 3, + [4230] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1116), 16, + ACTIONS(1118), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35527,9 +37036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1118), 43, + ACTIONS(1120), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35563,7 +37073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35573,10 +37082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4357] = 3, + [4297] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1120), 16, + ACTIONS(1122), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35591,9 +37100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1122), 43, + ACTIONS(1124), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35627,7 +37137,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35637,10 +37146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4424] = 3, + [4364] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1124), 16, + ACTIONS(1126), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35655,9 +37164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1126), 43, + ACTIONS(1128), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35691,7 +37201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35701,10 +37210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4491] = 3, + [4431] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1128), 16, + ACTIONS(1130), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35719,9 +37228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1130), 43, + ACTIONS(1132), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35755,7 +37265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35765,10 +37274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4558] = 3, + [4498] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1132), 16, + ACTIONS(1134), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35783,9 +37292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1134), 43, + ACTIONS(1136), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35819,7 +37329,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35829,10 +37338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4625] = 3, + [4565] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1136), 16, + ACTIONS(1138), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35847,9 +37356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1138), 43, + ACTIONS(1140), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35883,7 +37393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35893,10 +37402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4692] = 3, + [4632] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1140), 16, + ACTIONS(1142), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35911,9 +37420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1142), 43, + ACTIONS(1144), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35947,7 +37457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -35957,10 +37466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4759] = 3, + [4699] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1144), 16, + ACTIONS(1146), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35975,9 +37484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1146), 43, + ACTIONS(1148), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36011,7 +37521,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36021,10 +37530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4826] = 3, + [4766] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1148), 16, + ACTIONS(1150), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36039,9 +37548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1150), 43, + ACTIONS(1152), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36075,7 +37585,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36085,10 +37594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4893] = 3, + [4833] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1152), 16, + ACTIONS(1154), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36103,9 +37612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1154), 43, + ACTIONS(1156), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36139,7 +37649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36149,10 +37658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4960] = 3, + [4900] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1156), 16, + ACTIONS(1158), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36167,9 +37676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1158), 43, + ACTIONS(1160), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36203,7 +37713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36213,10 +37722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5027] = 3, + [4967] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1160), 16, + ACTIONS(1162), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36231,9 +37740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1162), 43, + ACTIONS(1164), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36267,7 +37777,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36277,10 +37786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5094] = 3, + [5034] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1164), 16, + ACTIONS(1166), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36295,9 +37804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1166), 43, + ACTIONS(1168), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36331,7 +37841,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36341,10 +37850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5161] = 3, + [5101] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1168), 16, + ACTIONS(1170), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36359,9 +37868,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1170), 43, + ACTIONS(1172), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36395,7 +37905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36405,10 +37914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5228] = 3, + [5168] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1172), 16, + ACTIONS(1174), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36423,9 +37932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1174), 43, + ACTIONS(1176), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36459,7 +37969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36469,10 +37978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5295] = 3, + [5235] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1176), 16, + ACTIONS(1178), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36487,9 +37996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1178), 43, + ACTIONS(1180), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36523,7 +38033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36533,10 +38042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5362] = 3, + [5302] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1180), 16, + ACTIONS(1182), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36551,9 +38060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1182), 43, + ACTIONS(1184), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36587,7 +38097,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36597,10 +38106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5429] = 3, + [5369] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1184), 16, + ACTIONS(1186), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36615,9 +38124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1186), 43, + ACTIONS(1188), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36651,7 +38161,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36661,10 +38170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5496] = 3, + [5436] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1188), 16, + ACTIONS(1190), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36679,9 +38188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1190), 43, + ACTIONS(1192), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36715,7 +38225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36725,10 +38234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5563] = 3, + [5503] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1192), 16, + ACTIONS(1194), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36743,9 +38252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1194), 43, + ACTIONS(1196), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36779,7 +38289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36789,10 +38298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5630] = 3, + [5570] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 16, + ACTIONS(1198), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36807,9 +38316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1198), 43, + ACTIONS(1200), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36843,7 +38353,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36853,10 +38362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5697] = 3, + [5637] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1200), 16, + ACTIONS(1202), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36871,9 +38380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1202), 43, + ACTIONS(1204), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36907,7 +38417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36917,10 +38426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5764] = 3, + [5704] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1204), 16, + ACTIONS(1206), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36935,9 +38444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1206), 43, + ACTIONS(1208), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36971,7 +38481,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -36981,10 +38490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5831] = 3, + [5771] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1208), 16, + ACTIONS(1210), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36999,9 +38508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1210), 43, + ACTIONS(1212), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -37035,7 +38545,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -37045,10 +38554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5898] = 3, + [5838] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 16, + ACTIONS(1214), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37063,9 +38572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1214), 43, + ACTIONS(1216), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -37099,7 +38609,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -37109,10 +38618,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5965] = 3, + [5905] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 16, + ACTIONS(1218), 1, + anon_sym_else, + STATE(351), 1, + sym_else_clause, + ACTIONS(754), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(756), 33, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [5976] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1220), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37127,9 +38702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1218), 43, + ACTIONS(1222), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -37163,7 +38739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -37173,10 +38748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6032] = 3, + [6043] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1220), 16, + ACTIONS(1224), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37191,9 +38766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1222), 43, + ACTIONS(1226), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -37227,7 +38803,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -37237,10 +38812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6099] = 3, + [6110] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1224), 16, + ACTIONS(1228), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37255,9 +38830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1226), 43, + ACTIONS(1230), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -37291,7 +38867,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -37301,10 +38876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6166] = 3, + [6177] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1228), 16, + ACTIONS(1232), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37319,9 +38894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1230), 43, + ACTIONS(1234), 42, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -37355,7 +38931,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_pub, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -37365,58 +38940,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6233] = 27, + [6244] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(31), 1, - anon_sym_fn, - ACTIONS(55), 1, - anon_sym_extern, - ACTIONS(61), 1, - anon_sym_pub, - ACTIONS(1232), 1, + ACTIONS(1236), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(1234), 1, - anon_sym_impl, - ACTIONS(1236), 1, anon_sym_SEMI, - ACTIONS(1238), 1, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_PIPE, + anon_sym_AT, + anon_sym_DOT_DOT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1238), 42, + anon_sym_impl, anon_sym_trait, - ACTIONS(1240), 1, anon_sym_type, - ACTIONS(1242), 1, anon_sym_const, - ACTIONS(1244), 1, - anon_sym_POUND, - ACTIONS(1246), 1, anon_sym_mod, - ACTIONS(1248), 1, anon_sym_struct, - ACTIONS(1250), 1, anon_sym_enum, - ACTIONS(1252), 1, + anon_sym_fn, anon_sym_let, - ACTIONS(1254), 1, anon_sym_use, - ACTIONS(1256), 1, - anon_sym_COLON_COLON, - ACTIONS(1260), 1, - anon_sym_default, - ACTIONS(1262), 1, - sym_identifier, - STATE(531), 1, - sym_extern_type, - STATE(931), 1, - sym_visibility_modifier, - STATE(1282), 1, - sym_function, - STATE(1306), 1, - sym_extern, - STATE(1460), 1, - sym_scoped_identifier, - STATE(1629), 1, - sym_generic_type_with_turbofish, - ACTIONS(1258), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37431,35 +38986,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_move, + anon_sym_ref, + sym_identifier, sym_super, - STATE(332), 19, - sym_impl_item, - sym_trait_item, - sym_associated_type, - sym_associated_impl, - sym_const_item, - sym_macro_invocation, - sym_empty_statement, - sym_attribute_item, - sym_inner_attribute_item, - sym_mod_item, - sym_struct_item, - sym_enum_item, - sym_type_item, - sym_external_function_item, - sym_function_item, - sym_function_signature_item, - sym_let_declaration, - sym_use_declaration, - aux_sym_declaration_list_repeat1, - [6347] = 5, + [6311] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1264), 1, - anon_sym_else, - STATE(349), 1, - sym_else_clause, - ACTIONS(718), 24, + ACTIONS(702), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -37480,11 +39028,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(720), 32, + ACTIONS(704), 34, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -37510,65 +39058,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_else, sym_identifier, sym_mutable_specifier, sym_super, - [6417] = 27, + [6377] = 27, ACTIONS(3), 1, sym_line_comment, ACTIONS(31), 1, anon_sym_fn, - ACTIONS(55), 1, + ACTIONS(57), 1, anon_sym_extern, - ACTIONS(61), 1, + ACTIONS(63), 1, anon_sym_pub, - ACTIONS(1234), 1, + ACTIONS(1240), 1, + anon_sym_RBRACE, + ACTIONS(1242), 1, anon_sym_impl, - ACTIONS(1236), 1, + ACTIONS(1244), 1, anon_sym_SEMI, - ACTIONS(1238), 1, + ACTIONS(1246), 1, anon_sym_trait, - ACTIONS(1240), 1, + ACTIONS(1248), 1, anon_sym_type, - ACTIONS(1242), 1, + ACTIONS(1250), 1, anon_sym_const, - ACTIONS(1244), 1, + ACTIONS(1252), 1, anon_sym_POUND, - ACTIONS(1246), 1, + ACTIONS(1254), 1, anon_sym_mod, - ACTIONS(1248), 1, + ACTIONS(1256), 1, anon_sym_struct, - ACTIONS(1250), 1, + ACTIONS(1258), 1, anon_sym_enum, - ACTIONS(1252), 1, + ACTIONS(1260), 1, anon_sym_let, - ACTIONS(1254), 1, + ACTIONS(1262), 1, anon_sym_use, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(1260), 1, + ACTIONS(1268), 1, anon_sym_default, - ACTIONS(1262), 1, + ACTIONS(1270), 1, sym_identifier, - ACTIONS(1266), 1, - anon_sym_RBRACE, - STATE(531), 1, + STATE(608), 1, sym_extern_type, - STATE(931), 1, + STATE(945), 1, sym_visibility_modifier, - STATE(1282), 1, + STATE(1292), 1, sym_function, - STATE(1306), 1, + STATE(1310), 1, sym_extern, - STATE(1460), 1, + STATE(1482), 1, sym_scoped_identifier, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - ACTIONS(1258), 15, + ACTIONS(1266), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37584,7 +39134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(329), 19, + STATE(343), 19, sym_impl_item, sym_trait_item, sym_associated_type, @@ -37604,58 +39154,58 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [6531] = 27, + [6491] = 27, ACTIONS(3), 1, sym_line_comment, ACTIONS(31), 1, anon_sym_fn, - ACTIONS(55), 1, + ACTIONS(57), 1, anon_sym_extern, - ACTIONS(61), 1, + ACTIONS(63), 1, anon_sym_pub, - ACTIONS(1234), 1, + ACTIONS(1242), 1, anon_sym_impl, - ACTIONS(1236), 1, + ACTIONS(1244), 1, anon_sym_SEMI, - ACTIONS(1238), 1, + ACTIONS(1246), 1, anon_sym_trait, - ACTIONS(1240), 1, + ACTIONS(1248), 1, anon_sym_type, - ACTIONS(1242), 1, + ACTIONS(1250), 1, anon_sym_const, - ACTIONS(1244), 1, + ACTIONS(1252), 1, anon_sym_POUND, - ACTIONS(1246), 1, + ACTIONS(1254), 1, anon_sym_mod, - ACTIONS(1248), 1, + ACTIONS(1256), 1, anon_sym_struct, - ACTIONS(1250), 1, + ACTIONS(1258), 1, anon_sym_enum, - ACTIONS(1252), 1, + ACTIONS(1260), 1, anon_sym_let, - ACTIONS(1254), 1, + ACTIONS(1262), 1, anon_sym_use, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(1260), 1, + ACTIONS(1268), 1, anon_sym_default, - ACTIONS(1262), 1, + ACTIONS(1270), 1, sym_identifier, - ACTIONS(1268), 1, + ACTIONS(1272), 1, anon_sym_RBRACE, - STATE(531), 1, + STATE(608), 1, sym_extern_type, - STATE(931), 1, + STATE(945), 1, sym_visibility_modifier, - STATE(1282), 1, + STATE(1292), 1, sym_function, - STATE(1306), 1, + STATE(1310), 1, sym_extern, - STATE(1460), 1, + STATE(1482), 1, sym_scoped_identifier, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - ACTIONS(1258), 15, + ACTIONS(1266), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37671,7 +39221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(332), 19, + STATE(345), 19, sym_impl_item, sym_trait_item, sym_associated_type, @@ -37691,86 +39241,125 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [6645] = 34, + [6605] = 27, ACTIONS(3), 1, sym_line_comment, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(57), 1, + anon_sym_extern, + ACTIONS(63), 1, + anon_sym_pub, + ACTIONS(1242), 1, + anon_sym_impl, + ACTIONS(1244), 1, + anon_sym_SEMI, + ACTIONS(1246), 1, + anon_sym_trait, + ACTIONS(1248), 1, + anon_sym_type, + ACTIONS(1250), 1, + anon_sym_const, + ACTIONS(1252), 1, + anon_sym_POUND, + ACTIONS(1254), 1, + anon_sym_mod, + ACTIONS(1256), 1, + anon_sym_struct, + ACTIONS(1258), 1, + anon_sym_enum, + ACTIONS(1260), 1, + anon_sym_let, + ACTIONS(1262), 1, + anon_sym_use, + ACTIONS(1264), 1, + anon_sym_COLON_COLON, + ACTIONS(1268), 1, + anon_sym_default, ACTIONS(1270), 1, + sym_identifier, + ACTIONS(1274), 1, + anon_sym_RBRACE, + STATE(608), 1, + sym_extern_type, + STATE(945), 1, + sym_visibility_modifier, + STATE(1292), 1, + sym_function, + STATE(1310), 1, + sym_extern, + STATE(1482), 1, + sym_scoped_identifier, + STATE(1637), 1, + sym_generic_type_with_turbofish, + ACTIONS(1266), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + STATE(339), 19, + sym_impl_item, + sym_trait_item, + sym_associated_type, + sym_associated_impl, + sym_const_item, + sym_macro_invocation, + sym_empty_statement, + sym_attribute_item, + sym_inner_attribute_item, + sym_mod_item, + sym_struct_item, + sym_enum_item, + sym_type_item, + sym_external_function_item, + sym_function_item, + sym_function_signature_item, + sym_let_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [6719] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(688), 24, + anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(1272), 1, anon_sym_LBRACK, - ACTIONS(1274), 1, anon_sym_COMMA, - ACTIONS(1276), 1, anon_sym_COLON_COLON, - ACTIONS(1278), 1, anon_sym_LPAREN, - ACTIONS(1280), 1, - anon_sym__, - ACTIONS(1282), 1, - anon_sym_RPAREN, - ACTIONS(1286), 1, - anon_sym_DASH, - ACTIONS(1288), 1, - anon_sym_PIPE, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1292), 1, - anon_sym_default, - ACTIONS(1294), 1, - sym_numeric_literal, - ACTIONS(1296), 1, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, aux_sym_string_literal_token1, - ACTIONS(1298), 1, sym_shortstring_literal, - ACTIONS(1302), 1, - anon_sym_ref, - ACTIONS(1304), 1, - sym_identifier, - ACTIONS(1306), 1, - sym_mutable_specifier, - ACTIONS(1308), 1, - sym_super, - STATE(360), 1, - sym_attribute_item, - STATE(416), 1, - sym_ref_specifier, - STATE(925), 1, - sym_generic_type, - STATE(986), 1, - sym_negative_literal, - STATE(1028), 1, - sym_scoped_type_identifier, - STATE(1103), 1, - sym_scoped_identifier, - STATE(1173), 1, - sym_macro_invocation, - STATE(1179), 1, - sym_generic_type_with_turbofish, - STATE(1490), 1, - sym__pattern, - ACTIONS(1300), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1382), 2, - sym_parameter, - sym__type, - STATE(937), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(1002), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(1284), 14, + ACTIONS(690), 34, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37785,58 +39374,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [6773] = 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_else, + sym_identifier, + sym_mutable_specifier, + sym_super, + [6785] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(31), 1, - anon_sym_fn, - ACTIONS(55), 1, - anon_sym_extern, - ACTIONS(61), 1, - anon_sym_pub, - ACTIONS(1234), 1, + ACTIONS(1276), 1, + anon_sym_RBRACE, + ACTIONS(1278), 1, anon_sym_impl, - ACTIONS(1236), 1, + ACTIONS(1281), 1, anon_sym_SEMI, - ACTIONS(1238), 1, + ACTIONS(1284), 1, anon_sym_trait, - ACTIONS(1240), 1, + ACTIONS(1287), 1, anon_sym_type, - ACTIONS(1242), 1, + ACTIONS(1290), 1, anon_sym_const, - ACTIONS(1244), 1, + ACTIONS(1293), 1, anon_sym_POUND, - ACTIONS(1246), 1, + ACTIONS(1296), 1, anon_sym_mod, - ACTIONS(1248), 1, + ACTIONS(1299), 1, anon_sym_struct, - ACTIONS(1250), 1, + ACTIONS(1302), 1, anon_sym_enum, - ACTIONS(1252), 1, + ACTIONS(1305), 1, + anon_sym_fn, + ACTIONS(1308), 1, anon_sym_let, - ACTIONS(1254), 1, + ACTIONS(1311), 1, anon_sym_use, - ACTIONS(1256), 1, + ACTIONS(1314), 1, anon_sym_COLON_COLON, - ACTIONS(1260), 1, + ACTIONS(1320), 1, anon_sym_default, - ACTIONS(1262), 1, + ACTIONS(1323), 1, + anon_sym_extern, + ACTIONS(1326), 1, + anon_sym_pub, + ACTIONS(1329), 1, sym_identifier, - ACTIONS(1310), 1, - anon_sym_RBRACE, - STATE(531), 1, + STATE(608), 1, sym_extern_type, - STATE(931), 1, + STATE(945), 1, sym_visibility_modifier, - STATE(1282), 1, + STATE(1292), 1, sym_function, - STATE(1306), 1, + STATE(1310), 1, sym_extern, - STATE(1460), 1, + STATE(1482), 1, sym_scoped_identifier, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - ACTIONS(1258), 15, + ACTIONS(1317), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37852,7 +39458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(326), 19, + STATE(343), 19, sym_impl_item, sym_trait_item, sym_associated_type, @@ -37872,58 +39478,121 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [6887] = 27, + [6899] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1312), 1, + ACTIONS(706), 24, anon_sym_RBRACE, - ACTIONS(1314), 1, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(708), 34, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_else, + sym_identifier, + sym_mutable_specifier, + sym_super, + [6965] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(57), 1, + anon_sym_extern, + ACTIONS(63), 1, + anon_sym_pub, + ACTIONS(1242), 1, anon_sym_impl, - ACTIONS(1317), 1, + ACTIONS(1244), 1, anon_sym_SEMI, - ACTIONS(1320), 1, + ACTIONS(1246), 1, anon_sym_trait, - ACTIONS(1323), 1, + ACTIONS(1248), 1, anon_sym_type, - ACTIONS(1326), 1, + ACTIONS(1250), 1, anon_sym_const, - ACTIONS(1329), 1, + ACTIONS(1252), 1, anon_sym_POUND, - ACTIONS(1332), 1, + ACTIONS(1254), 1, anon_sym_mod, - ACTIONS(1335), 1, + ACTIONS(1256), 1, anon_sym_struct, - ACTIONS(1338), 1, + ACTIONS(1258), 1, anon_sym_enum, - ACTIONS(1341), 1, - anon_sym_fn, - ACTIONS(1344), 1, + ACTIONS(1260), 1, anon_sym_let, - ACTIONS(1347), 1, + ACTIONS(1262), 1, anon_sym_use, - ACTIONS(1350), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(1356), 1, + ACTIONS(1268), 1, anon_sym_default, - ACTIONS(1359), 1, - anon_sym_extern, - ACTIONS(1362), 1, - anon_sym_pub, - ACTIONS(1365), 1, + ACTIONS(1270), 1, sym_identifier, - STATE(531), 1, + ACTIONS(1332), 1, + anon_sym_RBRACE, + STATE(608), 1, sym_extern_type, - STATE(931), 1, + STATE(945), 1, sym_visibility_modifier, - STATE(1282), 1, + STATE(1292), 1, sym_function, - STATE(1306), 1, + STATE(1310), 1, sym_extern, - STATE(1460), 1, + STATE(1482), 1, sym_scoped_identifier, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - ACTIONS(1353), 15, + ACTIONS(1266), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37939,7 +39608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(332), 19, + STATE(343), 19, sym_impl_item, sym_trait_item, sym_associated_type, @@ -37959,77 +39628,78 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [7001] = 34, + [7079] = 34, ACTIONS(3), 1, sym_line_comment, - ACTIONS(65), 1, - anon_sym_static, - ACTIONS(79), 1, - anon_sym_move, - ACTIONS(906), 1, - sym_mutable_specifier, - ACTIONS(1272), 1, + ACTIONS(1334), 1, + anon_sym_POUND, + ACTIONS(1336), 1, anon_sym_LBRACK, - ACTIONS(1286), 1, - anon_sym_DASH, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1294), 1, - sym_numeric_literal, - ACTIONS(1296), 1, - aux_sym_string_literal_token1, - ACTIONS(1298), 1, - sym_shortstring_literal, - ACTIONS(1368), 1, + ACTIONS(1338), 1, anon_sym_COMMA, - ACTIONS(1370), 1, + ACTIONS(1340), 1, anon_sym_COLON_COLON, - ACTIONS(1372), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1374), 1, + ACTIONS(1344), 1, anon_sym__, - ACTIONS(1376), 1, + ACTIONS(1346), 1, anon_sym_RPAREN, - ACTIONS(1380), 1, + ACTIONS(1350), 1, + anon_sym_DASH, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1382), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1356), 1, anon_sym_default, - ACTIONS(1384), 1, + ACTIONS(1358), 1, + sym_numeric_literal, + ACTIONS(1360), 1, + aux_sym_string_literal_token1, + ACTIONS(1362), 1, + sym_shortstring_literal, + ACTIONS(1366), 1, + anon_sym_ref, + ACTIONS(1368), 1, sym_identifier, - ACTIONS(1386), 1, + ACTIONS(1370), 1, + sym_mutable_specifier, + ACTIONS(1372), 1, sym_super, - STATE(138), 1, - sym_closure_parameters, - STATE(925), 1, + STATE(368), 1, + sym_attribute_item, + STATE(417), 1, + sym_ref_specifier, + STATE(942), 1, sym_generic_type, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1028), 1, + STATE(1041), 1, sym_scoped_type_identifier, - STATE(1049), 1, + STATE(1085), 1, sym_scoped_identifier, - STATE(1123), 1, - sym__pattern, - STATE(1219), 1, - sym_generic_type_with_turbofish, - STATE(1247), 1, + STATE(1229), 1, sym_macro_invocation, - STATE(1262), 1, - sym__type, - STATE(1326), 1, - sym_closure_expression, - ACTIONS(1300), 2, + STATE(1230), 1, + sym_generic_type_with_turbofish, + STATE(1480), 1, + sym__pattern, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(937), 4, + STATE(1288), 2, + sym_parameter, + sym__type, + STATE(955), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(1002), 7, + STATE(996), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -38037,7 +39707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1378), 14, + ACTIONS(1348), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38052,10 +39722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [7128] = 3, + [7207] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(605), 24, + ACTIONS(684), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -38076,11 +39746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(607), 33, + ACTIONS(686), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -38106,18 +39776,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_else, sym_identifier, sym_mutable_specifier, sym_super, - [7193] = 3, + [7272] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(553), 24, + ACTIONS(680), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -38138,11 +39808,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(555), 33, + ACTIONS(682), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -38168,177 +39838,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_else, sym_identifier, sym_mutable_specifier, sym_super, - [7258] = 33, + [7337] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1270), 1, + ACTIONS(1334), 1, anon_sym_POUND, - ACTIONS(1272), 1, + ACTIONS(1336), 1, anon_sym_LBRACK, - ACTIONS(1276), 1, + ACTIONS(1340), 1, anon_sym_COLON_COLON, - ACTIONS(1278), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1290), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1292), 1, + ACTIONS(1356), 1, anon_sym_default, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1302), 1, + ACTIONS(1366), 1, anon_sym_ref, - ACTIONS(1304), 1, + ACTIONS(1368), 1, sym_identifier, - ACTIONS(1306), 1, + ACTIONS(1370), 1, sym_mutable_specifier, - ACTIONS(1308), 1, + ACTIONS(1372), 1, sym_super, - ACTIONS(1388), 1, + ACTIONS(1374), 1, anon_sym__, - ACTIONS(1390), 1, + ACTIONS(1376), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(371), 1, sym_attribute_item, - STATE(416), 1, + STATE(417), 1, sym_ref_specifier, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1028), 1, + STATE(1041), 1, sym_scoped_type_identifier, - STATE(1103), 1, + STATE(1085), 1, sym_scoped_identifier, - STATE(1173), 1, + STATE(1229), 1, sym_macro_invocation, - STATE(1179), 1, + STATE(1230), 1, sym_generic_type_with_turbofish, - STATE(1490), 1, + STATE(1480), 1, sym__pattern, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1455), 2, + STATE(1464), 2, sym_parameter, sym__type, - STATE(937), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(1002), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(1284), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [7383] = 34, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(65), 1, - anon_sym_static, - ACTIONS(79), 1, - anon_sym_move, - ACTIONS(906), 1, - sym_mutable_specifier, - ACTIONS(1272), 1, - anon_sym_LBRACK, - ACTIONS(1286), 1, - anon_sym_DASH, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1294), 1, - sym_numeric_literal, - ACTIONS(1296), 1, - aux_sym_string_literal_token1, - ACTIONS(1298), 1, - sym_shortstring_literal, - ACTIONS(1368), 1, - anon_sym_COMMA, - ACTIONS(1370), 1, - anon_sym_COLON_COLON, - ACTIONS(1372), 1, - anon_sym_LPAREN, - ACTIONS(1374), 1, - anon_sym__, - ACTIONS(1380), 1, - anon_sym_PIPE, - ACTIONS(1382), 1, - anon_sym_default, - ACTIONS(1384), 1, - sym_identifier, - ACTIONS(1386), 1, - sym_super, - ACTIONS(1392), 1, - anon_sym_RPAREN, - STATE(138), 1, - sym_closure_parameters, - STATE(925), 1, - sym_generic_type, - STATE(986), 1, - sym_negative_literal, - STATE(1028), 1, - sym_scoped_type_identifier, - STATE(1049), 1, - sym_scoped_identifier, - STATE(1123), 1, - sym__pattern, - STATE(1219), 1, - sym_generic_type_with_turbofish, - STATE(1247), 1, - sym_macro_invocation, - STATE(1262), 1, - sym__type, - STATE(1326), 1, - sym_closure_expression, - ACTIONS(1300), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym_string_literal, - sym_boolean_literal, - STATE(937), 4, + STATE(955), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(1002), 7, + STATE(996), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -38346,7 +39923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1378), 14, + ACTIONS(1348), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38361,76 +39938,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [7510] = 33, + [7462] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1270), 1, + ACTIONS(1334), 1, anon_sym_POUND, - ACTIONS(1272), 1, + ACTIONS(1336), 1, anon_sym_LBRACK, - ACTIONS(1276), 1, + ACTIONS(1340), 1, anon_sym_COLON_COLON, - ACTIONS(1278), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1290), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1292), 1, + ACTIONS(1356), 1, anon_sym_default, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1302), 1, + ACTIONS(1366), 1, anon_sym_ref, - ACTIONS(1304), 1, + ACTIONS(1368), 1, sym_identifier, - ACTIONS(1306), 1, + ACTIONS(1370), 1, sym_mutable_specifier, - ACTIONS(1308), 1, + ACTIONS(1372), 1, sym_super, - ACTIONS(1388), 1, + ACTIONS(1374), 1, anon_sym__, - ACTIONS(1394), 1, + ACTIONS(1378), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(371), 1, sym_attribute_item, - STATE(416), 1, + STATE(417), 1, sym_ref_specifier, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1028), 1, + STATE(1041), 1, sym_scoped_type_identifier, - STATE(1103), 1, + STATE(1085), 1, sym_scoped_identifier, - STATE(1173), 1, + STATE(1229), 1, sym_macro_invocation, - STATE(1179), 1, + STATE(1230), 1, sym_generic_type_with_turbofish, - STATE(1490), 1, + STATE(1480), 1, sym__pattern, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1455), 2, + STATE(1464), 2, sym_parameter, sym__type, - STATE(937), 4, + STATE(955), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(1002), 7, + STATE(996), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -38438,7 +40015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1284), 14, + ACTIONS(1348), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38453,10 +40030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [7635] = 3, + [7587] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(589), 24, + ACTIONS(718), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -38477,11 +40054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(591), 33, + ACTIONS(720), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -38507,177 +40084,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_else, sym_identifier, sym_mutable_specifier, sym_super, - [7700] = 34, + [7652] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(65), 1, - anon_sym_static, - ACTIONS(79), 1, - anon_sym_move, - ACTIONS(906), 1, - sym_mutable_specifier, - ACTIONS(1272), 1, + ACTIONS(1334), 1, + anon_sym_POUND, + ACTIONS(1336), 1, anon_sym_LBRACK, - ACTIONS(1286), 1, + ACTIONS(1340), 1, + anon_sym_COLON_COLON, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1290), 1, + ACTIONS(1352), 1, + anon_sym_PIPE, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1294), 1, + ACTIONS(1356), 1, + anon_sym_default, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, + ACTIONS(1366), 1, + anon_sym_ref, ACTIONS(1368), 1, - anon_sym_COMMA, + sym_identifier, ACTIONS(1370), 1, - anon_sym_COLON_COLON, + sym_mutable_specifier, ACTIONS(1372), 1, - anon_sym_LPAREN, + sym_super, ACTIONS(1374), 1, anon_sym__, ACTIONS(1380), 1, - anon_sym_PIPE, - ACTIONS(1382), 1, - anon_sym_default, - ACTIONS(1384), 1, - sym_identifier, - ACTIONS(1386), 1, - sym_super, - ACTIONS(1396), 1, anon_sym_RPAREN, - STATE(138), 1, - sym_closure_parameters, - STATE(925), 1, + STATE(371), 1, + sym_attribute_item, + STATE(417), 1, + sym_ref_specifier, + STATE(942), 1, sym_generic_type, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1028), 1, - sym_scoped_type_identifier, - STATE(1049), 1, - sym_scoped_identifier, - STATE(1123), 1, - sym__pattern, - STATE(1219), 1, - sym_generic_type_with_turbofish, - STATE(1247), 1, - sym_macro_invocation, - STATE(1262), 1, - sym__type, - STATE(1326), 1, - sym_closure_expression, - ACTIONS(1300), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym_string_literal, - sym_boolean_literal, - STATE(937), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(1002), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(1378), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [7827] = 33, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1270), 1, - anon_sym_POUND, - ACTIONS(1272), 1, - anon_sym_LBRACK, - ACTIONS(1276), 1, - anon_sym_COLON_COLON, - ACTIONS(1278), 1, - anon_sym_LPAREN, - ACTIONS(1286), 1, - anon_sym_DASH, - ACTIONS(1288), 1, - anon_sym_PIPE, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1292), 1, - anon_sym_default, - ACTIONS(1294), 1, - sym_numeric_literal, - ACTIONS(1296), 1, - aux_sym_string_literal_token1, - ACTIONS(1298), 1, - sym_shortstring_literal, - ACTIONS(1302), 1, - anon_sym_ref, - ACTIONS(1304), 1, - sym_identifier, - ACTIONS(1306), 1, - sym_mutable_specifier, - ACTIONS(1308), 1, - sym_super, - ACTIONS(1388), 1, - anon_sym__, - ACTIONS(1398), 1, - anon_sym_RPAREN, - STATE(361), 1, - sym_attribute_item, - STATE(416), 1, - sym_ref_specifier, - STATE(925), 1, - sym_generic_type, - STATE(986), 1, - sym_negative_literal, - STATE(1028), 1, + STATE(1041), 1, sym_scoped_type_identifier, - STATE(1103), 1, + STATE(1085), 1, sym_scoped_identifier, - STATE(1173), 1, + STATE(1229), 1, sym_macro_invocation, - STATE(1179), 1, + STATE(1230), 1, sym_generic_type_with_turbofish, - STATE(1490), 1, + STATE(1480), 1, sym__pattern, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1455), 2, + STATE(1464), 2, sym_parameter, sym__type, - STATE(937), 4, + STATE(955), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(1002), 7, + STATE(996), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -38685,7 +40169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1284), 14, + ACTIONS(1348), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38700,10 +40184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [7952] = 3, + [7777] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(557), 24, + ACTIONS(744), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -38724,11 +40208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(559), 32, + ACTIONS(746), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -38754,6 +40238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, @@ -38761,10 +40246,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [8016] = 3, + [7842] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(565), 24, + ACTIONS(694), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -38785,11 +40270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(567), 32, + ACTIONS(696), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -38815,6 +40300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, @@ -38822,10 +40308,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [8080] = 3, + [7907] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(605), 24, + ACTIONS(688), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -38846,11 +40332,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(607), 32, + ACTIONS(690), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -38876,6 +40362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, @@ -38883,16 +40370,29 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [8144] = 3, + [7972] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(571), 24, - anon_sym_RBRACE, + ACTIONS(1382), 6, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(882), 9, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_DOT, + ACTIONS(878), 18, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -38907,13 +40407,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(573), 32, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1384), 24, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -38929,13 +40425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_default, sym_numeric_literal, @@ -38944,10 +40434,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [8208] = 3, + [8041] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(579), 24, + ACTIONS(710), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -38968,11 +40458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(581), 32, + ACTIONS(712), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -38998,6 +40488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, @@ -39005,10 +40496,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [8272] = 3, + [8106] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(599), 24, + ACTIONS(672), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -39029,11 +40520,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(601), 32, + ACTIONS(674), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -39059,6 +40550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, @@ -39066,16 +40558,29 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [8336] = 3, + [8171] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(553), 24, - anon_sym_RBRACE, + ACTIONS(1386), 6, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(882), 9, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_DOT, + ACTIONS(878), 18, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -39090,13 +40595,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(555), 32, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1388), 24, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -39112,13 +40613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_default, sym_numeric_literal, @@ -39127,10 +40622,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [8400] = 3, + [8240] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(609), 24, + ACTIONS(736), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -39151,11 +40646,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(611), 32, + ACTIONS(738), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -39181,69 +40676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [8464] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1400), 6, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(752), 8, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - ACTIONS(754), 18, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(1402), 24, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_default, sym_numeric_literal, anon_sym_true, @@ -39251,10 +40684,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [8532] = 3, + [8305] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(589), 24, + ACTIONS(726), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -39275,11 +40708,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(591), 32, + ACTIONS(728), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -39305,6 +40738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, @@ -39312,10 +40746,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [8596] = 3, + [8370] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(575), 24, + ACTIONS(706), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -39336,11 +40770,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(577), 32, + ACTIONS(708), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -39366,6 +40800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, @@ -39373,100 +40808,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [8660] = 32, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1270), 1, - anon_sym_POUND, - ACTIONS(1272), 1, - anon_sym_LBRACK, - ACTIONS(1276), 1, - anon_sym_COLON_COLON, - ACTIONS(1278), 1, - anon_sym_LPAREN, - ACTIONS(1286), 1, - anon_sym_DASH, - ACTIONS(1288), 1, - anon_sym_PIPE, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1292), 1, - anon_sym_default, - ACTIONS(1294), 1, - sym_numeric_literal, - ACTIONS(1296), 1, - aux_sym_string_literal_token1, - ACTIONS(1298), 1, - sym_shortstring_literal, - ACTIONS(1302), 1, - anon_sym_ref, - ACTIONS(1304), 1, - sym_identifier, - ACTIONS(1306), 1, - sym_mutable_specifier, - ACTIONS(1308), 1, - sym_super, - ACTIONS(1388), 1, - anon_sym__, - STATE(361), 1, - sym_attribute_item, - STATE(416), 1, - sym_ref_specifier, - STATE(925), 1, - sym_generic_type, - STATE(986), 1, - sym_negative_literal, - STATE(1028), 1, - sym_scoped_type_identifier, - STATE(1103), 1, - sym_scoped_identifier, - STATE(1173), 1, - sym_macro_invocation, - STATE(1179), 1, - sym_generic_type_with_turbofish, - STATE(1490), 1, - sym__pattern, - ACTIONS(1300), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1455), 2, - sym_parameter, - sym__type, - STATE(937), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(1002), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(1284), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [8782] = 3, + [8435] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(613), 24, + ACTIONS(702), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -39487,11 +40832,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(615), 32, + ACTIONS(704), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -39517,6 +40862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DOT, anon_sym_default, sym_numeric_literal, anon_sym_true, @@ -39524,107 +40870,82 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [8846] = 3, + [8500] = 32, ACTIONS(3), 1, sym_line_comment, - ACTIONS(561), 24, - anon_sym_RBRACE, + ACTIONS(1334), 1, anon_sym_POUND, + ACTIONS(1336), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(1340), 1, anon_sym_COLON_COLON, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(563), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, + ACTIONS(1350), 1, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, + ACTIONS(1352), 1, anon_sym_PIPE, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1356), 1, anon_sym_default, + ACTIONS(1358), 1, sym_numeric_literal, - anon_sym_true, - anon_sym_false, + ACTIONS(1360), 1, + aux_sym_string_literal_token1, + ACTIONS(1362), 1, + sym_shortstring_literal, + ACTIONS(1366), 1, + anon_sym_ref, + ACTIONS(1368), 1, sym_identifier, + ACTIONS(1370), 1, sym_mutable_specifier, + ACTIONS(1372), 1, sym_super, - [8910] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1404), 6, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(752), 8, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - ACTIONS(754), 18, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(1406), 24, + ACTIONS(1374), 1, anon_sym__, + STATE(371), 1, + sym_attribute_item, + STATE(417), 1, + sym_ref_specifier, + STATE(942), 1, + sym_generic_type, + STATE(1004), 1, + sym_negative_literal, + STATE(1041), 1, + sym_scoped_type_identifier, + STATE(1085), 1, + sym_scoped_identifier, + STATE(1229), 1, + sym_macro_invocation, + STATE(1230), 1, + sym_generic_type_with_turbofish, + STATE(1480), 1, + sym__pattern, + ACTIONS(1364), 2, + anon_sym_true, + anon_sym_false, + STATE(998), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1464), 2, + sym_parameter, + sym__type, + STATE(955), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(996), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1348), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39639,79 +40960,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [8978] = 30, + [8622] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1408), 1, - anon_sym_RBRACE, - ACTIONS(1410), 1, - anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(912), 1, + sym_mutable_specifier, + ACTIONS(1336), 1, anon_sym_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1350), 1, + anon_sym_DASH, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1358), 1, + sym_numeric_literal, + ACTIONS(1360), 1, + aux_sym_string_literal_token1, + ACTIONS(1362), 1, + sym_shortstring_literal, + ACTIONS(1390), 1, + anon_sym_COMMA, + ACTIONS(1392), 1, anon_sym_COLON_COLON, - ACTIONS(1416), 1, + ACTIONS(1394), 1, anon_sym_LPAREN, - ACTIONS(1418), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1422), 1, - anon_sym_DASH, - ACTIONS(1424), 1, + ACTIONS(1398), 1, + anon_sym_RPAREN, + ACTIONS(1402), 1, anon_sym_PIPE, - ACTIONS(1426), 1, + ACTIONS(1404), 1, anon_sym_default, - ACTIONS(1428), 1, - sym_numeric_literal, - ACTIONS(1430), 1, - aux_sym_string_literal_token1, - ACTIONS(1432), 1, - sym_shortstring_literal, - ACTIONS(1436), 1, + ACTIONS(1406), 1, + anon_sym_move, + ACTIONS(1408), 1, sym_identifier, - ACTIONS(1438), 1, - sym_mutable_specifier, - ACTIONS(1440), 1, + ACTIONS(1410), 1, sym_super, - STATE(1057), 1, - sym_scoped_identifier, - STATE(1278), 1, - sym__pattern, - STATE(1289), 1, + STATE(138), 1, + sym_closure_parameters, + STATE(942), 1, + sym_generic_type, + STATE(1004), 1, sym_negative_literal, - STATE(1302), 1, + STATE(1041), 1, sym_scoped_type_identifier, - STATE(1532), 1, + STATE(1070), 1, + sym_scoped_identifier, + STATE(1133), 1, sym_generic_type_with_turbofish, - STATE(1669), 1, - sym_last_match_arm, - STATE(1672), 1, - sym_generic_type, - STATE(1677), 1, - sym_match_pattern, - ACTIONS(1434), 2, + STATE(1169), 1, + sym__pattern, + STATE(1262), 1, + sym__type, + STATE(1340), 1, + sym_closure_expression, + STATE(1358), 1, + sym_macro_invocation, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(362), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1295), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(373), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1296), 8, - sym_macro_invocation, + STATE(955), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(996), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -39719,7 +41036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1400), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39734,70 +41051,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9094] = 30, + [8746] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1410), 1, - anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(912), 1, + sym_mutable_specifier, + ACTIONS(1336), 1, anon_sym_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1350), 1, + anon_sym_DASH, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1358), 1, + sym_numeric_literal, + ACTIONS(1360), 1, + aux_sym_string_literal_token1, + ACTIONS(1362), 1, + sym_shortstring_literal, + ACTIONS(1390), 1, + anon_sym_COMMA, + ACTIONS(1392), 1, anon_sym_COLON_COLON, - ACTIONS(1416), 1, + ACTIONS(1394), 1, anon_sym_LPAREN, - ACTIONS(1418), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1422), 1, - anon_sym_DASH, - ACTIONS(1424), 1, + ACTIONS(1402), 1, anon_sym_PIPE, - ACTIONS(1426), 1, + ACTIONS(1404), 1, anon_sym_default, - ACTIONS(1428), 1, - sym_numeric_literal, - ACTIONS(1430), 1, - aux_sym_string_literal_token1, - ACTIONS(1432), 1, - sym_shortstring_literal, - ACTIONS(1436), 1, + ACTIONS(1406), 1, + anon_sym_move, + ACTIONS(1408), 1, sym_identifier, - ACTIONS(1438), 1, - sym_mutable_specifier, - ACTIONS(1440), 1, + ACTIONS(1410), 1, sym_super, - ACTIONS(1442), 1, - anon_sym_RBRACE, - STATE(1057), 1, - sym_scoped_identifier, - STATE(1278), 1, - sym__pattern, - STATE(1289), 1, + ACTIONS(1412), 1, + anon_sym_RPAREN, + STATE(138), 1, + sym_closure_parameters, + STATE(942), 1, + sym_generic_type, + STATE(1004), 1, sym_negative_literal, - STATE(1302), 1, + STATE(1041), 1, sym_scoped_type_identifier, - STATE(1532), 1, + STATE(1070), 1, + sym_scoped_identifier, + STATE(1133), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, - sym_generic_type, - STATE(1677), 1, - sym_match_pattern, - STATE(1707), 1, - sym_last_match_arm, - ACTIONS(1434), 2, + STATE(1169), 1, + sym__pattern, + STATE(1262), 1, + sym__type, + STATE(1340), 1, + sym_closure_expression, + STATE(1358), 1, + sym_macro_invocation, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(364), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1295), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(373), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1296), 8, - sym_macro_invocation, + STATE(955), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(996), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -39805,7 +41127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1400), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39820,70 +41142,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9210] = 30, + [8870] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1410), 1, - anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(912), 1, + sym_mutable_specifier, + ACTIONS(1336), 1, anon_sym_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1350), 1, + anon_sym_DASH, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1358), 1, + sym_numeric_literal, + ACTIONS(1360), 1, + aux_sym_string_literal_token1, + ACTIONS(1362), 1, + sym_shortstring_literal, + ACTIONS(1390), 1, + anon_sym_COMMA, + ACTIONS(1392), 1, anon_sym_COLON_COLON, - ACTIONS(1416), 1, + ACTIONS(1394), 1, anon_sym_LPAREN, - ACTIONS(1418), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1422), 1, - anon_sym_DASH, - ACTIONS(1424), 1, + ACTIONS(1402), 1, anon_sym_PIPE, - ACTIONS(1426), 1, + ACTIONS(1404), 1, anon_sym_default, - ACTIONS(1428), 1, - sym_numeric_literal, - ACTIONS(1430), 1, - aux_sym_string_literal_token1, - ACTIONS(1432), 1, - sym_shortstring_literal, - ACTIONS(1436), 1, + ACTIONS(1406), 1, + anon_sym_move, + ACTIONS(1408), 1, sym_identifier, - ACTIONS(1438), 1, - sym_mutable_specifier, - ACTIONS(1440), 1, + ACTIONS(1410), 1, sym_super, - ACTIONS(1444), 1, - anon_sym_RBRACE, - STATE(1057), 1, - sym_scoped_identifier, - STATE(1278), 1, - sym__pattern, - STATE(1289), 1, + ACTIONS(1414), 1, + anon_sym_RPAREN, + STATE(138), 1, + sym_closure_parameters, + STATE(942), 1, + sym_generic_type, + STATE(1004), 1, sym_negative_literal, - STATE(1302), 1, + STATE(1041), 1, sym_scoped_type_identifier, - STATE(1532), 1, + STATE(1070), 1, + sym_scoped_identifier, + STATE(1133), 1, sym_generic_type_with_turbofish, - STATE(1626), 1, - sym_last_match_arm, - STATE(1672), 1, - sym_generic_type, - STATE(1677), 1, - sym_match_pattern, - ACTIONS(1434), 2, + STATE(1169), 1, + sym__pattern, + STATE(1262), 1, + sym__type, + STATE(1340), 1, + sym_closure_expression, + STATE(1358), 1, + sym_macro_invocation, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(365), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1295), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(373), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1296), 8, - sym_macro_invocation, + STATE(955), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(996), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -39891,7 +41218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1400), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39906,70 +41233,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9326] = 30, + [8994] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1272), 1, + ACTIONS(1336), 1, anon_sym_LBRACK, - ACTIONS(1276), 1, + ACTIONS(1340), 1, anon_sym_COLON_COLON, - ACTIONS(1278), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1290), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1292), 1, + ACTIONS(1356), 1, anon_sym_default, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1302), 1, + ACTIONS(1366), 1, anon_sym_ref, - ACTIONS(1304), 1, + ACTIONS(1368), 1, sym_identifier, - ACTIONS(1306), 1, + ACTIONS(1370), 1, sym_mutable_specifier, - ACTIONS(1308), 1, + ACTIONS(1372), 1, sym_super, - ACTIONS(1446), 1, + ACTIONS(1416), 1, anon_sym__, - STATE(416), 1, + STATE(417), 1, sym_ref_specifier, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1028), 1, + STATE(1041), 1, sym_scoped_type_identifier, - STATE(1103), 1, + STATE(1085), 1, sym_scoped_identifier, - STATE(1173), 1, + STATE(1229), 1, sym_macro_invocation, - STATE(1179), 1, + STATE(1230), 1, sym_generic_type_with_turbofish, - STATE(1490), 1, + STATE(1480), 1, sym__pattern, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1222), 2, + STATE(1337), 2, sym_parameter, sym__type, - STATE(937), 4, + STATE(955), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(1002), 7, + STATE(996), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -39977,7 +41304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1284), 14, + ACTIONS(1348), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39992,70 +41319,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9442] = 30, + [9110] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1272), 1, + ACTIONS(1418), 1, + anon_sym_RBRACE, + ACTIONS(1420), 1, + anon_sym_POUND, + ACTIONS(1422), 1, anon_sym_LBRACK, - ACTIONS(1276), 1, + ACTIONS(1424), 1, anon_sym_COLON_COLON, - ACTIONS(1278), 1, + ACTIONS(1426), 1, anon_sym_LPAREN, - ACTIONS(1286), 1, + ACTIONS(1428), 1, + anon_sym__, + ACTIONS(1432), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1434), 1, anon_sym_PIPE, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1292), 1, + ACTIONS(1436), 1, anon_sym_default, - ACTIONS(1294), 1, + ACTIONS(1438), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1440), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1442), 1, sym_shortstring_literal, - ACTIONS(1302), 1, - anon_sym_ref, - ACTIONS(1304), 1, + ACTIONS(1446), 1, sym_identifier, - ACTIONS(1306), 1, + ACTIONS(1448), 1, sym_mutable_specifier, - ACTIONS(1308), 1, + ACTIONS(1450), 1, sym_super, - ACTIONS(1448), 1, - anon_sym__, - STATE(416), 1, - sym_ref_specifier, - STATE(925), 1, - sym_generic_type, - STATE(986), 1, - sym_negative_literal, - STATE(1028), 1, - sym_scoped_type_identifier, - STATE(1103), 1, + STATE(1059), 1, sym_scoped_identifier, - STATE(1173), 1, - sym_macro_invocation, - STATE(1179), 1, - sym_generic_type_with_turbofish, - STATE(1490), 1, + STATE(1289), 1, sym__pattern, - ACTIONS(1300), 2, + STATE(1309), 1, + sym_scoped_type_identifier, + STATE(1336), 1, + sym_negative_literal, + STATE(1535), 1, + sym_generic_type_with_turbofish, + STATE(1660), 1, + sym_match_pattern, + STATE(1663), 1, + sym_last_match_arm, + STATE(1669), 1, + sym_generic_type, + ACTIONS(1444), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(375), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1264), 2, sym_string_literal, sym_boolean_literal, - STATE(1564), 2, - sym_parameter, - sym__type, - STATE(937), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(1002), 7, + STATE(378), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1267), 8, + sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -40063,7 +41390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1284), 14, + ACTIONS(1430), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40078,67 +41405,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9558] = 29, + [9226] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1410), 1, + ACTIONS(1420), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_COLON_COLON, - ACTIONS(1416), 1, + ACTIONS(1426), 1, anon_sym_LPAREN, - ACTIONS(1418), 1, + ACTIONS(1428), 1, anon_sym__, - ACTIONS(1422), 1, + ACTIONS(1432), 1, anon_sym_DASH, - ACTIONS(1424), 1, + ACTIONS(1434), 1, anon_sym_PIPE, - ACTIONS(1426), 1, + ACTIONS(1436), 1, anon_sym_default, - ACTIONS(1428), 1, + ACTIONS(1438), 1, sym_numeric_literal, - ACTIONS(1430), 1, + ACTIONS(1440), 1, aux_sym_string_literal_token1, - ACTIONS(1432), 1, + ACTIONS(1442), 1, sym_shortstring_literal, - ACTIONS(1436), 1, + ACTIONS(1446), 1, sym_identifier, - ACTIONS(1438), 1, + ACTIONS(1448), 1, sym_mutable_specifier, - ACTIONS(1440), 1, + ACTIONS(1450), 1, sym_super, - STATE(1057), 1, + ACTIONS(1452), 1, + anon_sym_RBRACE, + STATE(1059), 1, sym_scoped_identifier, - STATE(1278), 1, - sym__pattern, STATE(1289), 1, - sym_negative_literal, - STATE(1302), 1, + sym__pattern, + STATE(1309), 1, sym_scoped_type_identifier, - STATE(1532), 1, + STATE(1336), 1, + sym_negative_literal, + STATE(1535), 1, sym_generic_type_with_turbofish, - STATE(1612), 1, + STATE(1631), 1, sym_last_match_arm, - STATE(1672), 1, - sym_generic_type, - STATE(1677), 1, + STATE(1660), 1, sym_match_pattern, - ACTIONS(1434), 2, + STATE(1669), 1, + sym_generic_type, + ACTIONS(1444), 2, anon_sym_true, anon_sym_false, - STATE(366), 2, + STATE(374), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1295), 2, + STATE(1264), 2, sym_string_literal, sym_boolean_literal, - STATE(373), 3, + STATE(378), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1296), 8, + STATE(1267), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40147,7 +41476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1430), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40162,69 +41491,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9671] = 30, + [9342] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, - sym_mutable_specifier, - ACTIONS(1272), 1, + ACTIONS(1336), 1, anon_sym_LBRACK, - ACTIONS(1286), 1, + ACTIONS(1340), 1, + anon_sym_COLON_COLON, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1290), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1294), 1, + ACTIONS(1356), 1, + anon_sym_default, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, - anon_sym__, - ACTIONS(1450), 1, - anon_sym_RBRACK, - ACTIONS(1452), 1, - anon_sym_COMMA, - ACTIONS(1454), 1, - anon_sym_COLON_COLON, - ACTIONS(1456), 1, - anon_sym_LPAREN, - ACTIONS(1460), 1, - anon_sym_default, - ACTIONS(1462), 1, + ACTIONS(1366), 1, + anon_sym_ref, + ACTIONS(1368), 1, sym_identifier, - ACTIONS(1464), 1, + ACTIONS(1370), 1, + sym_mutable_specifier, + ACTIONS(1372), 1, sym_super, - STATE(925), 1, + ACTIONS(1454), 1, + anon_sym__, + STATE(417), 1, + sym_ref_specifier, + STATE(942), 1, sym_generic_type, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1028), 1, + STATE(1041), 1, sym_scoped_type_identifier, - STATE(1043), 1, + STATE(1085), 1, sym_scoped_identifier, - STATE(1118), 1, - sym__pattern, - STATE(1177), 1, - sym_generic_type_with_turbofish, - STATE(1207), 1, + STATE(1229), 1, sym_macro_invocation, - STATE(1464), 1, - sym__type, - ACTIONS(1300), 2, + STATE(1230), 1, + sym_generic_type_with_turbofish, + STATE(1480), 1, + sym__pattern, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(937), 4, + STATE(1586), 2, + sym_parameter, + sym__type, + STATE(955), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(1002), 7, + STATE(996), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -40232,7 +41562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1458), 14, + ACTIONS(1348), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40247,67 +41577,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9786] = 29, + [9458] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1410), 1, + ACTIONS(1420), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_COLON_COLON, - ACTIONS(1416), 1, + ACTIONS(1426), 1, anon_sym_LPAREN, - ACTIONS(1418), 1, + ACTIONS(1428), 1, anon_sym__, - ACTIONS(1422), 1, + ACTIONS(1432), 1, anon_sym_DASH, - ACTIONS(1424), 1, + ACTIONS(1434), 1, anon_sym_PIPE, - ACTIONS(1426), 1, + ACTIONS(1436), 1, anon_sym_default, - ACTIONS(1428), 1, + ACTIONS(1438), 1, sym_numeric_literal, - ACTIONS(1430), 1, + ACTIONS(1440), 1, aux_sym_string_literal_token1, - ACTIONS(1432), 1, + ACTIONS(1442), 1, sym_shortstring_literal, - ACTIONS(1436), 1, + ACTIONS(1446), 1, sym_identifier, - ACTIONS(1438), 1, + ACTIONS(1448), 1, sym_mutable_specifier, - ACTIONS(1440), 1, + ACTIONS(1450), 1, sym_super, - STATE(1057), 1, + ACTIONS(1456), 1, + anon_sym_RBRACE, + STATE(1059), 1, sym_scoped_identifier, - STATE(1278), 1, - sym__pattern, STATE(1289), 1, - sym_negative_literal, - STATE(1302), 1, + sym__pattern, + STATE(1309), 1, sym_scoped_type_identifier, - STATE(1532), 1, + STATE(1336), 1, + sym_negative_literal, + STATE(1535), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, - sym_generic_type, - STATE(1677), 1, + STATE(1660), 1, sym_match_pattern, - STATE(1688), 1, + STATE(1669), 1, + sym_generic_type, + STATE(1705), 1, sym_last_match_arm, - ACTIONS(1434), 2, + ACTIONS(1444), 2, anon_sym_true, anon_sym_false, - STATE(366), 2, + STATE(373), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1295), 2, + STATE(1264), 2, sym_string_literal, sym_boolean_literal, - STATE(373), 3, + STATE(378), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1296), 8, + STATE(1267), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40316,7 +41648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1430), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40331,67 +41663,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9899] = 29, + [9574] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1410), 1, + ACTIONS(1420), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_COLON_COLON, - ACTIONS(1416), 1, + ACTIONS(1426), 1, anon_sym_LPAREN, - ACTIONS(1418), 1, + ACTIONS(1428), 1, anon_sym__, - ACTIONS(1422), 1, + ACTIONS(1432), 1, anon_sym_DASH, - ACTIONS(1424), 1, + ACTIONS(1434), 1, anon_sym_PIPE, - ACTIONS(1426), 1, + ACTIONS(1436), 1, anon_sym_default, - ACTIONS(1428), 1, + ACTIONS(1438), 1, sym_numeric_literal, - ACTIONS(1430), 1, + ACTIONS(1440), 1, aux_sym_string_literal_token1, - ACTIONS(1432), 1, + ACTIONS(1442), 1, sym_shortstring_literal, - ACTIONS(1436), 1, + ACTIONS(1446), 1, sym_identifier, - ACTIONS(1438), 1, + ACTIONS(1448), 1, sym_mutable_specifier, - ACTIONS(1440), 1, + ACTIONS(1450), 1, sym_super, - STATE(1057), 1, + STATE(1059), 1, sym_scoped_identifier, - STATE(1278), 1, - sym__pattern, STATE(1289), 1, - sym_negative_literal, - STATE(1302), 1, + sym__pattern, + STATE(1309), 1, sym_scoped_type_identifier, - STATE(1532), 1, + STATE(1336), 1, + sym_negative_literal, + STATE(1535), 1, sym_generic_type_with_turbofish, - STATE(1619), 1, - sym_last_match_arm, - STATE(1672), 1, - sym_generic_type, - STATE(1677), 1, + STATE(1660), 1, sym_match_pattern, - ACTIONS(1434), 2, + STATE(1669), 1, + sym_generic_type, + STATE(1690), 1, + sym_last_match_arm, + ACTIONS(1444), 2, anon_sym_true, anon_sym_false, - STATE(366), 2, + STATE(377), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1295), 2, + STATE(1264), 2, sym_string_literal, sym_boolean_literal, - STATE(373), 3, + STATE(378), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1296), 8, + STATE(1267), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40400,7 +41732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1430), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40415,65 +41747,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10012] = 28, + [9687] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1466), 1, + ACTIONS(1420), 1, anon_sym_POUND, - ACTIONS(1469), 1, + ACTIONS(1422), 1, anon_sym_LBRACK, - ACTIONS(1472), 1, + ACTIONS(1424), 1, anon_sym_COLON_COLON, - ACTIONS(1475), 1, + ACTIONS(1426), 1, anon_sym_LPAREN, - ACTIONS(1478), 1, + ACTIONS(1428), 1, anon_sym__, - ACTIONS(1484), 1, + ACTIONS(1432), 1, anon_sym_DASH, - ACTIONS(1487), 1, + ACTIONS(1434), 1, anon_sym_PIPE, - ACTIONS(1490), 1, + ACTIONS(1436), 1, anon_sym_default, - ACTIONS(1493), 1, + ACTIONS(1438), 1, sym_numeric_literal, - ACTIONS(1496), 1, + ACTIONS(1440), 1, aux_sym_string_literal_token1, - ACTIONS(1499), 1, + ACTIONS(1442), 1, sym_shortstring_literal, - ACTIONS(1505), 1, + ACTIONS(1446), 1, sym_identifier, - ACTIONS(1508), 1, + ACTIONS(1448), 1, sym_mutable_specifier, - ACTIONS(1511), 1, + ACTIONS(1450), 1, sym_super, - STATE(1057), 1, + STATE(1059), 1, sym_scoped_identifier, - STATE(1278), 1, - sym__pattern, STATE(1289), 1, - sym_negative_literal, - STATE(1302), 1, + sym__pattern, + STATE(1309), 1, sym_scoped_type_identifier, - STATE(1532), 1, + STATE(1336), 1, + sym_negative_literal, + STATE(1535), 1, sym_generic_type_with_turbofish, - STATE(1648), 1, + STATE(1629), 1, + sym_last_match_arm, + STATE(1660), 1, sym_match_pattern, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1502), 2, + ACTIONS(1444), 2, anon_sym_true, anon_sym_false, - STATE(366), 2, + STATE(377), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1295), 2, + STATE(1264), 2, sym_string_literal, sym_boolean_literal, - STATE(369), 3, + STATE(378), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1296), 8, + STATE(1267), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40482,7 +41816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1481), 14, + ACTIONS(1430), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40497,66 +41831,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10122] = 30, + [9800] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(65), 1, - anon_sym_static, - ACTIONS(79), 1, - anon_sym_move, - ACTIONS(906), 1, - sym_mutable_specifier, - ACTIONS(1286), 1, - anon_sym_DASH, - ACTIONS(1294), 1, - sym_numeric_literal, - ACTIONS(1296), 1, - aux_sym_string_literal_token1, - ACTIONS(1298), 1, - sym_shortstring_literal, - ACTIONS(1368), 1, - anon_sym_COMMA, - ACTIONS(1374), 1, - anon_sym__, - ACTIONS(1380), 1, - anon_sym_PIPE, - ACTIONS(1514), 1, + ACTIONS(1420), 1, + anon_sym_POUND, + ACTIONS(1422), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1424), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1426), 1, anon_sym_LPAREN, - ACTIONS(1520), 1, - anon_sym_RPAREN, - ACTIONS(1524), 1, + ACTIONS(1428), 1, + anon_sym__, + ACTIONS(1432), 1, + anon_sym_DASH, + ACTIONS(1434), 1, + anon_sym_PIPE, + ACTIONS(1436), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1438), 1, + sym_numeric_literal, + ACTIONS(1440), 1, + aux_sym_string_literal_token1, + ACTIONS(1442), 1, + sym_shortstring_literal, + ACTIONS(1446), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1448), 1, + sym_mutable_specifier, + ACTIONS(1450), 1, sym_super, - STATE(138), 1, - sym_closure_parameters, - STATE(926), 1, + STATE(1059), 1, sym_scoped_identifier, - STATE(986), 1, - sym_negative_literal, - STATE(1123), 1, + STATE(1289), 1, sym__pattern, - STATE(1276), 1, + STATE(1309), 1, sym_scoped_type_identifier, - STATE(1326), 1, - sym_closure_expression, - STATE(1479), 1, + STATE(1336), 1, + sym_negative_literal, + STATE(1535), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1660), 1, + sym_match_pattern, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + STATE(1688), 1, + sym_last_match_arm, + ACTIONS(1444), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(377), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1264), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(378), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1267), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40565,7 +41900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1430), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40580,67 +41915,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10235] = 30, + [9913] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(65), 1, - anon_sym_static, - ACTIONS(79), 1, - anon_sym_move, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1336), 1, + anon_sym_LBRACK, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1294), 1, + ACTIONS(1352), 1, + anon_sym_PIPE, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1380), 1, - anon_sym_PIPE, - ACTIONS(1514), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1458), 1, + anon_sym_RBRACK, + ACTIONS(1460), 1, + anon_sym_COMMA, + ACTIONS(1462), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1464), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1468), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1470), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1472), 1, sym_super, - ACTIONS(1530), 1, - anon_sym_COMMA, - ACTIONS(1532), 1, - anon_sym_RPAREN, - STATE(138), 1, - sym_closure_parameters, - STATE(926), 1, - sym_scoped_identifier, - STATE(986), 1, + STATE(942), 1, + sym_generic_type, + STATE(1004), 1, sym_negative_literal, - STATE(1190), 1, - sym__pattern, - STATE(1276), 1, + STATE(1041), 1, sym_scoped_type_identifier, - STATE(1340), 1, - sym_closure_expression, - STATE(1479), 1, + STATE(1067), 1, + sym_scoped_identifier, + STATE(1143), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, - sym_generic_type, - ACTIONS(1300), 2, + STATE(1168), 1, + sym__pattern, + STATE(1176), 1, + sym_macro_invocation, + STATE(1544), 1, + sym__type, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, - sym_macro_invocation, + STATE(955), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(996), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -40648,7 +41985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1466), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40663,62 +42000,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10348] = 27, + [10028] = 28, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1410), 1, + ACTIONS(1474), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1477), 1, anon_sym_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1480), 1, anon_sym_COLON_COLON, - ACTIONS(1416), 1, + ACTIONS(1483), 1, anon_sym_LPAREN, - ACTIONS(1418), 1, + ACTIONS(1486), 1, anon_sym__, - ACTIONS(1422), 1, + ACTIONS(1492), 1, anon_sym_DASH, - ACTIONS(1424), 1, + ACTIONS(1495), 1, anon_sym_PIPE, - ACTIONS(1426), 1, + ACTIONS(1498), 1, anon_sym_default, - ACTIONS(1428), 1, + ACTIONS(1501), 1, sym_numeric_literal, - ACTIONS(1430), 1, + ACTIONS(1504), 1, aux_sym_string_literal_token1, - ACTIONS(1432), 1, + ACTIONS(1507), 1, sym_shortstring_literal, - ACTIONS(1436), 1, + ACTIONS(1513), 1, sym_identifier, - ACTIONS(1438), 1, + ACTIONS(1516), 1, sym_mutable_specifier, - ACTIONS(1440), 1, + ACTIONS(1519), 1, sym_super, - STATE(1057), 1, + STATE(1059), 1, sym_scoped_identifier, - STATE(1278), 1, - sym__pattern, STATE(1289), 1, - sym_negative_literal, - STATE(1302), 1, + sym__pattern, + STATE(1309), 1, sym_scoped_type_identifier, - STATE(1532), 1, + STATE(1336), 1, + sym_negative_literal, + STATE(1535), 1, sym_generic_type_with_turbofish, - STATE(1589), 1, - sym_match_pattern, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1434), 2, + STATE(1681), 1, + sym_match_pattern, + ACTIONS(1510), 2, anon_sym_true, anon_sym_false, - STATE(1295), 2, + STATE(377), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1264), 2, sym_string_literal, sym_boolean_literal, - STATE(539), 3, + STATE(379), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1296), 8, + STATE(1267), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40727,7 +42067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1489), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40742,64 +42082,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10454] = 29, + [10138] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(65), 1, - anon_sym_static, - ACTIONS(79), 1, - anon_sym_move, - ACTIONS(906), 1, - sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1420), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_LBRACK, + ACTIONS(1424), 1, + anon_sym_COLON_COLON, + ACTIONS(1426), 1, + anon_sym_LPAREN, + ACTIONS(1428), 1, + anon_sym__, + ACTIONS(1432), 1, anon_sym_DASH, - ACTIONS(1294), 1, + ACTIONS(1434), 1, + anon_sym_PIPE, + ACTIONS(1436), 1, + anon_sym_default, + ACTIONS(1438), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1440), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1442), 1, sym_shortstring_literal, - ACTIONS(1374), 1, - anon_sym__, - ACTIONS(1380), 1, - anon_sym_PIPE, - ACTIONS(1514), 1, + ACTIONS(1446), 1, + sym_identifier, + ACTIONS(1448), 1, + sym_mutable_specifier, + ACTIONS(1450), 1, + sym_super, + STATE(1059), 1, + sym_scoped_identifier, + STATE(1289), 1, + sym__pattern, + STATE(1309), 1, + sym_scoped_type_identifier, + STATE(1336), 1, + sym_negative_literal, + STATE(1535), 1, + sym_generic_type_with_turbofish, + STATE(1669), 1, + sym_generic_type, + STATE(1694), 1, + sym_match_pattern, + ACTIONS(1444), 2, + anon_sym_true, + anon_sym_false, + STATE(1264), 2, + sym_string_literal, + sym_boolean_literal, + STATE(582), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1267), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1430), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10244] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1420), 1, + anon_sym_POUND, + ACTIONS(1422), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1424), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1426), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1428), 1, + anon_sym__, + ACTIONS(1432), 1, + anon_sym_DASH, + ACTIONS(1434), 1, + anon_sym_PIPE, + ACTIONS(1436), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1438), 1, + sym_numeric_literal, + ACTIONS(1440), 1, + aux_sym_string_literal_token1, + ACTIONS(1442), 1, + sym_shortstring_literal, + ACTIONS(1446), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1448), 1, + sym_mutable_specifier, + ACTIONS(1450), 1, sym_super, - ACTIONS(1534), 1, - anon_sym_RPAREN, - STATE(138), 1, - sym_closure_parameters, - STATE(926), 1, + STATE(1059), 1, sym_scoped_identifier, - STATE(986), 1, - sym_negative_literal, - STATE(1234), 1, + STATE(1289), 1, sym__pattern, - STATE(1276), 1, + STATE(1309), 1, sym_scoped_type_identifier, - STATE(1440), 1, - sym_closure_expression, - STATE(1479), 1, + STATE(1336), 1, + sym_negative_literal, + STATE(1535), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1664), 1, + sym_match_pattern, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1444), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(1264), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(582), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1267), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40808,7 +42225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1430), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40823,64 +42240,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10564] = 29, + [10350] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(65), 1, - anon_sym_static, - ACTIONS(79), 1, - anon_sym_move, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1380), 1, + ACTIONS(1402), 1, anon_sym_PIPE, - ACTIONS(1514), 1, + ACTIONS(1406), 1, + anon_sym_move, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1524), 1, + anon_sym_COMMA, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1530), 1, + anon_sym_RPAREN, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1536), 1, - anon_sym_RPAREN, STATE(138), 1, sym_closure_parameters, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1234), 1, + STATE(1215), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1440), 1, + STATE(1350), 1, sym_closure_expression, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40889,7 +42306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40904,64 +42321,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10674] = 29, + [10460] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(65), 1, - anon_sym_static, - ACTIONS(79), 1, - anon_sym_move, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1390), 1, + anon_sym_COMMA, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1380), 1, + ACTIONS(1402), 1, anon_sym_PIPE, - ACTIONS(1514), 1, + ACTIONS(1406), 1, + anon_sym_move, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, - sym_super, ACTIONS(1538), 1, + sym_super, + ACTIONS(1540), 1, anon_sym_RPAREN, STATE(138), 1, sym_closure_parameters, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1234), 1, + STATE(1169), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1440), 1, + STATE(1340), 1, sym_closure_expression, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40970,7 +42387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40985,62 +42402,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10784] = 27, + [10570] = 28, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1410), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_LBRACK, - ACTIONS(1414), 1, - anon_sym_COLON_COLON, - ACTIONS(1416), 1, - anon_sym_LPAREN, - ACTIONS(1418), 1, - anon_sym__, - ACTIONS(1422), 1, + ACTIONS(912), 1, + sym_mutable_specifier, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1424), 1, - anon_sym_PIPE, - ACTIONS(1426), 1, - anon_sym_default, - ACTIONS(1428), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1430), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1432), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1436), 1, + ACTIONS(1396), 1, + anon_sym__, + ACTIONS(1402), 1, + anon_sym_PIPE, + ACTIONS(1406), 1, + anon_sym_move, + ACTIONS(1522), 1, + anon_sym_LBRACK, + ACTIONS(1526), 1, + anon_sym_COLON_COLON, + ACTIONS(1528), 1, + anon_sym_LPAREN, + ACTIONS(1534), 1, + anon_sym_default, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1438), 1, - sym_mutable_specifier, - ACTIONS(1440), 1, + ACTIONS(1538), 1, sym_super, - STATE(1057), 1, + ACTIONS(1542), 1, + anon_sym_RPAREN, + STATE(138), 1, + sym_closure_parameters, + STATE(939), 1, sym_scoped_identifier, - STATE(1278), 1, - sym__pattern, - STATE(1289), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1302), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1532), 1, + STATE(1325), 1, + sym__pattern, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1584), 1, + sym_closure_expression, + STATE(1669), 1, sym_generic_type, - STATE(1729), 1, - sym_match_pattern, - ACTIONS(1434), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1295), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(539), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1296), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41049,7 +42466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41064,64 +42481,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10890] = 29, + [10677] = 28, ACTIONS(3), 1, sym_line_comment, - ACTIONS(65), 1, - anon_sym_static, - ACTIONS(79), 1, - anon_sym_move, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1380), 1, + ACTIONS(1402), 1, anon_sym_PIPE, - ACTIONS(1514), 1, + ACTIONS(1406), 1, + anon_sym_move, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1540), 1, + ACTIONS(1544), 1, anon_sym_RPAREN, STATE(138), 1, sym_closure_parameters, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1234), 1, - sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1440), 1, - sym_closure_expression, - STATE(1479), 1, + STATE(1325), 1, + sym__pattern, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1584), 1, + sym_closure_expression, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41130,7 +42545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41145,15 +42560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11000] = 5, + [10784] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(629), 1, + ACTIONS(579), 1, anon_sym_POUND, - STATE(375), 2, + STATE(384), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - ACTIONS(635), 14, + ACTIONS(585), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, @@ -41166,9 +42581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1542), 32, + ACTIONS(1546), 31, anon_sym_COLON, anon_sym_u8, anon_sym_i8, @@ -41191,7 +42607,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -41201,62 +42616,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [11061] = 28, + [10845] = 28, ACTIONS(3), 1, sym_line_comment, - ACTIONS(65), 1, - anon_sym_static, - ACTIONS(79), 1, - anon_sym_move, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1380), 1, + ACTIONS(1402), 1, anon_sym_PIPE, - ACTIONS(1514), 1, + ACTIONS(1406), 1, + anon_sym_move, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(138), 1, + ACTIONS(1548), 1, + anon_sym_RPAREN, + STATE(138), 1, sym_closure_parameters, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1234), 1, - sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1440), 1, + STATE(1325), 1, + sym__pattern, + STATE(1500), 1, + sym_generic_type_with_turbofish, + STATE(1584), 1, sym_closure_expression, - STATE(1479), 1, + STATE(1669), 1, + sym_generic_type, + ACTIONS(1364), 2, + anon_sym_true, + anon_sym_false, + STATE(998), 2, + sym_string_literal, + sym_boolean_literal, + STATE(996), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1532), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10952] = 28, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(912), 1, + sym_mutable_specifier, + ACTIONS(1350), 1, + anon_sym_DASH, + ACTIONS(1358), 1, + sym_numeric_literal, + ACTIONS(1360), 1, + aux_sym_string_literal_token1, + ACTIONS(1362), 1, + sym_shortstring_literal, + ACTIONS(1396), 1, + anon_sym__, + ACTIONS(1402), 1, + anon_sym_PIPE, + ACTIONS(1406), 1, + anon_sym_move, + ACTIONS(1522), 1, + anon_sym_LBRACK, + ACTIONS(1526), 1, + anon_sym_COLON_COLON, + ACTIONS(1528), 1, + anon_sym_LPAREN, + ACTIONS(1534), 1, + anon_sym_default, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1538), 1, + sym_super, + ACTIONS(1550), 1, + anon_sym_RPAREN, + STATE(138), 1, + sym_closure_parameters, + STATE(939), 1, + sym_scoped_identifier, + STATE(1004), 1, + sym_negative_literal, + STATE(1294), 1, + sym_scoped_type_identifier, + STATE(1325), 1, + sym__pattern, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1584), 1, + sym_closure_expression, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41265,7 +42759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41280,60 +42774,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11168] = 27, + [11059] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1302), 1, + ACTIONS(1366), 1, anon_sym_ref, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1544), 1, + ACTIONS(1552), 1, anon_sym_PIPE, - ACTIONS(1546), 1, + ACTIONS(1554), 1, sym_mutable_specifier, - STATE(421), 1, + STATE(418), 1, sym_ref_specifier, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1086), 1, + STATE(1146), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1299), 1, sym_parameter, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41342,7 +42836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41357,60 +42851,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11272] = 27, + [11163] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1302), 1, + ACTIONS(1366), 1, anon_sym_ref, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1546), 1, + ACTIONS(1554), 1, sym_mutable_specifier, - STATE(421), 1, + STATE(418), 1, sym_ref_specifier, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1276), 1, - sym_scoped_type_identifier, - STATE(1291), 1, + STATE(1237), 1, sym__pattern, - STATE(1479), 1, + STATE(1294), 1, + sym_scoped_type_identifier, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1491), 1, + STATE(1553), 1, sym_parameter, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41419,7 +42913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41434,60 +42928,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11376] = 27, + [11267] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1302), 1, + ACTIONS(1366), 1, anon_sym_ref, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1544), 1, + ACTIONS(1552), 1, anon_sym_PIPE, - ACTIONS(1546), 1, + ACTIONS(1554), 1, sym_mutable_specifier, - STATE(421), 1, + STATE(418), 1, sym_ref_specifier, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1176), 1, + STATE(1083), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1288), 1, + STATE(1299), 1, sym_parameter, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41496,7 +42990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41511,58 +43005,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11480] = 26, + [11371] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, - anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1402), 1, + anon_sym_PIPE, + ACTIONS(1406), 1, + anon_sym_move, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, + ACTIONS(1538), 1, + sym_super, + STATE(138), 1, + sym_closure_parameters, + STATE(939), 1, + sym_scoped_identifier, + STATE(1004), 1, + sym_negative_literal, + STATE(1294), 1, + sym_scoped_type_identifier, + STATE(1325), 1, + sym__pattern, + STATE(1500), 1, + sym_generic_type_with_turbofish, + STATE(1584), 1, + sym_closure_expression, + STATE(1669), 1, + sym_generic_type, + ACTIONS(1364), 2, + anon_sym_true, + anon_sym_false, + STATE(998), 2, + sym_string_literal, + sym_boolean_literal, + STATE(996), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1532), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [11475] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(912), 1, + sym_mutable_specifier, + ACTIONS(1350), 1, + anon_sym_DASH, + ACTIONS(1352), 1, + anon_sym_PIPE, + ACTIONS(1358), 1, + sym_numeric_literal, + ACTIONS(1360), 1, + aux_sym_string_literal_token1, + ACTIONS(1362), 1, + sym_shortstring_literal, + ACTIONS(1396), 1, + anon_sym__, + ACTIONS(1522), 1, + anon_sym_LBRACK, + ACTIONS(1526), 1, + anon_sym_COLON_COLON, ACTIONS(1528), 1, + anon_sym_LPAREN, + ACTIONS(1534), 1, + anon_sym_default, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1538), 1, sym_super, - ACTIONS(1548), 1, + ACTIONS(1556), 1, anon_sym_RBRACK, - ACTIONS(1550), 1, + ACTIONS(1558), 1, anon_sym_COMMA, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1191), 1, + STATE(1216), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41571,7 +43142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41586,58 +43157,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11581] = 26, + [11576] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1552), 1, + ACTIONS(1560), 1, anon_sym_COMMA, - ACTIONS(1554), 1, + ACTIONS(1562), 1, anon_sym_RPAREN, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1168), 1, + STATE(1131), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41646,7 +43217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41661,58 +43232,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11682] = 26, + [11677] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1556), 1, + ACTIONS(1564), 1, anon_sym_COMMA, - ACTIONS(1558), 1, + ACTIONS(1566), 1, anon_sym_RPAREN, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1169), 1, + STATE(1202), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41721,7 +43292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41736,58 +43307,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11783] = 26, + [11778] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1450), 1, - anon_sym_RBRACK, - ACTIONS(1452), 1, - anon_sym_COMMA, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + ACTIONS(1568), 1, + anon_sym_COMMA, + ACTIONS(1570), 1, + anon_sym_RPAREN, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1118), 1, + STATE(1203), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41796,7 +43367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41811,10 +43382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11884] = 3, + [11879] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(948), 15, + ACTIONS(1018), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_POUND, @@ -41828,9 +43399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(950), 32, + ACTIONS(1020), 31, anon_sym_COLON, anon_sym_u8, anon_sym_i8, @@ -41853,7 +43425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -41863,58 +43434,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [11939] = 26, + [11934] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1560), 1, + ACTIONS(1572), 1, anon_sym_COMMA, - ACTIONS(1562), 1, + ACTIONS(1574), 1, anon_sym_RPAREN, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1193), 1, + STATE(1231), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41923,7 +43494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41938,58 +43509,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12040] = 26, + [12035] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1458), 1, + anon_sym_RBRACK, + ACTIONS(1460), 1, + anon_sym_COMMA, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1564), 1, - anon_sym_COMMA, - ACTIONS(1566), 1, - anon_sym_RPAREN, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1192), 1, + STATE(1168), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -41998,7 +43569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42013,56 +43584,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12141] = 25, + [12136] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1568), 1, + ACTIONS(1576), 1, anon_sym_RPAREN, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42071,7 +43642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42086,56 +43657,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12239] = 25, + [12234] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1570), 1, + ACTIONS(1578), 1, anon_sym_RPAREN, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42144,7 +43715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42159,56 +43730,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12337] = 25, + [12332] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1572), 1, - anon_sym_RPAREN, - STATE(926), 1, + ACTIONS(1580), 1, + anon_sym_RBRACK, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42217,7 +43788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42232,56 +43803,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12435] = 25, + [12430] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1574), 1, + ACTIONS(1582), 1, anon_sym_RBRACK, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42290,7 +43861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42305,56 +43876,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12533] = 25, + [12528] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1576), 1, - anon_sym_RBRACK, - STATE(926), 1, + ACTIONS(1584), 1, + anon_sym_RPAREN, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42363,7 +43934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42378,56 +43949,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12631] = 25, + [12626] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1578), 1, - anon_sym_RPAREN, - STATE(926), 1, + ACTIONS(1586), 1, + anon_sym_RBRACK, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42436,7 +44007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42451,56 +44022,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12729] = 25, + [12724] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1580), 1, - anon_sym_RPAREN, - STATE(926), 1, + ACTIONS(1588), 1, + anon_sym_RBRACK, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42509,7 +44080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42524,56 +44095,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12827] = 25, + [12822] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1582), 1, - anon_sym_RBRACK, - STATE(926), 1, + ACTIONS(1590), 1, + anon_sym_RPAREN, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42582,7 +44153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42597,56 +44168,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12925] = 25, + [12920] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1584), 1, - anon_sym_RBRACK, - STATE(926), 1, + ACTIONS(1592), 1, + anon_sym_RPAREN, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42655,7 +44226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42670,56 +44241,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13023] = 25, + [13018] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1586), 1, + ACTIONS(1594), 1, anon_sym_RPAREN, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42728,7 +44299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42743,56 +44314,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13121] = 25, + [13116] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_RPAREN, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42801,7 +44372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42816,56 +44387,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13219] = 25, + [13214] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1590), 1, + ACTIONS(1598), 1, anon_sym_RPAREN, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42874,7 +44445,40 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13312] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1600), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_PIPE, + anon_sym_AT, + anon_sym_DOT_DOT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1602), 32, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42889,54 +44493,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13317] = 24, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_move, + anon_sym_ref, + sym_identifier, + sym_super, + [13365] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1276), 1, + STATE(1024), 1, + sym__pattern, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1507), 1, - sym__pattern, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -42945,7 +44566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42960,54 +44581,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13412] = 24, + [13460] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1217), 1, - sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1298), 1, + sym__pattern, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43016,7 +44637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43031,54 +44652,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13507] = 24, + [13555] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, - sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1422), 1, + anon_sym_LBRACK, + ACTIONS(1424), 1, + anon_sym_COLON_COLON, + ACTIONS(1426), 1, + anon_sym_LPAREN, + ACTIONS(1428), 1, + anon_sym__, + ACTIONS(1432), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1434), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1436), 1, + anon_sym_default, + ACTIONS(1438), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1440), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1442), 1, sym_shortstring_literal, - ACTIONS(1374), 1, - anon_sym__, - ACTIONS(1514), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - anon_sym_COLON_COLON, - ACTIONS(1518), 1, - anon_sym_LPAREN, - ACTIONS(1524), 1, - anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1446), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1448), 1, + sym_mutable_specifier, + ACTIONS(1450), 1, sym_super, - STATE(926), 1, + STATE(1059), 1, sym_scoped_identifier, - STATE(986), 1, - sym_negative_literal, - STATE(1276), 1, + STATE(1309), 1, sym_scoped_type_identifier, - STATE(1437), 1, + STATE(1336), 1, + sym_negative_literal, + STATE(1384), 1, sym__pattern, - STATE(1479), 1, + STATE(1535), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1444), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(1264), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(1267), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43087,7 +44708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1430), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43102,54 +44723,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13602] = 24, + [13650] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1412), 1, - anon_sym_LBRACK, - ACTIONS(1414), 1, - anon_sym_COLON_COLON, - ACTIONS(1416), 1, - anon_sym_LPAREN, - ACTIONS(1418), 1, - anon_sym__, - ACTIONS(1422), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1424), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1426), 1, - anon_sym_default, - ACTIONS(1428), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1430), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1432), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1436), 1, + ACTIONS(1396), 1, + anon_sym__, + ACTIONS(1522), 1, + anon_sym_LBRACK, + ACTIONS(1526), 1, + anon_sym_COLON_COLON, + ACTIONS(1528), 1, + anon_sym_LPAREN, + ACTIONS(1534), 1, + anon_sym_default, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1438), 1, - sym_mutable_specifier, - ACTIONS(1440), 1, + ACTIONS(1538), 1, sym_super, - STATE(1057), 1, + ACTIONS(1604), 1, + sym_mutable_specifier, + STATE(939), 1, sym_scoped_identifier, - STATE(1277), 1, - sym__pattern, - STATE(1289), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1302), 1, + STATE(1144), 1, + sym__pattern, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1532), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1434), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1295), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1296), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43158,7 +44779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43173,54 +44794,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13697] = 24, + [13745] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(912), 1, + sym_mutable_specifier, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1592), 1, - sym_mutable_specifier, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1182), 1, + STATE(1193), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43229,7 +44850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43244,54 +44865,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13792] = 24, + [13840] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, - sym_negative_literal, - STATE(1186), 1, + STATE(1000), 1, sym__pattern, - STATE(1276), 1, + STATE(1004), 1, + sym_negative_literal, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43300,7 +44921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43315,54 +44936,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13887] = 24, + [13935] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, - sym_generic_type_with_turbofish, - STATE(1521), 1, + STATE(1443), 1, sym__pattern, - STATE(1672), 1, + STATE(1500), 1, + sym_generic_type_with_turbofish, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43371,7 +44992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43386,54 +45007,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13982] = 24, + [14030] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(994), 1, - sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1491), 1, + sym__pattern, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43442,7 +45063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43457,54 +45078,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14077] = 24, + [14125] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1430), 1, + STATE(1439), 1, sym__pattern, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43513,7 +45134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43528,54 +45149,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14172] = 24, + [14220] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1412), 1, - anon_sym_LBRACK, - ACTIONS(1414), 1, - anon_sym_COLON_COLON, - ACTIONS(1416), 1, - anon_sym_LPAREN, - ACTIONS(1418), 1, - anon_sym__, - ACTIONS(1422), 1, + ACTIONS(912), 1, + sym_mutable_specifier, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1424), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1426), 1, - anon_sym_default, - ACTIONS(1428), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1430), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1432), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1436), 1, + ACTIONS(1396), 1, + anon_sym__, + ACTIONS(1522), 1, + anon_sym_LBRACK, + ACTIONS(1526), 1, + anon_sym_COLON_COLON, + ACTIONS(1528), 1, + anon_sym_LPAREN, + ACTIONS(1534), 1, + anon_sym_default, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1438), 1, - sym_mutable_specifier, - ACTIONS(1440), 1, + ACTIONS(1538), 1, sym_super, - STATE(1057), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(1257), 1, - sym__pattern, - STATE(1289), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1302), 1, + STATE(1022), 1, + sym__pattern, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1532), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1434), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1295), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1296), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43584,7 +45205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43599,104 +45220,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14267] = 3, + [14315] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(902), 12, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PIPE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(904), 33, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_static, - anon_sym_while, - anon_sym_for, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_move, - anon_sym_ref, - sym_identifier, - sym_super, - [14320] = 24, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, - sym_generic_type_with_turbofish, - STATE(1539), 1, + STATE(1489), 1, sym__pattern, - STATE(1672), 1, + STATE(1500), 1, + sym_generic_type_with_turbofish, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43705,7 +45276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43720,54 +45291,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14415] = 24, + [14410] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(998), 1, - sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1552), 1, + sym__pattern, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43776,7 +45347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43791,54 +45362,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14510] = 24, + [14505] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(912), 1, + sym_mutable_specifier, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1594), 1, - sym_mutable_specifier, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1199), 1, - sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1446), 1, + sym__pattern, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43847,7 +45418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43862,54 +45433,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14605] = 24, + [14600] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1435), 1, + STATE(1303), 1, sym__pattern, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -43918,39 +45489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [14700] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 12, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PIPE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1598), 33, - anon_sym__, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -43965,72 +45504,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_DASH, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_static, - anon_sym_while, - anon_sym_for, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_move, - anon_sym_ref, - sym_identifier, - sym_super, - [14753] = 24, + [14695] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1319), 1, + STATE(1444), 1, sym__pattern, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -44039,7 +45560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44054,54 +45575,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14848] = 24, + [14790] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1276), 1, - sym_scoped_type_identifier, - STATE(1434), 1, + STATE(1178), 1, sym__pattern, - STATE(1479), 1, + STATE(1294), 1, + sym_scoped_type_identifier, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -44110,7 +45631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44125,54 +45646,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14943] = 24, + [14885] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, - sym_mutable_specifier, - ACTIONS(1286), 1, - anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(914), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_TILDE, anon_sym_PIPE, - ACTIONS(1294), 1, - sym_numeric_literal, - ACTIONS(1296), 1, + anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, - ACTIONS(1298), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(916), 32, anon_sym__, - ACTIONS(1514), 1, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_move, + anon_sym_ref, + sym_identifier, + sym_super, + [14938] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1422), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1424), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1426), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1428), 1, + anon_sym__, + ACTIONS(1432), 1, + anon_sym_DASH, + ACTIONS(1434), 1, + anon_sym_PIPE, + ACTIONS(1436), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1438), 1, + sym_numeric_literal, + ACTIONS(1440), 1, + aux_sym_string_literal_token1, + ACTIONS(1442), 1, + sym_shortstring_literal, + ACTIONS(1446), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1448), 1, + sym_mutable_specifier, + ACTIONS(1450), 1, sym_super, - STATE(926), 1, + STATE(1059), 1, sym_scoped_identifier, - STATE(986), 1, - sym_negative_literal, - STATE(1151), 1, + STATE(1256), 1, sym__pattern, - STATE(1276), 1, + STATE(1309), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1336), 1, + sym_negative_literal, + STATE(1535), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1444), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(1264), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(1267), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -44181,7 +45752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1430), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44196,54 +45767,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15038] = 24, + [15033] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1126), 1, + STATE(1165), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -44252,7 +45823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44267,54 +45838,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15133] = 24, + [15128] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(992), 1, + STATE(1212), 1, sym__pattern, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -44323,7 +45894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44338,54 +45909,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15228] = 24, + [15223] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, - sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + ACTIONS(1606), 1, + sym_mutable_specifier, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1276), 1, - sym_scoped_type_identifier, - STATE(1368), 1, + STATE(1225), 1, sym__pattern, - STATE(1479), 1, + STATE(1294), 1, + sym_scoped_type_identifier, + STATE(1500), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -44394,7 +45965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44409,54 +45980,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15323] = 24, + [15318] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(906), 1, + ACTIONS(912), 1, sym_mutable_specifier, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1288), 1, + ACTIONS(1352), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1358), 1, sym_numeric_literal, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1298), 1, + ACTIONS(1362), 1, sym_shortstring_literal, - ACTIONS(1374), 1, + ACTIONS(1396), 1, anon_sym__, - ACTIONS(1514), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1518), 1, + ACTIONS(1528), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, anon_sym_default, - ACTIONS(1526), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1528), 1, + ACTIONS(1538), 1, sym_super, - STATE(926), 1, + STATE(939), 1, sym_scoped_identifier, - STATE(986), 1, + STATE(1004), 1, sym_negative_literal, - STATE(1276), 1, + STATE(1294), 1, sym_scoped_type_identifier, - STATE(1479), 1, - sym_generic_type_with_turbofish, - STATE(1540), 1, + STATE(1436), 1, sym__pattern, - STATE(1672), 1, + STATE(1500), 1, + sym_generic_type_with_turbofish, + STATE(1669), 1, sym_generic_type, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(998), 2, sym_string_literal, sym_boolean_literal, - STATE(1002), 8, + STATE(996), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -44465,7 +46036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1522), 14, + ACTIONS(1532), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44480,54 +46051,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15418] = 24, + [15413] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1412), 1, + ACTIONS(1422), 1, anon_sym_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1424), 1, anon_sym_COLON_COLON, - ACTIONS(1416), 1, + ACTIONS(1426), 1, anon_sym_LPAREN, - ACTIONS(1418), 1, + ACTIONS(1428), 1, anon_sym__, - ACTIONS(1422), 1, + ACTIONS(1432), 1, anon_sym_DASH, - ACTIONS(1424), 1, + ACTIONS(1434), 1, anon_sym_PIPE, - ACTIONS(1426), 1, + ACTIONS(1436), 1, anon_sym_default, - ACTIONS(1428), 1, + ACTIONS(1438), 1, sym_numeric_literal, - ACTIONS(1430), 1, + ACTIONS(1440), 1, aux_sym_string_literal_token1, - ACTIONS(1432), 1, + ACTIONS(1442), 1, sym_shortstring_literal, - ACTIONS(1436), 1, + ACTIONS(1446), 1, sym_identifier, - ACTIONS(1438), 1, + ACTIONS(1448), 1, sym_mutable_specifier, - ACTIONS(1440), 1, + ACTIONS(1450), 1, sym_super, - STATE(1057), 1, + STATE(1059), 1, sym_scoped_identifier, - STATE(1289), 1, - sym_negative_literal, - STATE(1302), 1, - sym_scoped_type_identifier, - STATE(1304), 1, + STATE(1258), 1, sym__pattern, - STATE(1532), 1, + STATE(1309), 1, + sym_scoped_type_identifier, + STATE(1336), 1, + sym_negative_literal, + STATE(1535), 1, sym_generic_type_with_turbofish, - STATE(1672), 1, + STATE(1669), 1, sym_generic_type, - ACTIONS(1434), 2, + ACTIONS(1444), 2, anon_sym_true, anon_sym_false, - STATE(1295), 2, + STATE(1264), 2, sym_string_literal, sym_boolean_literal, - STATE(1296), 8, + STATE(1267), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -44536,76 +46107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [15513] = 23, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1286), 1, - anon_sym_DASH, - ACTIONS(1296), 1, - aux_sym_string_literal_token1, - ACTIONS(1600), 1, - anon_sym_LBRACE, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1610), 1, - anon_sym_GT, - ACTIONS(1612), 1, - anon_sym_AT, - ACTIONS(1614), 1, - anon_sym_default, - ACTIONS(1616), 1, - sym_numeric_literal, - ACTIONS(1618), 1, - sym_shortstring_literal, - ACTIONS(1620), 1, - sym_identifier, - ACTIONS(1622), 1, - sym_super, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(1041), 1, - sym_scoped_type_identifier, - STATE(1524), 1, - sym_scoped_identifier, - ACTIONS(1300), 2, - anon_sym_true, - anon_sym_false, - STATE(1481), 3, - sym__type, - sym__literal, - sym_block, - STATE(1510), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1430), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44620,10 +46122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15605] = 3, + [15508] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(811), 13, + ACTIONS(809), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, @@ -44635,9 +46137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_PIPE, anon_sym_AT, + anon_sym_DOT_DOT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1624), 31, + ACTIONS(1608), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44659,7 +46162,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_match, anon_sym_return, - anon_sym_static, anon_sym_while, anon_sym_for, sym_numeric_literal, @@ -44669,61 +46171,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [15657] = 23, + [15560] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1600), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1620), 1, + anon_sym_GT, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1616), 1, + ACTIONS(1626), 1, sym_numeric_literal, - ACTIONS(1618), 1, + ACTIONS(1628), 1, sym_shortstring_literal, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1626), 1, - anon_sym_GT, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1481), 3, - sym__type, - sym__literal, - sym_block, - STATE(1510), 3, + STATE(1479), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(937), 5, + STATE(1511), 3, + sym__type, + sym__literal, + sym_block, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44738,61 +46240,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15749] = 23, + [15652] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1600), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1616), 1, + ACTIONS(1626), 1, sym_numeric_literal, - ACTIONS(1618), 1, + ACTIONS(1628), 1, sym_shortstring_literal, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1628), 1, + ACTIONS(1634), 1, anon_sym_GT, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1481), 3, - sym__type, - sym__literal, - sym_block, - STATE(1510), 3, + STATE(1479), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(937), 5, + STATE(1511), 3, + sym__type, + sym__literal, + sym_block, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44807,61 +46309,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15841] = 23, + [15744] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1600), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1616), 1, + ACTIONS(1626), 1, sym_numeric_literal, - ACTIONS(1618), 1, + ACTIONS(1628), 1, sym_shortstring_literal, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1630), 1, + ACTIONS(1636), 1, anon_sym_GT, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1481), 3, - sym__type, - sym__literal, - sym_block, - STATE(1510), 3, + STATE(1479), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(937), 5, + STATE(1511), 3, + sym__type, + sym__literal, + sym_block, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44876,61 +46378,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15933] = 23, + [15836] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1600), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1616), 1, + ACTIONS(1626), 1, sym_numeric_literal, - ACTIONS(1618), 1, + ACTIONS(1628), 1, sym_shortstring_literal, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, - sym_super, ACTIONS(1632), 1, + sym_super, + ACTIONS(1638), 1, anon_sym_GT, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1481), 3, - sym__type, - sym__literal, - sym_block, - STATE(1510), 3, + STATE(1479), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(937), 5, + STATE(1511), 3, + sym__type, + sym__literal, + sym_block, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44945,61 +46447,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [16025] = 23, + [15928] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1600), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1616), 1, + ACTIONS(1626), 1, sym_numeric_literal, - ACTIONS(1618), 1, + ACTIONS(1628), 1, sym_shortstring_literal, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1634), 1, + ACTIONS(1640), 1, anon_sym_GT, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1481), 3, - sym__type, - sym__literal, - sym_block, - STATE(1510), 3, + STATE(1479), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(937), 5, + STATE(1511), 3, + sym__type, + sym__literal, + sym_block, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -45014,59 +46516,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [16117] = 22, + [16020] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1600), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1616), 1, + ACTIONS(1626), 1, sym_numeric_literal, - ACTIONS(1618), 1, + ACTIONS(1628), 1, sym_shortstring_literal, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1642), 1, + anon_sym_GT, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(1044), 1, + sym_scoped_type_identifier, + STATE(1531), 1, + sym_scoped_identifier, + ACTIONS(1364), 2, + anon_sym_true, + anon_sym_false, + STATE(1479), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1511), 3, + sym__type, + sym__literal, + sym_block, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [16112] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1350), 1, + anon_sym_DASH, + ACTIONS(1360), 1, + aux_sym_string_literal_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, + anon_sym_LPAREN, ACTIONS(1622), 1, + anon_sym_AT, + ACTIONS(1624), 1, + anon_sym_default, + ACTIONS(1626), 1, + sym_numeric_literal, + ACTIONS(1628), 1, + sym_shortstring_literal, + ACTIONS(1630), 1, + sym_identifier, + ACTIONS(1632), 1, sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1350), 3, + STATE(1408), 3, sym__type, sym__literal, sym_block, - STATE(1510), 3, + STATE(1479), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -45081,59 +46652,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [16206] = 22, + [16201] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1600), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1616), 1, + ACTIONS(1626), 1, sym_numeric_literal, - ACTIONS(1618), 1, + ACTIONS(1628), 1, sym_shortstring_literal, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1355), 3, + STATE(1276), 3, sym__type, sym__literal, sym_block, - STATE(1510), 3, + STATE(1479), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -45148,59 +46719,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [16295] = 22, + [16290] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1600), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1616), 1, + ACTIONS(1626), 1, sym_numeric_literal, - ACTIONS(1618), 1, + ACTIONS(1628), 1, sym_shortstring_literal, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1398), 3, + STATE(1355), 3, sym__type, sym__literal, sym_block, - STATE(1510), 3, + STATE(1479), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -45215,59 +46786,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [16384] = 22, + [16379] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1350), 1, anon_sym_DASH, - ACTIONS(1296), 1, + ACTIONS(1360), 1, aux_sym_string_literal_token1, - ACTIONS(1600), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1616), 1, + ACTIONS(1626), 1, sym_numeric_literal, - ACTIONS(1618), 1, + ACTIONS(1628), 1, sym_shortstring_literal, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - ACTIONS(1300), 2, + ACTIONS(1364), 2, anon_sym_true, anon_sym_false, - STATE(1481), 3, - sym__type, - sym__literal, - sym_block, - STATE(1510), 3, + STATE(1479), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(937), 5, + STATE(1511), 3, + sym__type, + sym__literal, + sym_block, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -45282,11 +46853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [16473] = 3, + [16468] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1638), 10, + ACTIONS(1646), 12, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -45296,15 +46868,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1636), 27, + anon_sym_DOT, + ACTIONS(1644), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, anon_sym_COLON_COLON, + anon_sym_as, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -45321,21 +46894,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - anon_sym_nopanic, - [16518] = 7, + [16514] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1640), 1, + ACTIONS(1650), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1648), 27, anon_sym_LBRACE, - ACTIONS(1642), 1, - anon_sym_BANG, - ACTIONS(1644), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, anon_sym_COLON_COLON, - STATE(496), 1, - sym_field_initializer_list, - ACTIONS(752), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + anon_sym_nopanic, + [16560] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1654), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -45346,12 +46953,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 23, + anon_sym_DOT, + ACTIONS(1652), 27, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_implicits, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -45368,12 +46979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [16571] = 3, + anon_sym_nopanic, + [16606] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1648), 11, + ACTIONS(1658), 12, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -45385,7 +46997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1646), 26, + anon_sym_DOT, + ACTIONS(1656), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -45410,12 +47023,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [16652] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1660), 1, + anon_sym_LBRACE, + ACTIONS(1662), 1, + anon_sym_BANG, + ACTIONS(1664), 1, + anon_sym_COLON_COLON, + STATE(508), 1, + sym_field_initializer_list, + ACTIONS(882), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_DOT, + ACTIONS(878), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_QMARK, - [16616] = 3, + [16706] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1652), 10, + ACTIONS(1668), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -45426,7 +47086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1650), 27, + anon_sym_DOT, + ACTIONS(1666), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -45451,13 +47112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, anon_sym_nopanic, - [16661] = 3, + [16752] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1656), 11, + ACTIONS(1672), 12, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -45469,7 +47130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1654), 26, + anon_sym_DOT, + ACTIONS(1670), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -45494,12 +47156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [16706] = 3, + [16798] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1660), 11, + ACTIONS(1676), 12, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -45511,7 +47173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1658), 26, + anon_sym_DOT, + ACTIONS(1674), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -45536,12 +47199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [16751] = 3, + [16844] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1664), 11, + ACTIONS(1678), 1, + anon_sym_LBRACE, + ACTIONS(1658), 12, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -45553,15 +47218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1662), 26, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1656), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_as, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -45578,13 +47242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [16796] = 3, + [16891] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1668), 10, + ACTIONS(1680), 1, + anon_sym_LBRACE, + ACTIONS(1646), 12, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -45594,14 +47261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1666), 27, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1644), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, @@ -45619,15 +47285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - anon_sym_nopanic, - [16841] = 4, + [16938] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1670), 1, + ACTIONS(1682), 1, anon_sym_LBRACE, - ACTIONS(1660), 11, + ACTIONS(1676), 12, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -45639,7 +47304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1658), 24, + anon_sym_DOT, + ACTIONS(1674), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -45662,14 +47328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [16887] = 4, + [16985] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1672), 1, + ACTIONS(1684), 1, anon_sym_LBRACE, - ACTIONS(1648), 11, + ACTIONS(1672), 12, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -45681,7 +47347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1646), 24, + anon_sym_DOT, + ACTIONS(1670), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -45704,16 +47371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [16933] = 4, + [17032] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1674), 1, - anon_sym_LBRACE, - ACTIONS(1656), 11, + ACTIONS(1686), 1, + anon_sym_else, + STATE(115), 1, + sym_else_clause, + ACTIONS(756), 11, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -45723,13 +47391,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1654), 24, + anon_sym_DOT, + ACTIONS(754), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -45746,16 +47415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [16979] = 5, + [17081] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1676), 1, - anon_sym_else, - STATE(89), 1, - sym_else_clause, - ACTIONS(720), 10, + ACTIONS(704), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -45766,7 +47431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(718), 24, + anon_sym_DOT, + ACTIONS(702), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -45789,16 +47455,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [17027] = 4, + anon_sym_else, + [17125] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1678), 1, - anon_sym_LBRACE, - ACTIONS(1664), 11, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(493), 1, + sym_arguments, + ACTIONS(1690), 11, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -45808,14 +47476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1662), 24, + anon_sym_DOT, + ACTIONS(1688), 23, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -45831,77 +47499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [17073] = 18, + [17173] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1682), 1, - anon_sym_AT, - ACTIONS(1684), 1, - anon_sym_default, - ACTIONS(1686), 1, - anon_sym_nopanic, - ACTIONS(1688), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1062), 1, - sym__type, - STATE(1466), 1, - sym_scoped_identifier, - STATE(1535), 1, - sym_nopanic, - ACTIONS(1680), 2, + ACTIONS(1694), 2, anon_sym_LBRACE, - anon_sym_SEMI, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [17146] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - STATE(493), 1, - sym_arguments, - ACTIONS(1692), 10, + anon_sym_COLON_COLON, + ACTIONS(1698), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -45912,12 +47518,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 20, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1696), 23, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -45933,20 +47541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17199] = 8, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [17219] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1640), 1, - anon_sym_LBRACE, - ACTIONS(1642), 1, - anon_sym_BANG, - ACTIONS(1644), 1, + ACTIONS(1700), 1, anon_sym_COLON_COLON, - ACTIONS(1702), 1, - anon_sym_COLON, - STATE(496), 1, - sym_field_initializer_list, - ACTIONS(752), 10, + ACTIONS(882), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -45957,8 +47559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 20, + anon_sym_DOT, + ACTIONS(878), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -45976,67 +47583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [17252] = 18, + [17265] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1682), 1, - anon_sym_AT, - ACTIONS(1684), 1, - anon_sym_default, - ACTIONS(1686), 1, - anon_sym_nopanic, - ACTIONS(1688), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1051), 1, - sym__type, - STATE(1466), 1, - sym_scoped_identifier, - STATE(1545), 1, - sym_nopanic, - ACTIONS(1704), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [17325] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1708), 10, + ACTIONS(1704), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46047,7 +47599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1706), 25, + anon_sym_DOT, + ACTIONS(1702), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -46071,22 +47624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [17368] = 8, + [17309] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - STATE(493), 1, - sym_arguments, - ACTIONS(1712), 10, + ACTIONS(708), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46097,12 +47640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1710), 20, + anon_sym_DOT, + ACTIONS(706), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -46118,20 +47664,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17421] = 8, + anon_sym_DOT_DOT, + anon_sym_QMARK, + anon_sym_else, + [17353] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - STATE(493), 1, - sym_arguments, - ACTIONS(1716), 10, + ACTIONS(1708), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46142,12 +47681,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1714), 20, + anon_sym_DOT, + ACTIONS(1706), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -46163,10 +47706,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17474] = 3, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [17397] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1720), 10, + ACTIONS(1714), 1, + anon_sym_BANG, + ACTIONS(1716), 1, + anon_sym_COLON_COLON, + ACTIONS(1712), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46177,14 +47726,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1718), 25, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1710), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -46201,16 +47749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [17517] = 5, + [17445] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1726), 1, - anon_sym_BANG, - ACTIONS(1728), 1, + ACTIONS(1718), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(1724), 10, + ACTIONS(1698), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46221,7 +47768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1722), 23, + anon_sym_DOT, + ACTIONS(1696), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -46243,12 +47791,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [17491] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1660), 1, + anon_sym_LBRACE, + ACTIONS(1662), 1, + anon_sym_BANG, + ACTIONS(1664), 1, + anon_sym_COLON_COLON, + ACTIONS(1720), 1, + anon_sym_COLON, + STATE(508), 1, + sym_field_initializer_list, + ACTIONS(882), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_DOT, + ACTIONS(878), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_QMARK, - [17564] = 3, + [17545] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(607), 10, + ACTIONS(1662), 1, + anon_sym_BANG, + ACTIONS(1722), 1, + anon_sym_COLON_COLON, + ACTIONS(882), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46259,8 +47857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(605), 25, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(878), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -46282,13 +47880,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - anon_sym_else, - [17607] = 3, + [17593] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(591), 10, + ACTIONS(690), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46299,7 +47896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(589), 25, + anon_sym_DOT, + ACTIONS(688), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -46322,17 +47920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, anon_sym_else, - [17650] = 5, + [17637] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1642), 1, - anon_sym_BANG, - ACTIONS(1730), 1, - anon_sym_COLON_COLON, - ACTIONS(752), 10, + ACTIONS(1726), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46343,7 +47937,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 23, + anon_sym_DOT, + ACTIONS(1724), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -46365,22 +47961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [17697] = 8, + [17680] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - STATE(493), 1, - sym_arguments, - ACTIONS(1734), 10, + ACTIONS(1730), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46391,12 +47977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1732), 20, + anon_sym_DOT, + ACTIONS(1728), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -46412,12 +48001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17750] = 4, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [17723] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1736), 1, - anon_sym_COLON_COLON, - ACTIONS(752), 10, + ACTIONS(1734), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46428,7 +48017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 24, + anon_sym_DOT, + ACTIONS(1732), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -46451,15 +48041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [17795] = 4, + [17766] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1738), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1742), 10, + ACTIONS(882), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46470,7 +48057,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1740), 23, + anon_sym_DOT, + ACTIONS(878), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -46492,15 +48081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [17840] = 4, + [17809] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1744), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1742), 10, + ACTIONS(1738), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46511,7 +48097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1740), 23, + anon_sym_DOT, + ACTIONS(1736), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -46533,12 +48121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [17885] = 3, + [17852] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(555), 10, + ACTIONS(1742), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46549,7 +48137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(553), 25, + anon_sym_DOT, + ACTIONS(1740), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -46572,105 +48161,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - anon_sym_else, - [17928] = 18, + [17895] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1682), 1, - anon_sym_AT, - ACTIONS(1684), 1, - anon_sym_default, - ACTIONS(1686), 1, - anon_sym_nopanic, - ACTIONS(1688), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1059), 1, - sym__type, - STATE(1466), 1, - sym_scoped_identifier, - STATE(1558), 1, - sym_nopanic, - ACTIONS(1746), 2, + ACTIONS(1746), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1744), 24, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [18001] = 18, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [17938] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1682), 1, + ACTIONS(1750), 1, anon_sym_AT, - ACTIONS(1684), 1, + ACTIONS(1752), 1, anon_sym_default, - ACTIONS(1686), 1, + ACTIONS(1754), 1, anon_sym_nopanic, - ACTIONS(1688), 1, + ACTIONS(1756), 1, sym_identifier, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1055), 1, + STATE(1077), 1, sym__type, - STATE(1466), 1, + STATE(1470), 1, sym_scoped_identifier, - STATE(1567), 1, + STATE(1509), 1, sym_nopanic, ACTIONS(1748), 2, anon_sym_LBRACE, anon_sym_SEMI, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -46685,10 +48258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [18074] = 3, + [18011] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1752), 10, + ACTIONS(1760), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46699,7 +48272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1750), 24, + anon_sym_DOT, + ACTIONS(1758), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -46722,12 +48296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [18116] = 3, + [18054] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(752), 10, + ACTIONS(518), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46738,7 +48312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 24, + anon_sym_DOT, + ACTIONS(516), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -46761,12 +48336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [18158] = 3, + [18097] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1756), 10, + ACTIONS(1764), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46777,7 +48352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1754), 24, + anon_sym_DOT, + ACTIONS(1762), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -46800,67 +48376,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [18200] = 19, + [18140] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(530), 11, anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1758), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(528), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(1780), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [18274] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [18183] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1786), 10, + ACTIONS(538), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46871,7 +48432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1784), 24, + anon_sym_DOT, + ACTIONS(536), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -46894,12 +48456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [18316] = 3, + [18226] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1790), 10, + ACTIONS(1698), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -46910,7 +48472,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1788), 24, + anon_sym_DOT, + ACTIONS(1696), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -46933,103 +48496,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [18358] = 18, + [18269] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1794), 1, + ACTIONS(1768), 11, anon_sym_EQ, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1792), 10, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [18430] = 14, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, anon_sym_AMP, - ACTIONS(1772), 1, anon_sym_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1692), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1690), 16, + anon_sym_DOT, + ACTIONS(1766), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47039,36 +48536,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18494] = 9, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [18312] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - STATE(493), 1, - sym_arguments, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1692), 7, + ACTIONS(1772), 11, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 19, + anon_sym_DOT, + ACTIONS(1770), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -47084,10 +48576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18548] = 3, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [18355] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1798), 10, + ACTIONS(1776), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47098,7 +48592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1796), 24, + anon_sym_DOT, + ACTIONS(1774), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47121,47 +48616,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [18590] = 12, + [18398] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1770), 1, - anon_sym_AMP, - STATE(493), 1, - sym_arguments, - ACTIONS(1766), 2, + ACTIONS(1780), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 17, + anon_sym_DOT, + ACTIONS(1778), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47171,10 +48656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18650] = 3, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [18441] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(519), 10, + ACTIONS(1785), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47185,7 +48672,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(517), 24, + anon_sym_DOT, + ACTIONS(1782), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47208,46 +48696,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [18692] = 11, + [18484] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - STATE(493), 1, - sym_arguments, - ACTIONS(1766), 2, + ACTIONS(1790), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 17, + anon_sym_DOT, + ACTIONS(1788), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47257,10 +48736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18750] = 3, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [18527] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1802), 10, + ACTIONS(1794), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47271,7 +48752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1800), 24, + anon_sym_DOT, + ACTIONS(1792), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47294,48 +48776,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [18792] = 13, + [18570] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - STATE(493), 1, - sym_arguments, - ACTIONS(1766), 2, + ACTIONS(1798), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 16, + anon_sym_DOT, + ACTIONS(1796), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47345,115 +48816,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18854] = 16, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [18613] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1692), 1, + ACTIONS(1800), 1, + anon_sym_COLON_COLON, + ACTIONS(882), 11, anon_sym_EQ, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1690), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(878), 23, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [18922] = 17, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [18658] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1692), 1, + ACTIONS(1804), 11, anon_sym_EQ, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1690), 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1802), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [18992] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [18701] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1806), 10, + ACTIONS(1808), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47464,7 +48913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1804), 24, + anon_sym_DOT, + ACTIONS(1806), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47487,39 +48937,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19034] = 10, + [18744] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - STATE(493), 1, - sym_arguments, - ACTIONS(1766), 2, + ACTIONS(1812), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 19, + anon_sym_DOT, + ACTIONS(1810), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -47535,10 +48977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [19090] = 3, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [18787] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1808), 10, + ACTIONS(1816), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47549,7 +48993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1758), 24, + anon_sym_DOT, + ACTIONS(1814), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47572,66 +49017,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19132] = 18, + [18830] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1812), 1, + ACTIONS(1820), 10, anon_sym_EQ, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 10, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1818), 22, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [19204] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + [18879] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1742), 10, + ACTIONS(1830), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47642,7 +49076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1740), 24, + anon_sym_DOT, + ACTIONS(1828), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47665,12 +49100,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19246] = 3, + [18922] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, + anon_sym_LPAREN, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1750), 1, + anon_sym_AT, + ACTIONS(1752), 1, + anon_sym_default, + ACTIONS(1754), 1, + anon_sym_nopanic, + ACTIONS(1756), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1075), 1, + sym__type, + STATE(1470), 1, + sym_scoped_identifier, + STATE(1476), 1, + sym_nopanic, + ACTIONS(1832), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [18995] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1816), 10, + ACTIONS(1836), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47681,7 +49171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1814), 24, + anon_sym_DOT, + ACTIONS(1834), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47704,12 +49195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19288] = 3, + [19038] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1820), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1840), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47720,11 +49217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1818), 24, + ACTIONS(1838), 22, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -47743,12 +49239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [19330] = 3, + anon_sym_DOT_DOT, + [19087] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1824), 10, + ACTIONS(1844), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47759,7 +49254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1822), 24, + anon_sym_DOT, + ACTIONS(1842), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47782,67 +49278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [19372] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, + anon_sym_DOT_DOT, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(1826), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - [19446] = 3, + [19130] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1828), 10, + ACTIONS(882), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47853,7 +49294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1826), 24, + anon_sym_DOT, + ACTIONS(878), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47876,12 +49318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19488] = 3, + [19173] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1832), 10, + ACTIONS(1848), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47892,7 +49334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1830), 24, + anon_sym_DOT, + ACTIONS(1846), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47915,12 +49358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19530] = 3, + [19216] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1836), 10, + ACTIONS(1852), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47931,7 +49374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1834), 24, + anon_sym_DOT, + ACTIONS(1850), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47954,12 +49398,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19572] = 3, + [19259] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1840), 10, + ACTIONS(1856), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -47970,7 +49414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1838), 24, + anon_sym_DOT, + ACTIONS(1854), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -47993,12 +49438,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19614] = 3, + [19302] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1844), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1860), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48009,11 +49460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1842), 24, + ACTIONS(1858), 22, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -48032,12 +49482,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [19656] = 3, + anon_sym_DOT_DOT, + [19351] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1848), 10, + ACTIONS(1864), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48048,7 +49497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1846), 24, + anon_sym_DOT, + ACTIONS(1862), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -48071,12 +49521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19698] = 3, + [19394] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1852), 10, + ACTIONS(1868), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48087,7 +49537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1850), 24, + anon_sym_DOT, + ACTIONS(1866), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -48110,12 +49561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19740] = 3, + [19437] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1856), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1872), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48126,11 +49583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1854), 24, + ACTIONS(1870), 22, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -48149,12 +49605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [19782] = 3, + anon_sym_DOT_DOT, + [19486] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1860), 10, + ACTIONS(1690), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48165,7 +49620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1858), 24, + anon_sym_DOT, + ACTIONS(1688), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -48188,66 +49644,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19824] = 18, + [19529] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1864), 1, - anon_sym_EQ, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1862), 10, - anon_sym_RBRACE, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1750), 1, + anon_sym_AT, + ACTIONS(1752), 1, + anon_sym_default, + ACTIONS(1754), 1, + anon_sym_nopanic, + ACTIONS(1756), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1056), 1, + sym__type, + STATE(1470), 1, + sym_scoped_identifier, + STATE(1568), 1, + sym_nopanic, + ACTIONS(1874), 2, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [19896] = 3, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [19602] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1868), 10, + ACTIONS(1878), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48258,7 +49715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1866), 24, + anon_sym_DOT, + ACTIONS(1876), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -48281,12 +49739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19938] = 3, + [19645] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1872), 10, + ACTIONS(1882), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48297,7 +49755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1870), 24, + anon_sym_DOT, + ACTIONS(1880), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -48320,12 +49779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [19980] = 3, + [19688] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1876), 10, + ACTIONS(1886), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48336,7 +49795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1874), 24, + anon_sym_DOT, + ACTIONS(1884), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -48359,14 +49819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [20022] = 4, + [19731] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1878), 1, - anon_sym_COLON_COLON, - ACTIONS(752), 10, + ACTIONS(1890), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48377,7 +49835,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 23, + anon_sym_DOT, + ACTIONS(1888), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -48399,12 +49859,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [20066] = 3, + [19774] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1882), 10, + ACTIONS(1894), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48415,7 +49875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1880), 24, + anon_sym_DOT, + ACTIONS(1892), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -48438,12 +49899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [20108] = 3, + [19817] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1886), 10, + ACTIONS(1898), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48454,7 +49915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1884), 24, + anon_sym_DOT, + ACTIONS(1896), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -48477,129 +49939,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [20150] = 3, + [19860] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, + anon_sym_LPAREN, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1750), 1, + anon_sym_AT, + ACTIONS(1752), 1, + anon_sym_default, + ACTIONS(1754), 1, + anon_sym_nopanic, + ACTIONS(1756), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1069), 1, + sym__type, + STATE(1470), 1, + sym_scoped_identifier, + STATE(1497), 1, + sym_nopanic, + ACTIONS(1900), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [19933] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1890), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1904), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1926), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1888), 24, - anon_sym_LBRACE, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1902), 11, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20192] = 18, + [20003] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(1894), 1, + ACTIONS(1926), 1, + anon_sym_DOT_DOT, + ACTIONS(1930), 1, anon_sym_EQ, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1892), 10, + ACTIONS(1928), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [20264] = 3, + [20073] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1899), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1860), 3, anon_sym_EQ, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1896), 24, - anon_sym_LBRACE, + ACTIONS(1858), 18, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48609,27 +50149,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20306] = 3, + anon_sym_DOT_DOT, + [20133] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1904), 10, - anon_sym_EQ, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1906), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1860), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1902), 24, - anon_sym_LBRACE, + ACTIONS(1858), 21, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -48648,27 +50192,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20348] = 3, + anon_sym_DOT_DOT, + [20183] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1908), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + ACTIONS(1860), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(1906), 24, - anon_sym_LBRACE, + ACTIONS(1858), 19, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -48676,8 +50229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48687,82 +50238,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20390] = 19, + anon_sym_DOT_DOT, + [20239] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(1906), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - [20464] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1912), 10, + ACTIONS(1860), 5, anon_sym_EQ, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1910), 24, - anon_sym_LBRACE, + ACTIONS(1858), 19, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -48770,8 +50274,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48781,36 +50283,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20506] = 3, + anon_sym_DOT_DOT, + [20293] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1916), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + ACTIONS(1860), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(1914), 24, - anon_sym_LBRACE, + ACTIONS(1858), 18, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48820,105 +50330,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20548] = 3, + anon_sym_DOT_DOT, + [20351] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1920), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1860), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1918), 24, - anon_sym_LBRACE, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1858), 14, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20590] = 3, + anon_sym_DOT_DOT, + [20415] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(752), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1860), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(754), 24, - anon_sym_LBRACE, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1858), 13, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20632] = 3, + anon_sym_DOT_DOT, + [20481] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1924), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1860), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1922), 24, - anon_sym_LBRACE, + ACTIONS(1858), 21, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -48937,168 +50475,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20674] = 3, + anon_sym_DOT_DOT, + [20533] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1928), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1926), 1, + anon_sym_DOT_DOT, + ACTIONS(1934), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1926), 24, - anon_sym_LBRACE, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1932), 11, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20716] = 3, + [20603] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(515), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1926), 1, + anon_sym_DOT_DOT, + ACTIONS(1938), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(513), 24, - anon_sym_LBRACE, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1936), 11, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20758] = 3, + [20673] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1932), 10, + ACTIONS(257), 1, anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1930), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1822), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, anon_sym_AMP_AMP, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(255), 12, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20800] = 3, + anon_sym_DOT_DOT, + [20741] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(504), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1942), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(502), 24, - anon_sym_LBRACE, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1940), 12, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_DOT, + [20809] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, anon_sym_AMP_AMP, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, + ACTIONS(1926), 1, + anon_sym_DOT_DOT, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [20842] = 3, + ACTIONS(1774), 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + [20881] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1936), 10, + ACTIONS(1948), 1, + anon_sym_LBRACE, + ACTIONS(1950), 1, + anon_sym_BANG, + ACTIONS(1952), 1, + anon_sym_COLON_COLON, + STATE(767), 1, + sym_field_initializer_list, + ACTIONS(882), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -49109,15 +50762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1934), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_DOT, + ACTIONS(878), 19, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -49132,17 +50780,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [20931] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, anon_sym_DOT, + ACTIONS(1826), 1, anon_sym_QMARK, - [20884] = 3, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1926), 1, + anon_sym_DOT_DOT, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(1732), 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + [21003] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(952), 4, + ACTIONS(982), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(954), 29, + ACTIONS(984), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49172,15 +50875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20925] = 3, + [21044] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1184), 4, + ACTIONS(1102), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1186), 29, + ACTIONS(1104), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49210,15 +50913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20966] = 3, + [21085] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1076), 4, + ACTIONS(1236), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1078), 29, + ACTIONS(1238), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49248,15 +50951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21007] = 3, + [21126] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1080), 4, + ACTIONS(1142), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1082), 29, + ACTIONS(1144), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49286,15 +50989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21048] = 3, + [21167] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 4, + ACTIONS(1098), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1214), 29, + ACTIONS(1100), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49324,15 +51027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21089] = 3, + [21208] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 4, + ACTIONS(930), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1218), 29, + ACTIONS(932), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49362,15 +51065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21130] = 3, + [21249] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1220), 4, + ACTIONS(918), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1222), 29, + ACTIONS(920), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49400,15 +51103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21171] = 3, + [21290] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(916), 4, + ACTIONS(1232), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(918), 29, + ACTIONS(1234), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49438,15 +51141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21212] = 3, + [21331] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1228), 4, + ACTIONS(1154), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1230), 29, + ACTIONS(1156), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49476,72 +51179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21253] = 22, + [21372] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(706), 1, - anon_sym_RBRACK, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1938), 1, - anon_sym_SEMI, - ACTIONS(1940), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - STATE(1314), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [21332] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(928), 4, + ACTIONS(1150), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(930), 29, + ACTIONS(1152), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49571,15 +51217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21373] = 3, + [21413] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1096), 4, + ACTIONS(1224), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1098), 29, + ACTIONS(1226), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49609,15 +51255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21414] = 3, + [21454] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(920), 4, + ACTIONS(958), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(922), 29, + ACTIONS(960), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49647,15 +51293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21455] = 3, + [21495] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(936), 4, + ACTIONS(966), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(938), 29, + ACTIONS(968), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49685,15 +51331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21496] = 3, + [21536] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1152), 4, + ACTIONS(1138), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1154), 29, + ACTIONS(1140), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49723,25 +51369,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21537] = 5, + [21577] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1942), 1, + ACTIONS(1106), 4, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_POUND, - STATE(539), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - ACTIONS(1945), 7, - anon_sym_LBRACK, anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1947), 22, - anon_sym__, + ACTIONS(1108), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49757,21 +51403,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, + anon_sym_extern, + anon_sym_pub, sym_identifier, - sym_mutable_specifier, sym_super, - [21582] = 3, + [21618] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(972), 4, + ACTIONS(1082), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(974), 29, + ACTIONS(1084), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49801,15 +51445,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21623] = 3, + [21659] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(988), 4, + ACTIONS(1178), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(990), 29, + ACTIONS(1180), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49839,15 +51483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21664] = 3, + [21700] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1000), 4, + ACTIONS(1170), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1002), 29, + ACTIONS(1172), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49877,15 +51521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21705] = 3, + [21741] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1004), 4, + ACTIONS(1054), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1006), 29, + ACTIONS(1056), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49915,15 +51559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21746] = 3, + [21782] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1040), 4, + ACTIONS(1220), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1042), 29, + ACTIONS(1222), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49953,15 +51597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21787] = 3, + [21823] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1044), 4, + ACTIONS(1070), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1046), 29, + ACTIONS(1072), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -49991,15 +51635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21828] = 3, + [21864] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1048), 4, + ACTIONS(1090), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1050), 29, + ACTIONS(1092), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50029,15 +51673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21869] = 3, + [21905] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(948), 4, + ACTIONS(922), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(950), 29, + ACTIONS(924), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50067,15 +51711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21910] = 3, + [21946] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1060), 4, + ACTIONS(1078), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1062), 29, + ACTIONS(1080), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50105,15 +51749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21951] = 3, + [21987] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1116), 4, + ACTIONS(970), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1118), 29, + ACTIONS(972), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50143,15 +51787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21992] = 3, + [22028] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1056), 4, + ACTIONS(1190), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1058), 29, + ACTIONS(1192), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50181,15 +51825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22033] = 3, + [22069] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1072), 4, + ACTIONS(1018), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1074), 29, + ACTIONS(1020), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50219,15 +51863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22074] = 3, + [22110] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(964), 4, + ACTIONS(962), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(966), 29, + ACTIONS(964), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50257,15 +51901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22115] = 3, + [22151] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1168), 4, + ACTIONS(986), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1170), 29, + ACTIONS(988), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50295,15 +51939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22156] = 3, + [22192] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(912), 4, + ACTIONS(1194), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(914), 29, + ACTIONS(1196), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50333,15 +51977,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22197] = 3, + [22233] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1684), 1, + anon_sym_LBRACE, + ACTIONS(1672), 12, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1670), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [22276] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1028), 4, + ACTIONS(1198), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1030), 29, + ACTIONS(1200), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50371,15 +52054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22238] = 3, + [22317] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1024), 4, + ACTIONS(954), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1026), 29, + ACTIONS(956), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50409,15 +52092,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22279] = 3, + [22358] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(956), 4, + ACTIONS(950), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(958), 29, + ACTIONS(952), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50447,15 +52130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22320] = 3, + [22399] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1172), 4, + ACTIONS(1206), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1174), 29, + ACTIONS(1208), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50485,15 +52168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22361] = 3, + [22440] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1140), 4, + ACTIONS(942), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1142), 29, + ACTIONS(944), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50523,15 +52206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22402] = 3, + [22481] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1136), 4, + ACTIONS(1118), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1138), 29, + ACTIONS(1120), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50561,15 +52244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22443] = 3, + [22522] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1132), 4, + ACTIONS(1210), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1134), 29, + ACTIONS(1212), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50599,15 +52282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22484] = 3, + [22563] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1120), 4, + ACTIONS(934), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1122), 29, + ACTIONS(936), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50637,15 +52320,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22525] = 3, + [22604] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1128), 4, + ACTIONS(926), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1130), 29, + ACTIONS(928), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50675,15 +52358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22566] = 3, + [22645] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(984), 4, + ACTIONS(1214), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(986), 29, + ACTIONS(1216), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50713,15 +52396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22607] = 3, + [22686] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(980), 4, + ACTIONS(1166), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(982), 29, + ACTIONS(1168), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50751,15 +52434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22648] = 3, + [22727] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1112), 4, + ACTIONS(1228), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1114), 29, + ACTIONS(1230), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50789,15 +52472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22689] = 3, + [22768] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(944), 4, + ACTIONS(990), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(946), 29, + ACTIONS(992), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50827,15 +52510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22730] = 3, + [22809] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1020), 4, + ACTIONS(1174), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1022), 29, + ACTIONS(1176), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50865,15 +52548,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22771] = 3, + [22850] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1008), 4, + ACTIONS(1954), 1, + anon_sym_POUND, + STATE(582), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + ACTIONS(1957), 7, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1959), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [22895] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1162), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1010), 29, + ACTIONS(1164), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50903,15 +52626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22812] = 3, + [22936] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1016), 4, + ACTIONS(994), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1018), 29, + ACTIONS(996), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50941,15 +52664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22853] = 3, + [22977] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1108), 4, + ACTIONS(1146), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1110), 29, + ACTIONS(1148), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -50979,15 +52702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22894] = 3, + [23018] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1208), 4, + ACTIONS(1202), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1210), 29, + ACTIONS(1204), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51017,15 +52740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22935] = 3, + [23059] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1012), 4, + ACTIONS(1130), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1014), 29, + ACTIONS(1132), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51055,15 +52778,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22976] = 3, + [23100] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1204), 4, + ACTIONS(1678), 1, + anon_sym_LBRACE, + ACTIONS(1658), 12, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1656), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [23143] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1134), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1206), 29, + ACTIONS(1136), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51093,72 +52855,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23017] = 22, + [23184] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(619), 1, - anon_sym_RBRACK, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1949), 1, + ACTIONS(1094), 4, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1951), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - STATE(1329), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1764), 2, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1096), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [23225] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(998), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1000), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [23266] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1680), 1, + anon_sym_LBRACE, + ACTIONS(1646), 12, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1644), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [23096] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [23309] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(960), 4, + ACTIONS(1002), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(962), 29, + ACTIONS(1004), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51188,15 +53008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23137] = 3, + [23350] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1068), 4, + ACTIONS(1022), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1070), 29, + ACTIONS(1024), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51226,15 +53046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23178] = 3, + [23391] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1088), 4, + ACTIONS(978), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1090), 29, + ACTIONS(980), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51264,15 +53084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23219] = 3, + [23432] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1188), 4, + ACTIONS(946), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1190), 29, + ACTIONS(948), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51302,15 +53122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23260] = 3, + [23473] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1180), 4, + ACTIONS(1126), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1182), 29, + ACTIONS(1128), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51340,15 +53160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23301] = 3, + [23514] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1164), 4, + ACTIONS(1050), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1166), 29, + ACTIONS(1052), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51378,15 +53198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23342] = 3, + [23555] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1092), 4, + ACTIONS(1122), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1094), 29, + ACTIONS(1124), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51416,15 +53236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23383] = 3, + [23596] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1160), 4, + ACTIONS(1086), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1162), 29, + ACTIONS(1088), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51454,15 +53274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23424] = 3, + [23637] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1052), 4, + ACTIONS(1062), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1054), 29, + ACTIONS(1064), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51492,15 +53312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23465] = 3, + [23678] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1156), 4, + ACTIONS(1182), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1158), 29, + ACTIONS(1184), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51530,15 +53350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23506] = 3, + [23719] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1036), 4, + ACTIONS(938), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1038), 29, + ACTIONS(940), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51568,15 +53388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23547] = 3, + [23760] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1124), 4, + ACTIONS(1058), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1126), 29, + ACTIONS(1060), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51606,15 +53426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23588] = 3, + [23801] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1032), 4, + ACTIONS(1046), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1034), 29, + ACTIONS(1048), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51644,15 +53464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23629] = 3, + [23842] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1104), 4, + ACTIONS(1110), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1106), 29, + ACTIONS(1112), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51682,15 +53502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23670] = 3, + [23883] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1148), 4, + ACTIONS(1006), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1150), 29, + ACTIONS(1008), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51720,15 +53540,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23711] = 3, + [23924] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1084), 4, + ACTIONS(1158), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1086), 29, + ACTIONS(1160), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51758,15 +53578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23752] = 3, + [23965] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1176), 4, + ACTIONS(1074), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1178), 29, + ACTIONS(1076), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51796,15 +53616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23793] = 3, + [24006] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1224), 4, + ACTIONS(1030), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1226), 29, + ACTIONS(1032), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51834,57 +53654,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23834] = 7, + [24047] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1953), 1, - anon_sym_LBRACE, - ACTIONS(1955), 1, - anon_sym_BANG, - ACTIONS(1957), 1, + ACTIONS(1034), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, anon_sym_COLON_COLON, - STATE(876), 1, - sym_field_initializer_list, - ACTIONS(752), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(754), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [23883] = 3, + ACTIONS(1036), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [24088] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1100), 4, + ACTIONS(1066), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1102), 29, + ACTIONS(1068), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -51914,110 +53730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [23924] = 22, + [24129] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(742), 1, - anon_sym_RBRACK, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, - anon_sym_SEMI, - ACTIONS(1961), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - STATE(1387), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [24003] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1200), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - ACTIONS(1202), 29, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - anon_sym_extern, - anon_sym_pub, - sym_identifier, - sym_super, - [24044] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(996), 4, + ACTIONS(1014), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(998), 29, + ACTIONS(1016), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -52047,72 +53768,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [24085] = 22, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(726), 1, - anon_sym_RBRACK, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1963), 1, - anon_sym_SEMI, - ACTIONS(1965), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - STATE(1423), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [24164] = 3, + [24170] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1064), 4, + ACTIONS(1042), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1066), 29, + ACTIONS(1044), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -52142,15 +53806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [24205] = 3, + [24211] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(992), 4, + ACTIONS(1114), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(994), 29, + ACTIONS(1116), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -52180,15 +53844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [24246] = 3, + [24252] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(976), 4, + ACTIONS(1186), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(978), 29, + ACTIONS(1188), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -52218,53 +53882,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [24287] = 3, + [24293] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(968), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_POUND, + ACTIONS(1682), 1, + anon_sym_LBRACE, + ACTIONS(1676), 12, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1674), 20, + anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(970), 29, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - anon_sym_extern, - anon_sym_pub, - sym_identifier, - sym_super, - [24328] = 3, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [24336] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1144), 4, + ACTIONS(1038), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1146), 29, + ACTIONS(1040), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -52294,15 +53959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [24369] = 3, + [24377] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1192), 4, + ACTIONS(1010), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1194), 29, + ACTIONS(1012), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -52332,15 +53997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [24410] = 3, + [24418] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(940), 4, + ACTIONS(1026), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(942), 29, + ACTIONS(1028), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -52370,140 +54035,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [24451] = 3, + [24459] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(932), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_POUND, + ACTIONS(1662), 1, + anon_sym_BANG, + ACTIONS(1961), 1, anon_sym_COLON_COLON, - ACTIONS(934), 29, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - anon_sym_extern, - anon_sym_pub, - sym_identifier, - sym_super, - [24492] = 3, + STATE(508), 1, + sym_field_initializer_list, + ACTIONS(882), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(878), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [24506] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_POUND, + ACTIONS(1676), 12, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1674), 20, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(926), 29, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - anon_sym_extern, - anon_sym_pub, - sym_identifier, - sym_super, - [24533] = 16, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [24546] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1963), 1, + anon_sym_else, + STATE(813), 1, + sym_else_clause, + ACTIONS(756), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(754), 19, anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1967), 1, - anon_sym_RPAREN, - ACTIONS(1969), 1, - anon_sym_default, - ACTIONS(1971), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1105), 1, - sym__type, - STATE(1488), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [24599] = 4, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [24590] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1678), 1, - anon_sym_LBRACE, - ACTIONS(1664), 11, - anon_sym_EQ, + ACTIONS(1965), 1, anon_sym_BANG, + ACTIONS(1967), 1, + anon_sym_COLON_COLON, + ACTIONS(1712), 11, + anon_sym_EQ, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -52513,9 +54170,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1662), 20, + anon_sym_DOT, + ACTIONS(1710), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -52531,15 +54188,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [24641] = 4, + [24634] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1674), 1, - anon_sym_LBRACE, - ACTIONS(1656), 11, + ACTIONS(714), 1, + anon_sym_RBRACK, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1969), 1, + anon_sym_SEMI, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + STATE(1334), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24710] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1658), 12, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -52551,7 +54261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1654), 20, + anon_sym_DOT, + ACTIONS(1656), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -52569,15 +54280,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [24683] = 4, + [24750] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1672), 1, - anon_sym_LBRACE, - ACTIONS(1648), 11, + ACTIONS(1646), 12, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -52589,7 +54298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1646), 20, + anon_sym_DOT, + ACTIONS(1644), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -52607,44 +54317,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [24725] = 16, + [24790] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1973), 1, - anon_sym_impl, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, + anon_sym_LPAREN, + ACTIONS(1632), 1, + sym_super, ACTIONS(1975), 1, - anon_sym_const, + anon_sym_RPAREN, ACTIONS(1977), 1, - anon_sym_POUND, - ACTIONS(1979), 1, - anon_sym_COLON_COLON, - ACTIONS(1983), 1, - anon_sym_GT, - ACTIONS(1987), 1, anon_sym_default, - ACTIONS(1989), 1, + ACTIONS(1979), 1, sym_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1372), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(1465), 1, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1684), 1, + STATE(1105), 1, + sym__type, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1985), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(711), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1981), 15, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52659,43 +54370,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [24791] = 16, + [24856] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1969), 1, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1979), 1, sym_identifier, - ACTIONS(1991), 1, + ACTIONS(1981), 1, anon_sym_RPAREN, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1262), 1, + STATE(1105), 1, sym__type, - STATE(1488), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52710,41 +54420,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24857] = 16, + [24922] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1973), 1, - anon_sym_impl, - ACTIONS(1975), 1, - anon_sym_const, - ACTIONS(1977), 1, - anon_sym_POUND, - ACTIONS(1979), 1, - anon_sym_COLON_COLON, - ACTIONS(1987), 1, - anon_sym_default, - ACTIONS(1989), 1, - sym_identifier, - ACTIONS(1993), 1, + ACTIONS(1672), 12, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, anon_sym_GT, - STATE(1370), 1, - sym_generic_type, - STATE(1372), 1, - sym_generic_type_with_turbofish, - STATE(1465), 1, - sym_scoped_type_identifier, - STATE(1684), 1, - sym_scoped_identifier, - ACTIONS(1985), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(711), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1670), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [24962] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1676), 12, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1674), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [25002] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1983), 1, + anon_sym_impl, + ACTIONS(1985), 1, + anon_sym_const, + ACTIONS(1987), 1, + anon_sym_POUND, + ACTIONS(1989), 1, + anon_sym_COLON_COLON, + ACTIONS(1993), 1, + anon_sym_GT, + ACTIONS(1997), 1, + anon_sym_default, + ACTIONS(1999), 1, + sym_identifier, + STATE(1241), 1, + sym_generic_type, + STATE(1332), 1, + sym_generic_type_with_turbofish, + STATE(1508), 1, + sym_scoped_type_identifier, + STATE(1668), 1, + sym_scoped_identifier, + ACTIONS(1995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(710), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1494), 2, + STATE(1582), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1981), 15, + ACTIONS(1991), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52760,41 +54544,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [24923] = 16, + [25068] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1973), 1, + ACTIONS(1983), 1, anon_sym_impl, - ACTIONS(1975), 1, + ACTIONS(1985), 1, anon_sym_const, - ACTIONS(1977), 1, + ACTIONS(1987), 1, anon_sym_POUND, - ACTIONS(1979), 1, + ACTIONS(1989), 1, anon_sym_COLON_COLON, - ACTIONS(1987), 1, + ACTIONS(1997), 1, anon_sym_default, - ACTIONS(1989), 1, + ACTIONS(1999), 1, sym_identifier, - ACTIONS(1995), 1, + ACTIONS(2001), 1, anon_sym_GT, - STATE(1370), 1, + STATE(1241), 1, sym_generic_type, - STATE(1372), 1, + STATE(1332), 1, sym_generic_type_with_turbofish, - STATE(1465), 1, + STATE(1508), 1, sym_scoped_type_identifier, - STATE(1684), 1, + STATE(1668), 1, sym_scoped_identifier, - ACTIONS(1985), 2, + ACTIONS(1995), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(711), 2, + STATE(710), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1494), 2, + STATE(1582), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1981), 15, + ACTIONS(1991), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52810,12 +54594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [24989] = 4, + [25134] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1670), 1, - anon_sym_LBRACE, - ACTIONS(1660), 11, + ACTIONS(1658), 12, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -52827,7 +54609,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1658), 20, + anon_sym_DOT, + ACTIONS(1656), 20, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -52845,304 +54629,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [25031] = 21, + [25174] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(728), 1, - anon_sym_RBRACK, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(1714), 1, + anon_sym_BANG, + ACTIONS(2003), 1, + anon_sym_COLON_COLON, + ACTIONS(1712), 11, anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1997), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - STATE(1405), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1710), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [25218] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1950), 1, + anon_sym_BANG, + ACTIONS(2005), 1, + anon_sym_COLON_COLON, + ACTIONS(882), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(878), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25107] = 16, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [25262] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1672), 12, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1670), 20, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1604), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, - anon_sym_default, - ACTIONS(1971), 1, - sym_identifier, - ACTIONS(1999), 1, - anon_sym_RPAREN, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1105), 1, - sym__type, - STATE(1488), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [25173] = 21, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [25302] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(660), 1, + anon_sym_RBRACK, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2001), 1, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2007), 1, + anon_sym_SEMI, + ACTIONS(2009), 1, anon_sym_COMMA, - ACTIONS(2003), 1, - anon_sym_RPAREN, - STATE(493), 1, - sym_arguments, - STATE(1381), 1, - aux_sym_arguments_repeat1, - ACTIONS(1764), 2, + STATE(1339), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25249] = 16, + [25378] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1973), 1, - anon_sym_impl, - ACTIONS(1975), 1, - anon_sym_const, - ACTIONS(1977), 1, - anon_sym_POUND, - ACTIONS(1979), 1, + ACTIONS(1646), 12, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1644), 20, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1987), 1, - anon_sym_default, - ACTIONS(1989), 1, - sym_identifier, - ACTIONS(2005), 1, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [25418] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1654), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, anon_sym_GT, - STATE(1370), 1, - sym_generic_type, - STATE(1372), 1, - sym_generic_type_with_turbofish, - STATE(1465), 1, - sym_scoped_type_identifier, - STATE(1684), 1, - sym_scoped_identifier, - ACTIONS(1985), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(711), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1981), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [25315] = 16, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1652), 21, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [25458] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1973), 1, - anon_sym_impl, - ACTIONS(1975), 1, - anon_sym_const, - ACTIONS(1977), 1, - anon_sym_POUND, - ACTIONS(1979), 1, + ACTIONS(1718), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(1987), 1, - anon_sym_default, - ACTIONS(1989), 1, - sym_identifier, - ACTIONS(2007), 1, + ACTIONS(1698), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, anon_sym_GT, - STATE(1370), 1, - sym_generic_type, - STATE(1372), 1, - sym_generic_type_with_turbofish, - STATE(1465), 1, - sym_scoped_type_identifier, - STATE(1684), 1, - sym_scoped_identifier, - ACTIONS(1985), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(711), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1981), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [25381] = 16, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1696), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [25500] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1973), 1, + ACTIONS(1983), 1, anon_sym_impl, - ACTIONS(1975), 1, + ACTIONS(1985), 1, anon_sym_const, - ACTIONS(1977), 1, + ACTIONS(1987), 1, anon_sym_POUND, - ACTIONS(1979), 1, + ACTIONS(1989), 1, anon_sym_COLON_COLON, - ACTIONS(1987), 1, + ACTIONS(1997), 1, anon_sym_default, - ACTIONS(1989), 1, + ACTIONS(1999), 1, sym_identifier, - ACTIONS(2009), 1, + ACTIONS(2011), 1, anon_sym_GT, - STATE(1370), 1, + STATE(1241), 1, sym_generic_type, - STATE(1372), 1, + STATE(1332), 1, sym_generic_type_with_turbofish, - STATE(1465), 1, + STATE(1508), 1, sym_scoped_type_identifier, - STATE(1684), 1, + STATE(1668), 1, sym_scoped_identifier, - ACTIONS(1985), 2, + ACTIONS(1995), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(711), 2, + STATE(710), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1494), 2, + STATE(1582), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1981), 15, + ACTIONS(1991), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53158,41 +54963,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [25447] = 16, + [25566] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1973), 1, + ACTIONS(1694), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1698), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1696), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [25608] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1983), 1, anon_sym_impl, - ACTIONS(1975), 1, + ACTIONS(1985), 1, anon_sym_const, - ACTIONS(1977), 1, + ACTIONS(1987), 1, anon_sym_POUND, - ACTIONS(1979), 1, + ACTIONS(1989), 1, anon_sym_COLON_COLON, - ACTIONS(1987), 1, + ACTIONS(1997), 1, anon_sym_default, - ACTIONS(1989), 1, + ACTIONS(1999), 1, sym_identifier, - ACTIONS(2011), 1, + ACTIONS(2013), 1, anon_sym_GT, - STATE(1370), 1, + STATE(1241), 1, sym_generic_type, - STATE(1372), 1, + STATE(1332), 1, sym_generic_type_with_turbofish, - STATE(1465), 1, + STATE(1508), 1, sym_scoped_type_identifier, - STATE(1684), 1, + STATE(1668), 1, sym_scoped_identifier, - ACTIONS(1985), 2, + ACTIONS(1995), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(711), 2, + STATE(710), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1494), 2, + STATE(1582), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1981), 15, + ACTIONS(1991), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53208,181 +55051,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [25513] = 21, + [25674] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(617), 1, - anon_sym_RPAREN, - ACTIONS(1694), 1, + ACTIONS(656), 1, + anon_sym_RBRACK, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2013), 1, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2015), 1, + anon_sym_SEMI, + ACTIONS(2017), 1, anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - STATE(1422), 1, - aux_sym_arguments_repeat1, - ACTIONS(1764), 2, + STATE(1324), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25589] = 21, + [25750] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(724), 1, - anon_sym_RBRACK, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(1650), 11, anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2015), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - STATE(1235), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [25665] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1648), 21, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1696), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, anon_sym_PIPE_PIPE, - ACTIONS(2017), 1, - anon_sym_COMMA, - ACTIONS(2019), 1, - anon_sym_RPAREN, - STATE(493), 1, - sym_arguments, - STATE(1266), 1, - aux_sym_arguments_repeat1, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25741] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [25790] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1642), 1, - anon_sym_BANG, - ACTIONS(2021), 1, + ACTIONS(1983), 1, + anon_sym_impl, + ACTIONS(1985), 1, + anon_sym_const, + ACTIONS(1987), 1, + anon_sym_POUND, + ACTIONS(1989), 1, anon_sym_COLON_COLON, - STATE(496), 1, - sym_field_initializer_list, - ACTIONS(752), 10, + ACTIONS(1997), 1, + anon_sym_default, + ACTIONS(1999), 1, + sym_identifier, + ACTIONS(2019), 1, + anon_sym_GT, + STATE(1241), 1, + sym_generic_type, + STATE(1332), 1, + sym_generic_type_with_turbofish, + STATE(1508), 1, + sym_scoped_type_identifier, + STATE(1668), 1, + sym_scoped_identifier, + ACTIONS(1995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(710), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1582), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1991), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [25856] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1668), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -53393,9 +55207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 19, + anon_sym_DOT, + ACTIONS(1666), 21, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -53411,97 +55227,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [25787] = 21, + [25896] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(593), 1, - anon_sym_RPAREN, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(1662), 1, + anon_sym_BANG, + ACTIONS(2021), 1, + anon_sym_COLON_COLON, + ACTIONS(882), 11, anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2023), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - STATE(1343), 1, - aux_sym_arguments_repeat1, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(878), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25863] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [25940] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1983), 1, + anon_sym_impl, + ACTIONS(1985), 1, + anon_sym_const, + ACTIONS(1987), 1, + anon_sym_POUND, + ACTIONS(1989), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, + ACTIONS(1997), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1999), 1, sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, + ACTIONS(2023), 1, + anon_sym_GT, + STATE(1241), 1, sym_generic_type, - STATE(950), 1, + STATE(1332), 1, + sym_generic_type_with_turbofish, + STATE(1508), 1, sym_scoped_type_identifier, - STATE(1379), 1, - sym__type, - STATE(1488), 1, + STATE(1668), 1, sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(710), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1582), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1991), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53516,40 +55318,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25926] = 15, + sym_super, + [26006] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1983), 1, + anon_sym_impl, + ACTIONS(1985), 1, + anon_sym_const, + ACTIONS(1987), 1, + anon_sym_POUND, + ACTIONS(1989), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1682), 1, - anon_sym_AT, - ACTIONS(1684), 1, + ACTIONS(1997), 1, anon_sym_default, - ACTIONS(1688), 1, + ACTIONS(1999), 1, sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, + ACTIONS(2025), 1, + anon_sym_GT, + STATE(1241), 1, sym_generic_type, - STATE(950), 1, + STATE(1332), 1, + sym_generic_type_with_turbofish, + STATE(1508), 1, sym_scoped_type_identifier, - STATE(1100), 1, - sym__type, - STATE(1466), 1, + STATE(1668), 1, sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(710), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1582), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1991), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53564,40 +55368,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25989] = 15, + sym_super, + [26072] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, + ACTIONS(734), 1, + anon_sym_RBRACK, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2027), 1, + anon_sym_SEMI, + ACTIONS(2029), 1, + anon_sym_COMMA, + STATE(1397), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26148] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1969), 1, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1979), 1, sym_identifier, - STATE(923), 1, + ACTIONS(2031), 1, + anon_sym_RPAREN, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1488), 1, - sym_scoped_identifier, - STATE(1683), 1, + STATE(1262), 1, sym__type, - STATE(937), 5, + STATE(1498), 1, + sym_scoped_identifier, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53612,40 +55474,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26052] = 15, + [26214] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2033), 1, + anon_sym_COMMA, + ACTIONS(2035), 1, + anon_sym_RPAREN, + STATE(1344), 1, + aux_sym_arguments_repeat1, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26287] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(704), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(702), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_else, + [26326] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1969), 1, + ACTIONS(1750), 1, + anon_sym_AT, + ACTIONS(1752), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1756), 1, sym_identifier, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(940), 1, + STATE(960), 1, sym__type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1488), 1, + STATE(1470), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53660,40 +55611,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26115] = 15, + [26389] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(690), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(688), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_else, + [26428] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1018), 8, anon_sym_LBRACK, - ACTIONS(1604), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1682), 1, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_AT, - ACTIONS(1684), 1, - anon_sym_default, - ACTIONS(1688), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1069), 1, - sym__type, - STATE(1466), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1020), 23, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53708,40 +55675,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26178] = 15, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_mutable_specifier, + sym_super, + [26467] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1538), 1, sym_super, - ACTIONS(1969), 1, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1616), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_AT, + ACTIONS(2041), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(2043), 1, sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1394), 1, - sym__type, - STATE(1488), 1, + STATE(1467), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(1468), 1, + sym_generic_type_with_turbofish, + STATE(1469), 1, + sym__type, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(2037), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53756,40 +55731,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26241] = 15, + [26530] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1620), 1, + ACTIONS(1979), 1, sym_identifier, - ACTIONS(1622), 1, - sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, - sym_scoped_type_identifier, - STATE(1485), 1, + STATE(960), 1, sym__type, - STATE(1524), 1, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1498), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53804,231 +55779,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26304] = 15, + [26593] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1516), 1, - anon_sym_COLON_COLON, - ACTIONS(1528), 1, - sym_super, - ACTIONS(1602), 1, + ACTIONS(708), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(706), 20, anon_sym_LBRACK, - ACTIONS(1606), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, - anon_sym_AT, - ACTIONS(2029), 1, - anon_sym_default, - ACTIONS(2031), 1, - sym_identifier, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1467), 1, - sym__type, - STATE(1511), 1, - sym_scoped_identifier, - STATE(1518), 1, - sym_generic_type_with_turbofish, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(2025), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [26367] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, anon_sym_PIPE_PIPE, - ACTIONS(2033), 1, - anon_sym_RBRACE, - ACTIONS(2035), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26440] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2037), 1, - anon_sym_RBRACE, - ACTIONS(2039), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [26513] = 4, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_else, + [26632] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(2043), 8, + ACTIONS(1983), 1, + anon_sym_impl, + ACTIONS(1985), 1, + anon_sym_const, + ACTIONS(1987), 1, anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(2045), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [26554] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1989), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, + ACTIONS(1997), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(2045), 1, sym_identifier, - STATE(923), 1, + STATE(1190), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(1191), 1, sym_generic_type, - STATE(950), 1, + STATE(1508), 1, sym_scoped_type_identifier, - STATE(1313), 1, - sym__type, - STATE(1488), 1, + STATE(1668), 1, sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(900), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1375), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1991), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -54043,141 +55862,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26617] = 20, + sym_super, + [26695] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(698), 1, + anon_sym_RBRACK, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(2047), 1, - anon_sym_LBRACE, - ACTIONS(2049), 1, - anon_sym_EQ, - ACTIONS(2057), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2059), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2061), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2063), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2065), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - STATE(877), 1, - sym_match_block, - ACTIONS(2053), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_COMMA, + STATE(1416), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2069), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26690] = 15, + [26768] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1526), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_AT, - ACTIONS(1614), 1, - anon_sym_default, - ACTIONS(1620), 1, - sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1538), 1, sym_super, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(1041), 1, - sym_scoped_type_identifier, - STATE(1461), 1, - sym__type, - STATE(1524), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [26753] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, + ACTIONS(2039), 1, + anon_sym_AT, + ACTIONS(2041), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(2043), 1, sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1488), 1, + STATE(1467), 1, sym_scoped_identifier, - STATE(1651), 1, + STATE(1468), 1, + sym_generic_type_with_turbofish, + STATE(1565), 1, sym__type, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(2037), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -54192,40 +55964,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26816] = 15, + [26831] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1969), 1, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1979), 1, sym_identifier, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1488), 1, - sym_scoped_identifier, - STATE(1697), 1, + STATE(1373), 1, sym__type, - STATE(937), 5, + STATE(1498), 1, + sym_scoped_identifier, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -54240,40 +56012,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26879] = 15, + [26894] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1969), 1, + ACTIONS(1750), 1, + anon_sym_AT, + ACTIONS(1752), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1756), 1, sym_identifier, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1124), 1, sym__type, - STATE(1488), 1, + STATE(1470), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -54288,87 +56060,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26942] = 15, + [26957] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1969), 1, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1979), 1, sym_identifier, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1238), 1, - sym__type, - STATE(1488), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(1677), 1, + sym__type, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [27005] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1973), 1, - anon_sym_impl, - ACTIONS(1975), 1, - anon_sym_const, - ACTIONS(1977), 1, - anon_sym_POUND, - ACTIONS(1979), 1, - anon_sym_COLON_COLON, - ACTIONS(1987), 1, - anon_sym_default, - ACTIONS(2073), 1, - sym_identifier, - STATE(1211), 1, - sym_generic_type, - STATE(1212), 1, - sym_generic_type_with_turbofish, - STATE(1465), 1, - sym_scoped_type_identifier, - STATE(1684), 1, - sym_scoped_identifier, - ACTIONS(1985), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(886), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1243), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1981), 15, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -54383,199 +56108,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [27068] = 20, + [27020] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(886), 1, - anon_sym_LBRACE, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, ACTIONS(2049), 1, + anon_sym_COLON_COLON, + ACTIONS(882), 11, anon_sym_EQ, - ACTIONS(2057), 1, - anon_sym_CARET, - ACTIONS(2059), 1, - anon_sym_AMP, - ACTIONS(2061), 1, - anon_sym_PIPE, - ACTIONS(2063), 1, - anon_sym_AMP_AMP, - ACTIONS(2065), 1, - anon_sym_PIPE_PIPE, - STATE(342), 1, - sym_block, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2051), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2069), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [27141] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(878), 19, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1696), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, anon_sym_PIPE_PIPE, - ACTIONS(2075), 1, - anon_sym_COMMA, - ACTIONS(2077), 1, - anon_sym_RPAREN, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27214] = 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_QMARK, + [27061] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(778), 1, + ACTIONS(565), 1, anon_sym_RPAREN, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2079), 1, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2051), 1, anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + STATE(1432), 1, + aux_sym_arguments_repeat1, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27287] = 15, + [27134] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1973), 1, - anon_sym_impl, - ACTIONS(1975), 1, - anon_sym_const, - ACTIONS(1977), 1, - anon_sym_POUND, - ACTIONS(1979), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1987), 1, + ACTIONS(1616), 1, + anon_sym_LPAREN, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1989), 1, + ACTIONS(1979), 1, sym_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1372), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(1465), 1, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1684), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1985), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(711), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1981), 15, + STATE(1655), 1, + sym__type, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -54590,94 +56246,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [27350] = 20, + [27197] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2081), 1, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2053), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(2055), 1, anon_sym_RPAREN, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + STATE(1235), 1, + aux_sym_arguments_repeat1, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27423] = 15, + [27270] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1516), 1, - anon_sym_COLON_COLON, - ACTIONS(1528), 1, - sym_super, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1606), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(2029), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(2031), 1, + ACTIONS(1630), 1, sym_identifier, - STATE(925), 1, + ACTIONS(1632), 1, + sym_super, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1450), 1, - sym__type, - STATE(1511), 1, + STATE(1531), 1, sym_scoped_identifier, - STATE(1518), 1, - sym_generic_type_with_turbofish, - STATE(937), 5, + STATE(1537), 1, + sym__type, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(2025), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -54692,12 +56347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27486] = 3, + [27333] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1648), 11, + ACTIONS(2057), 1, + anon_sym_COLON_COLON, + ACTIONS(882), 11, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -54707,9 +56363,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1646), 20, + anon_sym_DOT, + ACTIONS(878), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -54725,132 +56381,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [27525] = 3, + [27374] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1664), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1662), 20, + ACTIONS(1612), 1, anon_sym_LBRACK, + ACTIONS(1614), 1, anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [27564] = 20, + ACTIONS(1622), 1, + anon_sym_AT, + ACTIONS(1624), 1, + anon_sym_default, + ACTIONS(1630), 1, + sym_identifier, + ACTIONS(1632), 1, + sym_super, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(1044), 1, + sym_scoped_type_identifier, + STATE(1447), 1, + sym__type, + STATE(1531), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27437] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(2059), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2079), 1, - anon_sym_COMMA, - STATE(493), 1, + STATE(761), 1, sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1690), 11, + anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1688), 18, + anon_sym_LBRACK, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27637] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [27480] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1620), 1, + ACTIONS(1979), 1, sym_identifier, - ACTIONS(1622), 1, - sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1286), 1, + STATE(1366), 1, sym__type, - STATE(1524), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -54865,40 +56518,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27700] = 15, + [27543] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1969), 1, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1979), 1, sym_identifier, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1286), 1, + STATE(1419), 1, sym__type, - STATE(1488), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -54913,40 +56566,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27763] = 15, + [27606] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1516), 1, - anon_sym_COLON_COLON, - ACTIONS(1528), 1, - sym_super, - ACTIONS(1602), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1606), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, - anon_sym_AT, - ACTIONS(2029), 1, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(2031), 1, + ACTIONS(1979), 1, sym_identifier, - STATE(925), 1, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1470), 1, - sym__type, - STATE(1511), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(1518), 1, - sym_generic_type_with_turbofish, - STATE(937), 5, + STATE(1725), 1, + sym__type, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(2025), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -54961,233 +56614,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27826] = 3, + [27669] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1656), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1654), 20, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, + ACTIONS(1614), 1, anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [27865] = 19, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1979), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + STATE(1738), 1, + sym__type, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27732] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1983), 1, + anon_sym_impl, + ACTIONS(1985), 1, + anon_sym_const, + ACTIONS(1987), 1, + anon_sym_POUND, + ACTIONS(1989), 1, + anon_sym_COLON_COLON, + ACTIONS(1997), 1, + anon_sym_default, + ACTIONS(2061), 1, + sym_identifier, + STATE(1204), 1, + sym_generic_type, + STATE(1206), 1, + sym_generic_type_with_turbofish, + STATE(1508), 1, + sym_scoped_type_identifier, + STATE(1668), 1, + sym_scoped_identifier, + ACTIONS(1995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2085), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [27936] = 19, + STATE(662), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1395), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1991), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [27795] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1526), 1, + anon_sym_COLON_COLON, + ACTIONS(1538), 1, + sym_super, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2087), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28007] = 20, + ACTIONS(2039), 1, + anon_sym_AT, + ACTIONS(2041), 1, + anon_sym_default, + ACTIONS(2043), 1, + sym_identifier, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1467), 1, + sym_scoped_identifier, + STATE(1468), 1, + sym_generic_type_with_turbofish, + STATE(1499), 1, + sym__type, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(2037), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27858] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(231), 1, - anon_sym_RBRACE, - ACTIONS(1694), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28080] = 15, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1750), 1, + anon_sym_AT, + ACTIONS(1752), 1, + anon_sym_default, + ACTIONS(1756), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1105), 1, + sym__type, + STATE(1470), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27921] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, + anon_sym_AT, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1630), 1, sym_identifier, - STATE(923), 1, + ACTIONS(1632), 1, + sym_super, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1488), 1, - sym_scoped_identifier, - STATE(1747), 1, + STATE(1525), 1, sym__type, - STATE(937), 5, + STATE(1531), 1, + sym_scoped_identifier, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -55202,417 +56854,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28143] = 20, + [27984] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1526), 1, + anon_sym_COLON_COLON, + ACTIONS(1538), 1, + sym_super, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, ACTIONS(2039), 1, - anon_sym_SEMI, - ACTIONS(2089), 1, - anon_sym_RBRACE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28216] = 4, + anon_sym_AT, + ACTIONS(2041), 1, + anon_sym_default, + ACTIONS(2043), 1, + sym_identifier, + STATE(942), 1, + sym_generic_type, + STATE(960), 1, + sym__type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1467), 1, + sym_scoped_identifier, + STATE(1468), 1, + sym_generic_type_with_turbofish, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(2037), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28047] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1738), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1742), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1740), 19, + ACTIONS(1612), 1, anon_sym_LBRACK, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [28257] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2091), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28328] = 20, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1750), 1, + anon_sym_AT, + ACTIONS(1752), 1, + anon_sym_default, + ACTIONS(1756), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1082), 1, + sym__type, + STATE(1470), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28110] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1526), 1, + anon_sym_COLON_COLON, + ACTIONS(1538), 1, + sym_super, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2079), 1, - anon_sym_COMMA, - ACTIONS(2093), 1, - anon_sym_RPAREN, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28401] = 19, + ACTIONS(2039), 1, + anon_sym_AT, + ACTIONS(2041), 1, + anon_sym_default, + ACTIONS(2043), 1, + sym_identifier, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1461), 1, + sym__type, + STATE(1467), 1, + sym_scoped_identifier, + STATE(1468), 1, + sym_generic_type_with_turbofish, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(2037), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28173] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2095), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28472] = 20, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1979), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1234), 1, + sym__type, + STATE(1498), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28236] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(2049), 1, - anon_sym_EQ, - ACTIONS(2057), 1, - anon_sym_CARET, - ACTIONS(2059), 1, - anon_sym_AMP, - ACTIONS(2061), 1, - anon_sym_PIPE, ACTIONS(2063), 1, - anon_sym_AMP_AMP, - ACTIONS(2065), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2097), 1, - anon_sym_LBRACE, - STATE(74), 1, - sym_match_block, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2051), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2071), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2069), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28545] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2099), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28616] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2101), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28687] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1744), 2, - anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(1742), 10, + ACTIONS(882), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -55623,7 +57062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1740), 19, + anon_sym_DOT, + ACTIONS(878), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -55640,43 +57080,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28728] = 15, + [28277] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1620), 1, + ACTIONS(1979), 1, sym_identifier, - ACTIONS(1622), 1, - sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1524), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(1529), 1, + STATE(1698), 1, sym__type, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -55691,355 +57131,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28791] = 20, + [28340] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2103), 1, - anon_sym_RBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28864] = 20, + ACTIONS(1622), 1, + anon_sym_AT, + ACTIONS(1624), 1, + anon_sym_default, + ACTIONS(1630), 1, + sym_identifier, + ACTIONS(1632), 1, + sym_super, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(1044), 1, + sym_scoped_type_identifier, + STATE(1471), 1, + sym__type, + STATE(1531), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28403] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2079), 1, - anon_sym_COMMA, - ACTIONS(2107), 1, - anon_sym_RPAREN, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28937] = 19, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1979), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + STATE(1544), 1, + sym__type, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28466] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2109), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [29008] = 19, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1979), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1417), 1, + sym__type, + STATE(1498), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28529] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2111), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [29079] = 19, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1979), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + STATE(1696), 1, + sym__type, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28592] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2113), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [29150] = 20, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1979), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1472), 1, + sym__type, + STATE(1498), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28655] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(91), 1, - anon_sym_RBRACE, - ACTIONS(1694), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [29223] = 15, + ACTIONS(1622), 1, + anon_sym_AT, + ACTIONS(1624), 1, + anon_sym_default, + ACTIONS(1630), 1, + sym_identifier, + ACTIONS(1632), 1, + sym_super, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(1044), 1, + sym_scoped_type_identifier, + STATE(1287), 1, + sym__type, + STATE(1531), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28718] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1979), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + STATE(1562), 1, + sym__type, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28781] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1354), 1, anon_sym_AT, + ACTIONS(1612), 1, + anon_sym_LBRACK, ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, + anon_sym_LPAREN, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1620), 1, + ACTIONS(1979), 1, sym_identifier, - ACTIONS(1622), 1, - sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1471), 1, + STATE(1389), 1, sym__type, - STATE(1524), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56054,93 +57515,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29286] = 20, + [28844] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - ACTIONS(2115), 1, - anon_sym_RBRACE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [29359] = 15, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1979), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + STATE(1676), 1, + sym__type, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28907] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1979), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1287), 1, + sym__type, + STATE(1498), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28970] = 15, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(1612), 1, - anon_sym_AT, + anon_sym_LBRACK, ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, + anon_sym_LPAREN, + ACTIONS(1622), 1, + anon_sym_AT, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1524), 1, - sym_scoped_identifier, - STATE(1576), 1, + STATE(1455), 1, sym__type, - STATE(937), 5, + STATE(1531), 1, + sym_scoped_identifier, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56155,22 +57659,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29422] = 4, + [29033] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2117), 1, - anon_sym_RBRACE, - ACTIONS(2119), 8, - anon_sym_POUND, + ACTIONS(1704), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1702), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [29072] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1983), 1, + anon_sym_impl, + ACTIONS(1985), 1, + anon_sym_const, + ACTIONS(1987), 1, + anon_sym_POUND, + ACTIONS(1989), 1, + anon_sym_COLON_COLON, + ACTIONS(1997), 1, + anon_sym_default, + ACTIONS(1999), 1, + sym_identifier, + STATE(1241), 1, + sym_generic_type, + STATE(1332), 1, + sym_generic_type_with_turbofish, + STATE(1508), 1, + sym_scoped_type_identifier, + STATE(1668), 1, + sym_scoped_identifier, + ACTIONS(1995), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(2121), 22, - anon_sym__, + STATE(710), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1582), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1991), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56185,47 +57742,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, sym_super, - [29463] = 15, + [29135] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1427), 1, - sym__type, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(1541), 1, + sym__type, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56240,93 +57791,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29526] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(215), 1, - anon_sym_RBRACE, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [29599] = 15, + [29198] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1438), 1, + STATE(1481), 1, sym__type, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56341,12 +57839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29662] = 3, + [29261] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1648), 11, + ACTIONS(1718), 1, + anon_sym_COLON_COLON, + ACTIONS(1698), 11, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -56356,10 +57855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1646), 20, + anon_sym_DOT, + ACTIONS(1696), 19, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -56375,95 +57874,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [29701] = 20, + [29302] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(259), 1, - anon_sym_LBRACE, - ACTIONS(1694), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(2049), 1, - anon_sym_EQ, - ACTIONS(2057), 1, - anon_sym_CARET, - ACTIONS(2059), 1, - anon_sym_AMP, - ACTIONS(2061), 1, - anon_sym_PIPE, - ACTIONS(2063), 1, - anon_sym_AMP_AMP, - ACTIONS(2065), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - STATE(850), 1, - sym_block, - ACTIONS(2053), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2051), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2071), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2069), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [29774] = 15, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1979), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym__type, + STATE(1498), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29365] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1969), 1, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1979), 1, sym_identifier, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1488), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(1670), 1, + STATE(1689), 1, sym__type, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56478,14 +57972,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29837] = 5, + [29428] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2123), 1, - anon_sym_else, - STATE(861), 1, - sym_else_clause, - ACTIONS(720), 10, + ACTIONS(1694), 1, + anon_sym_COLON_COLON, + ACTIONS(1698), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56496,7 +57988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(718), 19, + anon_sym_DOT, + ACTIONS(1696), 19, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56513,43 +58007,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, + anon_sym_DOT_DOT, anon_sym_QMARK, - [29880] = 15, + [29469] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, + anon_sym_AT, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1630), 1, sym_identifier, - STATE(923), 1, + ACTIONS(1632), 1, + sym_super, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1358), 1, + STATE(1478), 1, sym__type, - STATE(1488), 1, + STATE(1531), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56564,40 +58057,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29943] = 15, + [29532] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1983), 1, + anon_sym_impl, + ACTIONS(1985), 1, + anon_sym_const, + ACTIONS(1987), 1, + anon_sym_POUND, + ACTIONS(1989), 1, + anon_sym_COLON_COLON, + ACTIONS(1997), 1, + anon_sym_default, + ACTIONS(2065), 1, + sym_identifier, + STATE(1377), 1, + sym_generic_type_with_turbofish, + STATE(1391), 1, + sym_generic_type, + STATE(1508), 1, + sym_scoped_type_identifier, + STATE(1668), 1, + sym_scoped_identifier, + ACTIONS(1995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(900), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1483), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1991), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [29595] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2067), 1, + anon_sym_RBRACE, + ACTIONS(2069), 8, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(1604), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(2071), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, sym_super, - ACTIONS(1969), 1, + [29636] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, + anon_sym_LPAREN, + ACTIONS(1622), 1, + anon_sym_AT, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1630), 1, sym_identifier, - STATE(923), 1, + ACTIONS(1632), 1, + sym_super, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(960), 1, + sym__type, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1488), 1, + STATE(1531), 1, sym_scoped_identifier, - STATE(1643), 1, - sym__type, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56612,40 +58190,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [30006] = 15, + [29699] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1969), 1, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1979), 1, sym_identifier, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1371), 1, + STATE(1386), 1, sym__type, - STATE(1488), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56660,324 +58238,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [30069] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(235), 1, - anon_sym_RBRACE, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [30142] = 3, + [29762] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1664), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1662), 20, - anon_sym_LBRACE, + ACTIONS(1612), 1, anon_sym_LBRACK, + ACTIONS(1614), 1, anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [30181] = 3, + ACTIONS(1622), 1, + anon_sym_AT, + ACTIONS(1624), 1, + anon_sym_default, + ACTIONS(1630), 1, + sym_identifier, + ACTIONS(1632), 1, + sym_super, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(1044), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym__type, + STATE(1531), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29825] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1656), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1654), 20, - anon_sym_LBRACE, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, + ACTIONS(1614), 1, anon_sym_COLON_COLON, + ACTIONS(1616), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [30220] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - ACTIONS(2125), 1, - anon_sym_RBRACE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [30293] = 20, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1979), 1, + sym_identifier, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, + sym_generic_type, + STATE(970), 1, + sym_scoped_type_identifier, + STATE(1105), 1, + sym__type, + STATE(1498), 1, + sym_scoped_identifier, + STATE(955), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1618), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29888] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(764), 1, + ACTIONS(569), 1, anon_sym_RPAREN, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2079), 1, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2073), 1, anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + STATE(1371), 1, + aux_sym_arguments_repeat1, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30366] = 20, + [29961] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(229), 1, + ACTIONS(2075), 1, anon_sym_RBRACE, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [30439] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(2077), 8, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(1604), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, - anon_sym_default, - ACTIONS(1971), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1429), 1, - sym__type, - STATE(1488), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(2079), 22, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56992,40 +58417,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [30502] = 15, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [30002] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1708), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1706), 20, anon_sym_LBRACK, - ACTIONS(1604), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [30041] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1354), 1, anon_sym_AT, + ACTIONS(1612), 1, + anon_sym_LBRACK, ACTIONS(1614), 1, + anon_sym_COLON_COLON, + ACTIONS(1616), 1, + anon_sym_LPAREN, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1620), 1, + ACTIONS(1979), 1, sym_identifier, - ACTIONS(1622), 1, - sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1313), 1, - sym__type, - STATE(1524), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(1590), 1, + sym__type, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57040,40 +58508,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [30565] = 15, + [30104] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(1620), 1, + ACTIONS(1630), 1, sym_identifier, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1520), 1, + STATE(1487), 1, sym__type, - STATE(1524), 1, + STATE(1531), 1, sym_scoped_identifier, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57088,40 +58556,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [30628] = 15, + [30167] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_AT, - ACTIONS(1614), 1, + ACTIONS(1632), 1, + sym_super, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1620), 1, + ACTIONS(1979), 1, sym_identifier, - ACTIONS(1622), 1, - sym_super, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(1041), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1524), 1, - sym_scoped_identifier, - STATE(1531), 1, + STATE(1365), 1, sym__type, - STATE(937), 5, + STATE(1498), 1, + sym_scoped_identifier, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57136,93 +58604,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [30691] = 20, + [30230] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(239), 1, - anon_sym_RBRACE, - ACTIONS(1694), 1, + ACTIONS(716), 1, + anon_sym_RBRACK, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2081), 1, + anon_sym_COMMA, + STATE(1372), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30764] = 15, + [30303] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1604), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1632), 1, sym_super, - ACTIONS(1969), 1, + ACTIONS(1977), 1, anon_sym_default, - ACTIONS(1971), 1, + ACTIONS(1979), 1, sym_identifier, - STATE(923), 1, + STATE(938), 1, sym_generic_type_with_turbofish, - STATE(925), 1, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(970), 1, sym_scoped_type_identifier, - STATE(1488), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(1582), 1, + STATE(1630), 1, sym__type, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1608), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57237,93 +58705,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [30827] = 20, + [30366] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(2049), 1, - anon_sym_EQ, - ACTIONS(2057), 1, - anon_sym_CARET, - ACTIONS(2059), 1, - anon_sym_AMP, - ACTIONS(2061), 1, - anon_sym_PIPE, - ACTIONS(2063), 1, - anon_sym_AMP_AMP, - ACTIONS(2065), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2127), 1, - anon_sym_LBRACE, - STATE(343), 1, - sym_match_block, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2051), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2071), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2069), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [30900] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1516), 1, + ACTIONS(1614), 1, anon_sym_COLON_COLON, - ACTIONS(1528), 1, - sym_super, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1606), 1, + ACTIONS(1616), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(2029), 1, + ACTIONS(1624), 1, anon_sym_default, - ACTIONS(2031), 1, + ACTIONS(1630), 1, sym_identifier, - STATE(925), 1, + ACTIONS(1632), 1, + sym_super, + STATE(938), 1, + sym_generic_type_with_turbofish, + STATE(942), 1, sym_generic_type, - STATE(950), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1511), 1, + STATE(1531), 1, sym_scoped_identifier, - STATE(1518), 1, - sym_generic_type_with_turbofish, - STATE(1570), 1, + STATE(1550), 1, sym__type, - STATE(937), 5, + STATE(955), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(2025), 14, + ACTIONS(1618), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57338,111 +58753,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [30963] = 20, + [30429] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(2049), 1, + ACTIONS(1860), 1, anon_sym_EQ, - ACTIONS(2057), 1, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2059), 1, + ACTIONS(2093), 1, anon_sym_AMP, - ACTIONS(2061), 1, + ACTIONS(2095), 1, anon_sym_PIPE, - ACTIONS(2063), 1, - anon_sym_AMP_AMP, - ACTIONS(2065), 1, - anon_sym_PIPE_PIPE, - STATE(72), 1, - sym_block, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2087), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(2097), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(2085), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(2099), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2069), 5, + ACTIONS(1858), 10, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31036] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1973), 1, - anon_sym_impl, - ACTIONS(1975), 1, - anon_sym_const, - ACTIONS(1977), 1, - anon_sym_POUND, - ACTIONS(1979), 1, - anon_sym_COLON_COLON, - ACTIONS(1987), 1, - anon_sym_default, - ACTIONS(2129), 1, - sym_identifier, - STATE(1338), 1, - sym_generic_type_with_turbofish, - STATE(1341), 1, - sym_generic_type, - STATE(1465), 1, - sym_scoped_type_identifier, - STATE(1684), 1, - sym_scoped_identifier, - ACTIONS(1985), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(886), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1542), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1981), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [31099] = 3, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + [30489] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1668), 10, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(1840), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57453,10 +58819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1666), 21, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1838), 17, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -57472,70 +58835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [31138] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - ACTIONS(2131), 1, - anon_sym_RBRACE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [31211] = 5, + [30533] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2133), 1, - anon_sym_BANG, - ACTIONS(2135), 1, - anon_sym_COLON_COLON, - ACTIONS(1724), 10, + ACTIONS(1830), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57546,7 +58851,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1722), 19, + anon_sym_DOT, + ACTIONS(1828), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57563,197 +58869,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [31254] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, - anon_sym_default, - ACTIONS(1971), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1464), 1, - sym__type, - STATE(1488), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [31317] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1516), 1, - anon_sym_COLON_COLON, - ACTIONS(1528), 1, - sym_super, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(2027), 1, - anon_sym_AT, - ACTIONS(2029), 1, - anon_sym_default, - ACTIONS(2031), 1, - sym_identifier, - STATE(925), 1, - sym_generic_type, - STATE(940), 1, - sym__type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1511), 1, - sym_scoped_identifier, - STATE(1518), 1, - sym_generic_type_with_turbofish, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(2025), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [31380] = 19, + [30571] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2137), 2, + ACTIONS(2105), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31451] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(948), 8, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(950), 23, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_mutable_specifier, - sym_super, - [31490] = 3, + [30639] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1638), 10, + ACTIONS(1760), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57764,10 +58936,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1636), 21, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1758), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -57783,116 +58954,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [31529] = 20, + [30677] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(87), 1, - anon_sym_RBRACE, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(1738), 11, anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1736), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31602] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1516), 1, - anon_sym_COLON_COLON, - ACTIONS(1528), 1, - sym_super, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(2027), 1, - anon_sym_AT, - ACTIONS(2029), 1, - anon_sym_default, - ACTIONS(2031), 1, - sym_identifier, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1511), 1, - sym_scoped_identifier, - STATE(1518), 1, - sym_generic_type_with_turbofish, - STATE(1519), 1, - sym__type, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(2025), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [31665] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [30715] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1660), 11, + ACTIONS(1746), 11, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -57902,9 +59006,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1658), 20, + anon_sym_DOT, + ACTIONS(1744), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -57920,66 +59024,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [31704] = 20, + [30753] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(712), 11, anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - ACTIONS(2139), 1, - anon_sym_RBRACE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(710), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31777] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [30791] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1652), 10, + ACTIONS(1726), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57990,10 +59076,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1650), 21, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1724), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -58009,362 +59094,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [31816] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, - anon_sym_default, - ACTIONS(1971), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1488), 1, - sym_scoped_identifier, - STATE(1627), 1, - sym__type, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [31879] = 20, + [30829] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(257), 1, + anon_sym_EQ, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(2113), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2115), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2119), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2121), 1, anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - ACTIONS(2141), 1, - anon_sym_RBRACE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2107), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2125), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(255), 8, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31952] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1516), 1, - anon_sym_COLON_COLON, - ACTIONS(1528), 1, - sym_super, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(2027), 1, - anon_sym_AT, - ACTIONS(2029), 1, - anon_sym_default, - ACTIONS(2031), 1, - sym_identifier, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1489), 1, - sym__type, - STATE(1511), 1, - sym_scoped_identifier, - STATE(1518), 1, - sym_generic_type_with_turbofish, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(2025), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [32015] = 19, + anon_sym_DOT_DOT, + [30893] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2127), 1, + anon_sym_COMMA, + ACTIONS(2129), 1, + anon_sym_RPAREN, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2143), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30963] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1730), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1728), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32086] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [31001] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, + ACTIONS(1886), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1884), 19, anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1682), 1, - anon_sym_AT, - ACTIONS(1684), 1, - anon_sym_default, - ACTIONS(1688), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(940), 1, - sym__type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1466), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [32149] = 15, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [31039] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(1882), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1880), 19, anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, - anon_sym_default, - ACTIONS(1971), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1105), 1, - sym__type, - STATE(1488), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [32212] = 15, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [31077] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, + ACTIONS(728), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(726), 19, anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, - anon_sym_default, - ACTIONS(1971), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1316), 1, - sym__type, - STATE(1488), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [32275] = 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [31115] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1955), 1, - anon_sym_BANG, - ACTIONS(2145), 1, - anon_sym_COLON_COLON, - ACTIONS(752), 10, + ACTIONS(674), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(672), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [31153] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(686), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58375,7 +59385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 19, + anon_sym_DOT, + ACTIONS(684), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58392,315 +59403,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [32318] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, - anon_sym_default, - ACTIONS(1971), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1488), 1, - sym_scoped_identifier, - STATE(1552), 1, - sym__type, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [32381] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_AT, - ACTIONS(1614), 1, - anon_sym_default, - ACTIONS(1620), 1, - sym_identifier, - ACTIONS(1622), 1, - sym_super, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(1041), 1, - sym_scoped_type_identifier, - STATE(1459), 1, - sym__type, - STATE(1524), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [32444] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_AT, - ACTIONS(1614), 1, - anon_sym_default, - ACTIONS(1620), 1, - sym_identifier, - ACTIONS(1622), 1, - sym_super, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(940), 1, - sym__type, - STATE(1041), 1, - sym_scoped_type_identifier, - STATE(1524), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [32507] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1682), 1, - anon_sym_AT, - ACTIONS(1684), 1, - anon_sym_default, - ACTIONS(1688), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1105), 1, - sym__type, - STATE(1466), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [32570] = 20, + [31191] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(225), 1, - anon_sym_RBRACE, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2131), 1, + anon_sym_COMMA, + ACTIONS(2133), 1, + anon_sym_RPAREN, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32643] = 20, + [31261] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(788), 1, - anon_sym_RPAREN, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2079), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2135), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32716] = 5, + [31329] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1726), 1, - anon_sym_BANG, - ACTIONS(2147), 1, - anon_sym_COLON_COLON, - ACTIONS(1724), 10, + ACTIONS(1742), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58711,8 +59521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1722), 19, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1740), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58729,261 +59539,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [32759] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1973), 1, - anon_sym_impl, - ACTIONS(1975), 1, - anon_sym_const, - ACTIONS(1977), 1, - anon_sym_POUND, - ACTIONS(1979), 1, - anon_sym_COLON_COLON, - ACTIONS(1987), 1, - anon_sym_default, - ACTIONS(2149), 1, - sym_identifier, - STATE(1157), 1, - sym_generic_type, - STATE(1159), 1, - sym_generic_type_with_turbofish, - STATE(1465), 1, - sym_scoped_type_identifier, - STATE(1684), 1, - sym_scoped_identifier, - ACTIONS(1985), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(648), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1406), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1981), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [32822] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, - anon_sym_default, - ACTIONS(1971), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1488), 1, - sym_scoped_identifier, - STATE(1675), 1, - sym__type, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [32885] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, - anon_sym_default, - ACTIONS(1971), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1488), 1, - sym_scoped_identifier, - STATE(1671), 1, - sym__type, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [32948] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1290), 1, - anon_sym_AT, - ACTIONS(1602), 1, - anon_sym_LBRACK, - ACTIONS(1604), 1, - anon_sym_COLON_COLON, - ACTIONS(1606), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - sym_super, - ACTIONS(1969), 1, - anon_sym_default, - ACTIONS(1971), 1, - sym_identifier, - STATE(923), 1, - sym_generic_type_with_turbofish, - STATE(925), 1, - sym_generic_type, - STATE(950), 1, - sym_scoped_type_identifier, - STATE(1377), 1, - sym__type, - STATE(1488), 1, - sym_scoped_identifier, - STATE(937), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1608), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [33011] = 20, + [31367] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(1904), 1, anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(2113), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2115), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2119), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2121), 1, anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - ACTIONS(2151), 1, - anon_sym_RBRACE, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2137), 1, + anon_sym_DOT_DOT, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2107), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2125), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1902), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33084] = 5, + [31433] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1642), 1, - anon_sym_BANG, - ACTIONS(2153), 1, - anon_sym_COLON_COLON, - ACTIONS(752), 10, + ACTIONS(1790), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58994,8 +59605,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 19, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1788), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -59012,14 +59623,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [31471] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, anon_sym_DOT, + ACTIONS(1826), 1, anon_sym_QMARK, - [33127] = 3, + ACTIONS(2113), 1, + anon_sym_CARET, + ACTIONS(2115), 1, + anon_sym_AMP, + ACTIONS(2117), 1, + anon_sym_PIPE, + ACTIONS(2119), 1, + anon_sym_AMP_AMP, + ACTIONS(2121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2139), 1, + anon_sym_LBRACE, + ACTIONS(2141), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_DOT_DOT, + STATE(817), 1, + sym_match_block, + ACTIONS(2109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2111), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2107), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2125), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2143), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31541] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1660), 11, + ACTIONS(91), 1, + anon_sym_RBRACE, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31611] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1898), 11, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -59029,10 +59742,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1658), 20, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1896), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -59048,165 +59760,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [33166] = 18, + [31649] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1894), 1, - anon_sym_EQ, - ACTIONS(2155), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2165), 1, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(2113), 1, anon_sym_CARET, - ACTIONS(2167), 1, + ACTIONS(2115), 1, anon_sym_AMP, - ACTIONS(2169), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(2171), 1, + ACTIONS(2119), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(2121), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2161), 2, + ACTIONS(2141), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_DOT_DOT, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(121), 1, + sym_match_block, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 2, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2157), 3, + ACTIONS(2107), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2177), 4, + ACTIONS(2125), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1892), 6, + ACTIONS(2143), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_GT, - [33234] = 19, + [31719] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2155), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2165), 1, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2167), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2169), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2171), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - ACTIONS(2183), 1, + ACTIONS(1944), 1, anon_sym_EQ, - ACTIONS(2187), 1, - anon_sym_EQ_GT, - STATE(847), 1, - sym_arguments, - ACTIONS(2161), 2, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2157), 3, + ACTIONS(2151), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2177), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33304] = 18, + [31787] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1864), 1, - anon_sym_EQ, - ACTIONS(2155), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2165), 1, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2167), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2169), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2171), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2161), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2157), 3, + ACTIONS(2153), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2177), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1862), 6, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_GT, - [33372] = 4, + [31855] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2189), 1, - anon_sym_COLON_COLON, - ACTIONS(752), 10, + ACTIONS(1768), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -59217,8 +59928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 19, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1766), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -59235,22 +59946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [33412] = 8, + [31893] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2155), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(1712), 10, + ACTIONS(1772), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -59261,7 +59963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1710), 15, + anon_sym_DOT, + ACTIONS(1770), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59276,53 +59981,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - [33460] = 8, + anon_sym_QMARK, + [31931] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2155), 1, + ACTIONS(1018), 8, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(2159), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(1734), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1732), 15, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [33508] = 4, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1020), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [31969] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2191), 1, - anon_sym_COLON_COLON, - ACTIONS(752), 10, + ACTIONS(1780), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -59333,7 +60033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 19, + anon_sym_DOT, + ACTIONS(1778), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -59350,303 +60051,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [33548] = 19, + [32007] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2193), 1, - anon_sym_RBRACK, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2155), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33618] = 3, + [32075] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(607), 10, + ACTIONS(1942), 1, anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(605), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_else, - [33656] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(2083), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2093), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2095), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2039), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2087), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2097), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2085), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2099), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1940), 8, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33726] = 19, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + [32139] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(2113), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2115), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2119), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2121), 1, anon_sym_PIPE_PIPE, - ACTIONS(2195), 1, - anon_sym_RBRACK, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2137), 1, + anon_sym_DOT_DOT, + ACTIONS(2141), 1, + anon_sym_EQ, + ACTIONS(1774), 2, + anon_sym_LBRACE, + anon_sym_LPAREN, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2107), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2125), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(2143), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33796] = 19, + [32207] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1826), 1, - anon_sym_LBRACE, - ACTIONS(2049), 1, + ACTIONS(1776), 11, anon_sym_EQ, - ACTIONS(2057), 1, - anon_sym_CARET, - ACTIONS(2059), 1, - anon_sym_AMP, - ACTIONS(2061), 1, - anon_sym_PIPE, - ACTIONS(2063), 1, - anon_sym_AMP_AMP, - ACTIONS(2065), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2051), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2069), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [33866] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1774), 19, anon_sym_LBRACK, - ACTIONS(1696), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, anon_sym_PIPE_PIPE, - ACTIONS(2197), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1766), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33936] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [32245] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(591), 10, + ACTIONS(1804), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -59657,7 +60251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(589), 20, + anon_sym_DOT, + ACTIONS(1802), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -59674,14 +60269,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_else, - [33974] = 3, + [32283] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(555), 10, + ACTIONS(1844), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -59692,7 +60286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(553), 20, + anon_sym_DOT, + ACTIONS(1842), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -59709,279 +60304,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_else, - [34012] = 19, + [32321] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1826), 1, - anon_sym_EQ_GT, - ACTIONS(2155), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2165), 1, - anon_sym_CARET, - ACTIONS(2167), 1, - anon_sym_AMP, - ACTIONS(2169), 1, - anon_sym_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - ACTIONS(2183), 1, + ACTIONS(1856), 11, anon_sym_EQ, - STATE(847), 1, - sym_arguments, - ACTIONS(2161), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2157), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2177), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1854), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34082] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [32359] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2155), 1, + ACTIONS(776), 1, + anon_sym_RPAREN, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2165), 1, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2167), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2169), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2171), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - ACTIONS(2183), 1, + ACTIONS(1944), 1, anon_sym_EQ, - ACTIONS(2199), 1, - anon_sym_EQ_GT, - STATE(847), 1, - sym_arguments, - ACTIONS(2161), 2, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2161), 1, + anon_sym_COMMA, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2157), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2177), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34152] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(948), 8, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(950), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [34190] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1060), 8, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1062), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [34228] = 19, + [32429] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(780), 1, + anon_sym_RPAREN, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1758), 1, - anon_sym_LBRACE, - ACTIONS(2049), 1, - anon_sym_EQ, - ACTIONS(2057), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2059), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2061), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2063), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2065), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2161), 1, + anon_sym_COMMA, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2069), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [34298] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2155), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(1716), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1714), 15, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [34346] = 4, + [32499] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2201), 1, - anon_sym_COLON_COLON, - ACTIONS(752), 10, + ACTIONS(1812), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -59992,7 +60458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(754), 19, + anon_sym_DOT, + ACTIONS(1810), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -60009,50 +60476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34386] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2119), 8, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(2121), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [34424] = 4, + [32537] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1744), 1, - anon_sym_COLON_COLON, - ACTIONS(1742), 10, + ACTIONS(1864), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -60063,8 +60493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1740), 19, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1862), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -60081,14 +60511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [34464] = 4, + [32575] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1738), 1, - anon_sym_COLON_COLON, - ACTIONS(1742), 10, + ACTIONS(1852), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -60099,8 +60528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1740), 19, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1850), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -60117,72 +60546,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [34504] = 18, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(1794), 1, - anon_sym_EQ, - ACTIONS(2057), 1, - anon_sym_CARET, - ACTIONS(2059), 1, - anon_sym_AMP, - ACTIONS(2061), 1, - anon_sym_PIPE, - ACTIONS(2063), 1, - anon_sym_AMP_AMP, - ACTIONS(2065), 1, - anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2051), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2071), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1792), 6, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [34572] = 8, + [32613] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2155), 1, + ACTIONS(2083), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(2101), 1, anon_sym_DOT, - ACTIONS(2181), 1, + ACTIONS(2103), 1, anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(1692), 10, + ACTIONS(1872), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -60193,7 +60569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 15, + ACTIONS(1870), 17, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60208,385 +60585,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - [34620] = 19, + [32657] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(269), 1, + anon_sym_LBRACE, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(2113), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2115), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2119), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2121), 1, anon_sym_PIPE_PIPE, - ACTIONS(2203), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2141), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_DOT_DOT, + STATE(739), 1, + sym_block, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2107), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2125), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(2143), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34690] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2043), 8, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(2045), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [34728] = 19, + [32727] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(2155), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2165), 1, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2167), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2169), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2171), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - ACTIONS(2183), 1, + ACTIONS(1944), 1, anon_sym_EQ, - STATE(847), 1, - sym_arguments, - ACTIONS(2161), 2, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(2163), 1, + anon_sym_RBRACE, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2157), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2177), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2185), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34798] = 19, + [32797] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(233), 1, + anon_sym_RBRACE, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2205), 1, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34868] = 19, + [32867] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(538), 11, anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(536), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34938] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [32905] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(1904), 1, anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2093), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2095), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2209), 1, - anon_sym_RBRACK, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2165), 1, + anon_sym_DOT_DOT, + ACTIONS(2087), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2097), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2085), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2099), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1902), 7, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [35008] = 19, + anon_sym_EQ_GT, + [32971] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2211), 1, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2167), 1, + anon_sym_RBRACE, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [35078] = 14, + [33041] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(2057), 1, - anon_sym_CARET, - ACTIONS(2059), 1, - anon_sym_AMP, - ACTIONS(2061), 1, - anon_sym_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(2055), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1692), 3, + ACTIONS(746), 11, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(2051), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1690), 12, - anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(744), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -60596,227 +60907,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35138] = 9, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [33079] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(225), 1, + anon_sym_RBRACE, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - STATE(493), 1, - sym_arguments, - ACTIONS(2051), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1692), 7, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1690), 15, - anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [35188] = 19, + [33149] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2079), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(2169), 1, + anon_sym_RBRACE, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [35258] = 12, + [33219] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(2059), 1, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, anon_sym_AMP, - STATE(493), 1, - sym_arguments, - ACTIONS(2055), 2, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(2171), 1, + anon_sym_RBRACE, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1690), 13, - anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [35314] = 19, + [33289] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(1938), 1, anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2093), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2095), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2213), 1, - anon_sym_RBRACK, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2165), 1, + anon_sym_DOT_DOT, + ACTIONS(2087), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2097), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2085), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2099), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1936), 7, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [35384] = 11, + anon_sym_EQ_GT, + [33355] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(257), 1, + anon_sym_EQ, + ACTIONS(2083), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2095), 1, + anon_sym_PIPE, + ACTIONS(2101), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(2103), 1, anon_sym_QMARK, - STATE(493), 1, - sym_arguments, - ACTIONS(2055), 2, + ACTIONS(2157), 1, + anon_sym_AMP_AMP, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(2097), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(2085), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 5, + ACTIONS(2099), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(255), 8, + anon_sym_LPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + [33419] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1785), 11, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 13, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1782), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -60826,144 +61192,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35438] = 19, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [33457] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2215), 1, - anon_sym_RBRACK, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2161), 1, + anon_sym_COMMA, + ACTIONS(2173), 1, + anon_sym_RPAREN, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [35508] = 19, + [33527] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(229), 1, + anon_sym_RBRACE, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2217), 1, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [35578] = 13, + [33597] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(2057), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2059), 1, + ACTIONS(1914), 1, anon_sym_AMP, - STATE(493), 1, - sym_arguments, - ACTIONS(2055), 2, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2175), 1, + anon_sym_RBRACE, + ACTIONS(2177), 1, + anon_sym_COMMA, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 4, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33667] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1816), 11, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 12, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1814), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [33705] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(696), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(694), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -60973,182 +61415,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35636] = 16, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [33743] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1692), 1, - anon_sym_EQ, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(2057), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2059), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2061), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(2179), 1, + anon_sym_RBRACE, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 8, - anon_sym_LBRACE, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33813] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1734), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1732), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [35700] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [33851] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(2113), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2115), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2119), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2121), 1, anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2137), 1, + anon_sym_DOT_DOT, + ACTIONS(2141), 1, + anon_sym_EQ, + ACTIONS(1732), 2, + anon_sym_LBRACE, + anon_sym_LPAREN, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2107), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2125), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(2143), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [35770] = 17, + [33919] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1692), 1, - anon_sym_EQ, - ACTIONS(1694), 1, + ACTIONS(87), 1, + anon_sym_RBRACE, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(2057), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2059), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2061), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2063), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 7, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [35836] = 10, + [33989] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(2083), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(2101), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(2103), 1, anon_sym_QMARK, - STATE(493), 1, - sym_arguments, - ACTIONS(2055), 2, + ACTIONS(1820), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2051), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 15, - anon_sym_LBRACE, + ACTIONS(1818), 17, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61163,264 +61641,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35888] = 19, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + [34033] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2221), 1, - anon_sym_RBRACK, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2181), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [35958] = 19, + [34101] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2223), 1, - anon_sym_COMMA, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2183), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [36028] = 18, + [34169] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1812), 1, - anon_sym_EQ, - ACTIONS(2057), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2059), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2061), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2063), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2065), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(2185), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 6, - anon_sym_LBRACE, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [36096] = 19, + [34237] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1808), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1806), 19, anon_sym_LBRACK, - ACTIONS(1696), 1, anon_sym_LPAREN, - ACTIONS(1698), 1, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34275] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(2049), 1, - anon_sym_EQ, - ACTIONS(2057), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2059), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2061), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2063), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2065), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2199), 1, - anon_sym_LBRACE, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(2187), 1, + anon_sym_RBRACE, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2069), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [36166] = 19, + [34345] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(89), 1, + anon_sym_RBRACE, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2225), 1, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [36236] = 3, + [34415] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1708), 10, + ACTIONS(1894), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -61431,9 +61944,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1706), 20, + anon_sym_DOT, + ACTIONS(1892), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -61449,197 +61962,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36274] = 19, + [34453] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(2049), 1, + ACTIONS(882), 11, anon_sym_EQ, - ACTIONS(2057), 1, - anon_sym_CARET, - ACTIONS(2059), 1, - anon_sym_AMP, - ACTIONS(2061), 1, - anon_sym_PIPE, - ACTIONS(2063), 1, - anon_sym_AMP_AMP, - ACTIONS(2065), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2187), 1, - anon_sym_LBRACE, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2051), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2069), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(878), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [36344] = 18, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34491] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1794), 1, + ACTIONS(1690), 11, anon_sym_EQ, - ACTIONS(2155), 1, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1688), 19, anon_sym_LBRACK, - ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2165), 1, anon_sym_CARET, - ACTIONS(2167), 1, - anon_sym_AMP, - ACTIONS(2169), 1, - anon_sym_PIPE, - ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2161), 2, + [34529] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1848), 11, + anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2157), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2177), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1792), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1846), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - [36412] = 19, + anon_sym_QMARK, + [34567] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2227), 1, - anon_sym_RBRACK, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1774), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [36482] = 14, + [34635] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2155), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2165), 1, - anon_sym_CARET, - ACTIONS(2167), 1, - anon_sym_AMP, - ACTIONS(2169), 1, - anon_sym_PIPE, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1692), 3, + ACTIONS(1868), 11, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(2157), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1690), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1866), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -61649,11 +62152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - [36542] = 3, + anon_sym_QMARK, + [34673] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1720), 10, + ACTIONS(518), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -61664,9 +62169,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1718), 20, + anon_sym_DOT, + ACTIONS(516), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -61682,35 +62187,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36580] = 9, + [34711] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2155), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2157), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1692), 7, + ACTIONS(882), 11, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 15, + anon_sym_DOT, + ACTIONS(878), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61725,92 +62222,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - [36630] = 19, + anon_sym_QMARK, + [34749] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(1836), 11, anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2229), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1834), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [36700] = 12, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34787] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2155), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2167), 1, - anon_sym_AMP, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2163), 2, + ACTIONS(1878), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2157), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 13, + anon_sym_DOT, + ACTIONS(1876), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -61820,40 +62292,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - [36756] = 11, + anon_sym_QMARK, + [34825] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2155), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2163), 2, + ACTIONS(682), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2157), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 13, + anon_sym_DOT, + ACTIONS(680), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -61863,93 +62327,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - [36810] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + [34863] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2093), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2095), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2231), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2165), 1, + anon_sym_DOT_DOT, + ACTIONS(2189), 1, + anon_sym_EQ, + ACTIONS(1732), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(2087), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2097), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2085), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2099), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(2191), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [36880] = 13, + [34931] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2155), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2165), 1, - anon_sym_CARET, - ACTIONS(2167), 1, - anon_sym_AMP, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2163), 2, + ACTIONS(1798), 11, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2157), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 12, + anon_sym_DOT, + ACTIONS(1796), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -61959,334 +62412,405 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - [36938] = 16, + anon_sym_QMARK, + [34969] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1692), 1, - anon_sym_EQ, - ACTIONS(2155), 1, + ACTIONS(2083), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2165), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2167), 1, + ACTIONS(2093), 1, anon_sym_AMP, - ACTIONS(2169), 1, + ACTIONS(2095), 1, anon_sym_PIPE, - ACTIONS(2179), 1, + ACTIONS(2101), 1, anon_sym_DOT, - ACTIONS(2181), 1, + ACTIONS(2103), 1, anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2161), 2, + ACTIONS(2157), 1, + anon_sym_AMP_AMP, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2165), 1, + anon_sym_DOT_DOT, + ACTIONS(2189), 1, + anon_sym_EQ, + ACTIONS(1774), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(2087), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 2, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, + ACTIONS(2097), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2157), 3, + ACTIONS(2085), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2177), 4, + ACTIONS(2099), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1690), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2191), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_GT, - [37002] = 19, + [35037] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, - anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(1700), 1, - anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(720), 11, anon_sym_EQ, - ACTIONS(1768), 1, - anon_sym_CARET, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1772), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_AMP_AMP, - ACTIONS(1776), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2233), 1, - anon_sym_RBRACK, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1762), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1780), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(718), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [37072] = 18, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35075] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1894), 1, - anon_sym_EQ, - ACTIONS(2057), 1, + ACTIONS(2113), 1, anon_sym_CARET, - ACTIONS(2059), 1, + ACTIONS(2115), 1, anon_sym_AMP, - ACTIONS(2061), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(2063), 1, + ACTIONS(2119), 1, anon_sym_AMP_AMP, - ACTIONS(2065), 1, + ACTIONS(2121), 1, anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + ACTIONS(2141), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_DOT_DOT, + STATE(361), 1, + sym_block, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(2107), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(2125), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1892), 6, - anon_sym_LBRACE, + ACTIONS(2143), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [37140] = 19, + [35145] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(766), 1, + anon_sym_RPAREN, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2235), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2161), 1, + anon_sym_COMMA, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [37210] = 17, + [35215] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1692), 1, + ACTIONS(1764), 11, anon_sym_EQ, - ACTIONS(2155), 1, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1762), 19, anon_sym_LBRACK, - ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2165), 1, anon_sym_CARET, - ACTIONS(2167), 1, - anon_sym_AMP, - ACTIONS(2169), 1, - anon_sym_PIPE, - ACTIONS(2171), 1, anon_sym_AMP_AMP, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2161), 2, + [35253] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(738), 11, + anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2157), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2177), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1690), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(736), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - [37276] = 19, + anon_sym_QMARK, + [35291] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(2069), 8, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(1696), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1698), 1, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(2071), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [35329] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2237), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2161), 1, + anon_sym_COMMA, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [37346] = 10, + [35399] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2155), 1, + ACTIONS(2077), 8, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(2159), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2163), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2157), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1692), 5, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(2079), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [35437] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(530), 11, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 15, + anon_sym_DOT, + ACTIONS(528), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -62301,429 +62825,517 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - [37398] = 19, + anon_sym_QMARK, + [35475] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(2113), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2115), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2119), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2121), 1, anon_sym_PIPE_PIPE, - ACTIONS(2239), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2141), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_DOT_DOT, + STATE(117), 1, + sym_block, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2107), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2125), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(2143), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [37468] = 18, + [35545] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1812), 1, - anon_sym_EQ, - ACTIONS(2155), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2165), 1, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2167), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2169), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2171), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - STATE(847), 1, - sym_arguments, - ACTIONS(2161), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2157), 3, + ACTIONS(2193), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2177), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 6, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_GT, - [37536] = 18, + [35613] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1864), 1, - anon_sym_EQ, - ACTIONS(2057), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2059), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2061), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2063), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2065), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(2195), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1862), 6, - anon_sym_LBRACE, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [37604] = 19, + [35681] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, + ACTIONS(1930), 1, anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(2113), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2115), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2119), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2121), 1, anon_sym_PIPE_PIPE, - ACTIONS(2241), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2137), 1, + anon_sym_DOT_DOT, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2107), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2125), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1928), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [37674] = 19, + [35747] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(2083), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(2101), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(2103), 1, anon_sym_QMARK, - ACTIONS(1906), 1, - anon_sym_LBRACE, - ACTIONS(2049), 1, + ACTIONS(1860), 10, anon_sym_EQ, - ACTIONS(2057), 1, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1858), 17, + anon_sym_LPAREN, anon_sym_CARET, - ACTIONS(2059), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + [35791] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2061), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2063), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2065), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - STATE(493), 1, - sym_arguments, - ACTIONS(2053), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(2197), 1, + anon_sym_RBRACE, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2055), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2051), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2069), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [37744] = 19, + [35861] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(2113), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(2115), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(2119), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(2121), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_RBRACK, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(2141), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_DOT_DOT, + ACTIONS(2199), 1, + anon_sym_LBRACE, + STATE(360), 1, + sym_match_block, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(2107), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(2125), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(2143), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [37814] = 19, + [35931] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1906), 1, - anon_sym_EQ_GT, - ACTIONS(2155), 1, + ACTIONS(221), 1, + anon_sym_RBRACE, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2165), 1, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(2167), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(2169), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(2171), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK, - ACTIONS(2183), 1, + ACTIONS(1944), 1, anon_sym_EQ, - STATE(847), 1, - sym_arguments, - ACTIONS(2161), 2, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 2, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [36001] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(2113), 1, + anon_sym_CARET, + ACTIONS(2115), 1, + anon_sym_AMP, + ACTIONS(2117), 1, + anon_sym_PIPE, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2175), 2, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2157), 3, + ACTIONS(1860), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2107), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2177), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2185), 5, + ACTIONS(1858), 14, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [37884] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT, + [36057] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1694), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1696), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, + ACTIONS(1824), 1, anon_sym_DOT, - ACTIONS(1700), 1, + ACTIONS(1826), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1768), 1, + ACTIONS(1912), 1, anon_sym_CARET, - ACTIONS(1770), 1, + ACTIONS(1914), 1, anon_sym_AMP, - ACTIONS(1772), 1, + ACTIONS(1916), 1, anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1918), 1, anon_sym_AMP_AMP, - ACTIONS(1776), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, - ACTIONS(2245), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_arguments, - ACTIONS(1764), 2, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1732), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1766), 2, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1778), 2, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1762), 3, + ACTIONS(1906), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1782), 4, + ACTIONS(1924), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1780), 5, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [37954] = 3, + [36125] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1828), 10, - anon_sym_EQ, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(2107), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1860), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1826), 19, - anon_sym_LBRACK, + ACTIONS(1858), 17, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -62739,47 +63351,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [37991] = 3, + anon_sym_DOT_DOT, + [36171] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1916), 10, + ACTIONS(1930), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2095), 1, + anon_sym_PIPE, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, + anon_sym_AMP_AMP, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2165), 1, + anon_sym_DOT_DOT, + ACTIONS(2087), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2097), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1914), 19, - anon_sym_LBRACK, + ACTIONS(2099), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1928), 7, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [38028] = 3, + [36237] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1924), 10, + ACTIONS(1890), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -62790,7 +63415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1922), 19, + anon_sym_DOT, + ACTIONS(1888), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -62807,65 +63433,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [38065] = 3, + [36275] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2247), 7, + ACTIONS(2083), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2095), 1, anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(2249), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [38102] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1790), 10, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2089), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2097), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1860), 3, anon_sym_EQ, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2085), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1788), 19, - anon_sym_LBRACK, + ACTIONS(1858), 14, anon_sym_LPAREN, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -62875,25 +63478,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [38139] = 3, + [36331] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1798), 10, - anon_sym_EQ, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2085), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1860), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1796), 19, - anon_sym_LBRACK, + ACTIONS(1858), 17, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -62909,31 +63517,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [38176] = 3, + [36377] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1886), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2097), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + ACTIONS(1860), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(1884), 19, - anon_sym_LBRACK, + ACTIONS(1858), 15, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -62943,31 +63559,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [38213] = 3, + [36429] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1899), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2097), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1860), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1896), 19, - anon_sym_LBRACK, + ACTIONS(1858), 15, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -62977,31 +63600,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [38250] = 3, + [36479] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1872), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2097), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + ACTIONS(1860), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(1870), 19, - anon_sym_LBRACK, + ACTIONS(1858), 14, anon_sym_LPAREN, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63011,65 +63643,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [38287] = 3, + [36533] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1848), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2161), 1, + anon_sym_COMMA, + ACTIONS(2201), 1, + anon_sym_RPAREN, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1846), 19, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [36603] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, anon_sym_AMP_AMP, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(2203), 1, + anon_sym_RBRACE, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38324] = 3, + [36673] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1852), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(2115), 1, + anon_sym_AMP, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2107), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + ACTIONS(1860), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(1850), 19, - anon_sym_LBRACK, + ACTIONS(1858), 15, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63079,31 +63788,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38361] = 3, + anon_sym_DOT_DOT, + [36725] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(615), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2107), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1860), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(613), 19, - anon_sym_LBRACK, + ACTIONS(1858), 15, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63113,59 +63829,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38398] = 3, + anon_sym_DOT_DOT, + [36775] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1868), 10, + ACTIONS(1860), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2095), 1, + anon_sym_PIPE, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, + anon_sym_AMP_AMP, + ACTIONS(2087), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2097), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1866), 19, - anon_sym_LBRACK, + ACTIONS(2099), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1858), 9, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [38435] = 3, + [36837] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(581), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2085), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1860), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 19, - anon_sym_LBRACK, + ACTIONS(1858), 17, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -63181,47 +63915,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [38472] = 3, + [36885] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1856), 10, + ACTIONS(1934), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2095), 1, + anon_sym_PIPE, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, + anon_sym_AMP_AMP, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2165), 1, + anon_sym_DOT_DOT, + ACTIONS(2087), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2097), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1854), 19, - anon_sym_LBRACK, + ACTIONS(2099), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1932), 7, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [38509] = 3, + [36951] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1904), 10, + ACTIONS(1698), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -63232,7 +63980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1902), 19, + anon_sym_DOT, + ACTIONS(1696), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -63249,31 +63998,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [38546] = 3, + [36989] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1816), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(2113), 1, + anon_sym_CARET, + ACTIONS(2115), 1, + anon_sym_AMP, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2107), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + ACTIONS(1860), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(1814), 19, - anon_sym_LBRACK, + ACTIONS(1858), 14, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63283,47 +64043,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38583] = 3, + anon_sym_DOT_DOT, + [37043] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(577), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1860), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2113), 1, + anon_sym_CARET, + ACTIONS(2115), 1, + anon_sym_AMP, + ACTIONS(2117), 1, + anon_sym_PIPE, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2107), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(575), 19, - anon_sym_LBRACK, + ACTIONS(2125), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1858), 10, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38620] = 3, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_DOT, + [37103] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1786), 10, + ACTIONS(1794), 11, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -63334,7 +64104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1784), 19, + anon_sym_DOT, + ACTIONS(1792), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -63351,127 +64122,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [38657] = 3, + [37141] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1802), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1938), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2113), 1, + anon_sym_CARET, + ACTIONS(2115), 1, + anon_sym_AMP, + ACTIONS(2117), 1, + anon_sym_PIPE, + ACTIONS(2119), 1, + anon_sym_AMP_AMP, + ACTIONS(2121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2137), 1, + anon_sym_DOT_DOT, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2107), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1800), 19, - anon_sym_LBRACK, + ACTIONS(2125), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1936), 7, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38694] = 3, + [37207] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(515), 10, + ACTIONS(95), 1, + anon_sym_RBRACE, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(513), 19, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [37277] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1942), 1, + anon_sym_EQ, + ACTIONS(2113), 1, anon_sym_CARET, + ACTIONS(2115), 1, + anon_sym_AMP, + ACTIONS(2117), 1, + anon_sym_PIPE, + ACTIONS(2119), 1, anon_sym_AMP_AMP, + ACTIONS(2121), 1, anon_sym_PIPE_PIPE, + ACTIONS(2109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2111), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2107), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2125), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1940), 8, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38731] = 3, + anon_sym_DOT_DOT, + [37341] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1086), 8, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1088), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [37379] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1832), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1934), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2113), 1, + anon_sym_CARET, + ACTIONS(2115), 1, + anon_sym_AMP, + ACTIONS(2117), 1, + anon_sym_PIPE, + ACTIONS(2119), 1, + anon_sym_AMP_AMP, + ACTIONS(2121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2137), 1, + anon_sym_DOT_DOT, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2107), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1830), 19, - anon_sym_LBRACK, + ACTIONS(2125), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1932), 7, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [37445] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, anon_sym_AMP_AMP, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2205), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38768] = 3, + [37513] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(563), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2107), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1860), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(561), 19, - anon_sym_LBRACK, + ACTIONS(1858), 17, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -63487,1064 +64446,1727 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38805] = 3, + anon_sym_DOT_DOT, + [37561] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1836), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2207), 1, + anon_sym_RBRACE, + ACTIONS(2209), 1, + anon_sym_COMMA, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1834), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38842] = 3, + [37631] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(559), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1860), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2113), 1, + anon_sym_CARET, + ACTIONS(2115), 1, + anon_sym_AMP, + ACTIONS(2117), 1, + anon_sym_PIPE, + ACTIONS(2119), 1, + anon_sym_AMP_AMP, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2107), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(557), 19, - anon_sym_LBRACK, + ACTIONS(2125), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1858), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38879] = 12, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2251), 1, - anon_sym_LBRACE, - ACTIONS(2253), 1, - anon_sym_RBRACE, - ACTIONS(2255), 1, - anon_sym_COMMA, - ACTIONS(2257), 1, - anon_sym_COLON_COLON, - ACTIONS(2259), 1, - anon_sym_STAR, - ACTIONS(2263), 1, - anon_sym_default, - ACTIONS(2265), 1, - sym_identifier, - STATE(1094), 1, - sym_scoped_identifier, - STATE(1660), 1, - sym_generic_type_with_turbofish, - STATE(1334), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(2261), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [38934] = 3, + anon_sym_DOT_DOT, + [37693] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1752), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2211), 1, + anon_sym_RBRACK, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1750), 19, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [37760] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, anon_sym_AMP_AMP, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2213), 1, + anon_sym_COMMA, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [38971] = 3, + [37827] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1936), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(2113), 1, + anon_sym_CARET, + ACTIONS(2115), 1, + anon_sym_AMP, + ACTIONS(2117), 1, + anon_sym_PIPE, + ACTIONS(2119), 1, + anon_sym_AMP_AMP, + ACTIONS(2121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2141), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2145), 1, + anon_sym_DOT_DOT, + ACTIONS(2215), 1, + anon_sym_LBRACE, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2107), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1934), 19, + ACTIONS(2125), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2143), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [37894] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, anon_sym_AMP_AMP, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2217), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39008] = 3, + [37961] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1824), 10, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2095), 1, + anon_sym_PIPE, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, + anon_sym_AMP_AMP, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2189), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2219), 1, + anon_sym_DOT_DOT, + ACTIONS(2221), 1, + anon_sym_EQ_GT, + ACTIONS(2087), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2097), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2085), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1822), 19, + ACTIONS(2099), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2191), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [38028] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, anon_sym_AMP_AMP, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2223), 1, + anon_sym_RBRACK, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39045] = 3, + [38095] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1932), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2225), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1930), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39082] = 3, + [38162] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1912), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2227), 1, + anon_sym_RBRACK, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1910), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39119] = 3, + [38229] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(573), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2229), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(571), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39156] = 3, + [38296] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1908), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2231), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1906), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39193] = 3, + [38363] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(601), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2233), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(599), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39230] = 3, + [38430] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(519), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2235), 1, + anon_sym_RBRACK, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(517), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39267] = 3, + [38497] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(611), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2237), 1, + anon_sym_RBRACK, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(609), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39304] = 3, + [38564] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1756), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2239), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1754), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39341] = 3, + [38631] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1820), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(2113), 1, + anon_sym_CARET, + ACTIONS(2115), 1, + anon_sym_AMP, + ACTIONS(2117), 1, + anon_sym_PIPE, + ACTIONS(2119), 1, + anon_sym_AMP_AMP, + ACTIONS(2121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2141), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2145), 1, + anon_sym_DOT_DOT, + ACTIONS(2221), 1, + anon_sym_LBRACE, + ACTIONS(2109), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2111), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1818), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2123), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2107), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2125), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2143), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39378] = 3, + [38698] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1806), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2241), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1804), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39415] = 3, + [38765] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1860), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2243), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1858), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39452] = 3, + [38832] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(752), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_RBRACK, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(754), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39489] = 3, + [38899] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(752), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2247), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1922), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(754), 19, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [38966] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, anon_sym_AMP_AMP, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39526] = 3, + [39033] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1882), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, + ACTIONS(2251), 7, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1880), 19, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(2253), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [39070] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, anon_sym_AMP_AMP, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2255), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39563] = 3, + [39137] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1840), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2257), 1, + anon_sym_COMMA, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1838), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39600] = 3, + [39204] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1876), 10, - anon_sym_EQ, + ACTIONS(2259), 1, + anon_sym_LBRACE, + ACTIONS(2261), 1, + anon_sym_RBRACE, + ACTIONS(2263), 1, + anon_sym_COMMA, + ACTIONS(2265), 1, + anon_sym_COLON_COLON, + ACTIONS(2267), 1, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1874), 19, + ACTIONS(2271), 1, + anon_sym_default, + ACTIONS(2273), 1, + sym_identifier, + STATE(1095), 1, + sym_scoped_identifier, + STATE(1656), 1, + sym_generic_type_with_turbofish, + STATE(1363), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2269), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [39259] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1822), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, anon_sym_AMP_AMP, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, + anon_sym_EQ, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2275), 1, + anon_sym_COMMA, + ACTIONS(1908), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1910), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39637] = 3, + [39326] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(504), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2147), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(502), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39674] = 3, + [39393] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1742), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2277), 1, + anon_sym_RBRACK, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1740), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39711] = 3, + [39460] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1890), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2279), 1, + anon_sym_RBRACK, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1888), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39748] = 3, + [39527] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1808), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2281), 1, + anon_sym_SEMI, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1758), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39785] = 3, + [39594] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1920), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2283), 1, + anon_sym_RBRACK, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1918), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39822] = 3, + [39661] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1844), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2285), 1, + anon_sym_COMMA, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1842), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39859] = 3, + [39728] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(567), 10, + ACTIONS(2083), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2093), 1, + anon_sym_AMP, + ACTIONS(2095), 1, + anon_sym_PIPE, + ACTIONS(2101), 1, + anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, + anon_sym_AMP_AMP, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2189), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2215), 1, + anon_sym_EQ_GT, + ACTIONS(2219), 1, + anon_sym_DOT_DOT, + ACTIONS(2087), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(565), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2097), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2085), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2099), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2191), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39896] = 3, + [39795] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1928), 10, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_DOT, + ACTIONS(1826), 1, + anon_sym_QMARK, + ACTIONS(1912), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_AMP, + ACTIONS(1916), 1, + anon_sym_PIPE, + ACTIONS(1918), 1, + anon_sym_AMP_AMP, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1944), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1973), 1, + anon_sym_DOT_DOT, + ACTIONS(2161), 1, + anon_sym_COMMA, + ACTIONS(1908), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1910), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1926), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1922), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1906), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1924), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1946), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [39933] = 11, + [39862] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2251), 1, + ACTIONS(2259), 1, anon_sym_LBRACE, - ACTIONS(2257), 1, + ACTIONS(2265), 1, anon_sym_COLON_COLON, - ACTIONS(2259), 1, + ACTIONS(2267), 1, anon_sym_STAR, - ACTIONS(2263), 1, + ACTIONS(2271), 1, anon_sym_default, - ACTIONS(2265), 1, + ACTIONS(2273), 1, sym_identifier, - ACTIONS(2267), 1, + ACTIONS(2287), 1, anon_sym_RBRACE, - STATE(1094), 1, + STATE(1095), 1, sym_scoped_identifier, - STATE(1660), 1, + STATE(1656), 1, sym_generic_type_with_turbofish, - STATE(1528), 5, + STATE(1494), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2261), 15, + ACTIONS(2269), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64560,32 +66182,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [39985] = 11, + [39914] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2251), 1, + ACTIONS(2259), 1, anon_sym_LBRACE, - ACTIONS(2257), 1, + ACTIONS(2265), 1, anon_sym_COLON_COLON, - ACTIONS(2259), 1, + ACTIONS(2267), 1, anon_sym_STAR, - ACTIONS(2263), 1, + ACTIONS(2271), 1, anon_sym_default, - ACTIONS(2265), 1, + ACTIONS(2273), 1, sym_identifier, - ACTIONS(2269), 1, + ACTIONS(2289), 1, anon_sym_RBRACE, - STATE(1094), 1, + STATE(1095), 1, sym_scoped_identifier, - STATE(1660), 1, + STATE(1656), 1, sym_generic_type_with_turbofish, - STATE(1528), 5, + STATE(1494), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2261), 15, + ACTIONS(2269), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64601,30 +66223,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40037] = 10, + [39966] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2251), 1, + ACTIONS(2259), 1, anon_sym_LBRACE, - ACTIONS(2257), 1, + ACTIONS(2265), 1, anon_sym_COLON_COLON, - ACTIONS(2259), 1, + ACTIONS(2267), 1, anon_sym_STAR, - ACTIONS(2263), 1, + ACTIONS(2271), 1, anon_sym_default, - ACTIONS(2265), 1, + ACTIONS(2273), 1, sym_identifier, - STATE(1094), 1, + STATE(1095), 1, sym_scoped_identifier, - STATE(1660), 1, + STATE(1656), 1, sym_generic_type_with_turbofish, - STATE(1528), 5, + STATE(1494), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2261), 15, + ACTIONS(2269), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64640,30 +66262,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40086] = 10, + [40015] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2251), 1, + ACTIONS(2259), 1, anon_sym_LBRACE, - ACTIONS(2257), 1, + ACTIONS(2265), 1, anon_sym_COLON_COLON, - ACTIONS(2259), 1, + ACTIONS(2267), 1, anon_sym_STAR, - ACTIONS(2263), 1, + ACTIONS(2271), 1, anon_sym_default, - ACTIONS(2265), 1, + ACTIONS(2273), 1, sym_identifier, - STATE(1094), 1, + STATE(1095), 1, sym_scoped_identifier, - STATE(1660), 1, + STATE(1656), 1, sym_generic_type_with_turbofish, - STATE(1583), 5, + STATE(1709), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2261), 15, + ACTIONS(2269), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64679,30 +66301,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40135] = 10, + [40064] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2251), 1, + ACTIONS(2259), 1, anon_sym_LBRACE, - ACTIONS(2257), 1, + ACTIONS(2265), 1, anon_sym_COLON_COLON, - ACTIONS(2259), 1, + ACTIONS(2267), 1, anon_sym_STAR, - ACTIONS(2263), 1, + ACTIONS(2271), 1, anon_sym_default, - ACTIONS(2265), 1, + ACTIONS(2273), 1, sym_identifier, - STATE(1094), 1, + STATE(1095), 1, sym_scoped_identifier, - STATE(1660), 1, + STATE(1656), 1, sym_generic_type_with_turbofish, - STATE(1661), 5, + STATE(1636), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2261), 15, + ACTIONS(2269), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64718,30 +66340,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40184] = 10, + [40113] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2251), 1, + ACTIONS(2259), 1, anon_sym_LBRACE, - ACTIONS(2257), 1, + ACTIONS(2265), 1, anon_sym_COLON_COLON, - ACTIONS(2259), 1, + ACTIONS(2267), 1, anon_sym_STAR, - ACTIONS(2263), 1, + ACTIONS(2271), 1, anon_sym_default, - ACTIONS(2265), 1, + ACTIONS(2273), 1, sym_identifier, - STATE(1094), 1, + STATE(1095), 1, sym_scoped_identifier, - STATE(1660), 1, + STATE(1656), 1, sym_generic_type_with_turbofish, - STATE(1639), 5, + STATE(1657), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2261), 15, + ACTIONS(2269), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64757,30 +66379,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40233] = 10, + [40162] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2251), 1, + ACTIONS(2259), 1, anon_sym_LBRACE, - ACTIONS(2257), 1, + ACTIONS(2265), 1, anon_sym_COLON_COLON, - ACTIONS(2259), 1, + ACTIONS(2267), 1, anon_sym_STAR, - ACTIONS(2263), 1, + ACTIONS(2271), 1, anon_sym_default, - ACTIONS(2265), 1, + ACTIONS(2273), 1, sym_identifier, - STATE(1094), 1, + STATE(1095), 1, sym_scoped_identifier, - STATE(1660), 1, + STATE(1656), 1, sym_generic_type_with_turbofish, - STATE(1657), 5, + STATE(1589), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2261), 15, + ACTIONS(2269), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64796,19 +66418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40282] = 5, + [40211] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2271), 1, + ACTIONS(2291), 1, anon_sym_POUND, - STATE(886), 2, + STATE(900), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - ACTIONS(635), 3, + ACTIONS(585), 3, anon_sym_COLON_COLON, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1542), 19, + ACTIONS(1546), 19, anon_sym_impl, anon_sym_const, anon_sym_u8, @@ -64828,15 +66450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_identifier, sym_super, - [40319] = 3, + [40248] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(948), 4, + ACTIONS(1018), 4, anon_sym_POUND, anon_sym_COLON_COLON, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(950), 19, + ACTIONS(1020), 19, anon_sym_impl, anon_sym_const, anon_sym_u8, @@ -64856,24 +66478,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_identifier, sym_super, - [40350] = 9, + [40279] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, anon_sym_COLON_COLON, - ACTIONS(1987), 1, + ACTIONS(1997), 1, anon_sym_default, - ACTIONS(2274), 1, + ACTIONS(2294), 1, sym_identifier, - STATE(1248), 1, - sym_generic_type_with_turbofish, - STATE(1249), 1, + STATE(1415), 1, sym_generic_type, - STATE(1465), 1, + STATE(1430), 1, + sym_generic_type_with_turbofish, + STATE(1508), 1, sym_scoped_type_identifier, - STATE(1684), 1, + STATE(1668), 1, sym_scoped_identifier, - ACTIONS(1981), 15, + ACTIONS(1991), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64889,22 +66511,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40392] = 8, + [40321] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, + ACTIONS(2298), 1, anon_sym_default, - ACTIONS(2280), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(1036), 1, + STATE(1040), 1, sym_scoped_identifier, - STATE(1593), 1, + STATE(1623), 1, sym_attribute, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - ACTIONS(2276), 15, + ACTIONS(2296), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64920,22 +66542,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40431] = 8, + [40360] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, + ACTIONS(2298), 1, anon_sym_default, - ACTIONS(2280), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(1036), 1, + STATE(1040), 1, sym_scoped_identifier, - STATE(1592), 1, + STATE(1607), 1, sym_attribute, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - ACTIONS(2276), 15, + ACTIONS(2296), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64951,22 +66573,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40470] = 8, + [40399] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, + ACTIONS(2298), 1, anon_sym_default, - ACTIONS(2280), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(1036), 1, + STATE(1040), 1, sym_scoped_identifier, - STATE(1629), 1, - sym_generic_type_with_turbofish, - STATE(1645), 1, + STATE(1611), 1, sym_attribute, - ACTIONS(2276), 15, + STATE(1637), 1, + sym_generic_type_with_turbofish, + ACTIONS(2296), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64982,22 +66604,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40509] = 8, + [40438] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, + ACTIONS(2298), 1, anon_sym_default, - ACTIONS(2280), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(1036), 1, + STATE(1040), 1, sym_scoped_identifier, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - STATE(1741), 1, + STATE(1652), 1, sym_attribute, - ACTIONS(2276), 15, + ACTIONS(2296), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65013,22 +66635,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40548] = 8, + [40477] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, + ACTIONS(2298), 1, anon_sym_default, - ACTIONS(2280), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(1036), 1, + STATE(1040), 1, sym_scoped_identifier, - STATE(1629), 1, - sym_generic_type_with_turbofish, - STATE(1691), 1, + STATE(1635), 1, sym_attribute, - ACTIONS(2276), 15, + STATE(1637), 1, + sym_generic_type_with_turbofish, + ACTIONS(2296), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65044,22 +66666,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40587] = 8, + [40516] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, + ACTIONS(2298), 1, anon_sym_default, - ACTIONS(2280), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(1036), 1, + STATE(1040), 1, sym_scoped_identifier, - STATE(1609), 1, - sym_attribute, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - ACTIONS(2276), 15, + STATE(1679), 1, + sym_attribute, + ACTIONS(2296), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65075,22 +66697,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40626] = 8, + [40555] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, + ACTIONS(2298), 1, anon_sym_default, - ACTIONS(2280), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(1036), 1, + STATE(1040), 1, sym_scoped_identifier, - STATE(1600), 1, - sym_attribute, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - ACTIONS(2276), 15, + STATE(1649), 1, + sym_attribute, + ACTIONS(2296), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65106,22 +66728,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40665] = 8, + [40594] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, + ACTIONS(2298), 1, anon_sym_default, - ACTIONS(2280), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(1036), 1, + STATE(1040), 1, sym_scoped_identifier, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - STATE(1641), 1, + STATE(1653), 1, sym_attribute, - ACTIONS(2276), 15, + ACTIONS(2296), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65137,22 +66759,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40704] = 8, + [40633] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, + ACTIONS(2298), 1, anon_sym_default, - ACTIONS(2280), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(1036), 1, + STATE(1040), 1, sym_scoped_identifier, - STATE(1603), 1, + STATE(1601), 1, sym_attribute, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - ACTIONS(2276), 15, + ACTIONS(2296), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65168,22 +66790,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40743] = 8, + [40672] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, + ACTIONS(2298), 1, anon_sym_default, - ACTIONS(2280), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(1036), 1, + STATE(1040), 1, sym_scoped_identifier, - STATE(1629), 1, + STATE(1637), 1, sym_generic_type_with_turbofish, - STATE(1646), 1, + STATE(1672), 1, sym_attribute, - ACTIONS(2276), 15, + ACTIONS(2296), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65199,22 +66821,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40782] = 8, + [40711] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 1, + ACTIONS(1264), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, + ACTIONS(2298), 1, anon_sym_default, - ACTIONS(2280), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(1036), 1, + STATE(1040), 1, sym_scoped_identifier, - STATE(1629), 1, - sym_generic_type_with_turbofish, - STATE(1665), 1, + STATE(1597), 1, sym_attribute, - ACTIONS(2276), 15, + STATE(1637), 1, + sym_generic_type_with_turbofish, + ACTIONS(2296), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65230,20 +66852,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40821] = 7, + [40750] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2302), 1, anon_sym_COLON_COLON, - ACTIONS(2286), 1, + ACTIONS(2306), 1, anon_sym_default, - ACTIONS(2288), 1, + ACTIONS(2308), 1, sym_identifier, - STATE(1449), 1, + STATE(1560), 1, sym_scoped_identifier, - STATE(1660), 1, + STATE(1656), 1, sym_generic_type_with_turbofish, - ACTIONS(2284), 15, + ACTIONS(2304), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65259,20 +66881,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40857] = 7, + [40786] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2302), 1, anon_sym_COLON_COLON, - ACTIONS(2292), 1, + ACTIONS(2312), 1, anon_sym_default, - ACTIONS(2294), 1, + ACTIONS(2314), 1, sym_identifier, - STATE(1472), 1, + STATE(1459), 1, sym_scoped_identifier, - STATE(1660), 1, + STATE(1656), 1, sym_generic_type_with_turbofish, - ACTIONS(2290), 15, + ACTIONS(2310), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65288,24 +66910,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [40893] = 9, + [40822] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2296), 1, + ACTIONS(2316), 1, anon_sym_LBRACE, - ACTIONS(2300), 1, + ACTIONS(2320), 1, anon_sym_COLON, - ACTIONS(2302), 1, + ACTIONS(2322), 1, anon_sym_BANG, - ACTIONS(2304), 1, + ACTIONS(2324), 1, anon_sym_COLON_COLON, - ACTIONS(2306), 1, + ACTIONS(2326), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - STATE(930), 1, + STATE(937), 1, sym_type_arguments, - ACTIONS(2298), 8, + ACTIONS(2318), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -65314,15 +66936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [40928] = 4, + [40857] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1648), 1, + ACTIONS(1646), 1, anon_sym_COLON, - ACTIONS(2310), 2, + ACTIONS(2330), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1646), 11, + ACTIONS(1644), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -65334,34 +66956,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [40952] = 3, + [40881] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1648), 1, - anon_sym_COLON, - ACTIONS(1646), 13, + ACTIONS(1674), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2332), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, - anon_sym_BANG, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LPAREN, + anon_sym_implicits, anon_sym_RPAREN, + anon_sym_GT, anon_sym_PIPE, - anon_sym_in, - [40974] = 4, + anon_sym_nopanic, + anon_sym_LT2, + [40903] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1660), 1, + ACTIONS(1672), 1, anon_sym_COLON, - ACTIONS(2312), 2, + ACTIONS(2334), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1658), 11, + ACTIONS(1670), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -65373,31 +66995,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [40998] = 3, + [40927] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1662), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2314), 12, + ACTIONS(1676), 1, + anon_sym_COLON, + ACTIONS(2332), 2, anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1674), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, + anon_sym_BANG, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT, anon_sym_PIPE, - anon_sym_nopanic, - anon_sym_LT2, - [41020] = 3, + anon_sym_in, + [40951] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1656), 1, + ACTIONS(1672), 1, anon_sym_COLON, - ACTIONS(1654), 13, + ACTIONS(1670), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65411,13 +67034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [41042] = 3, + [40973] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1654), 2, + ACTIONS(1644), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2316), 12, + ACTIONS(2330), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65430,19 +67053,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_nopanic, anon_sym_LT2, - [41064] = 4, + [40995] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1664), 1, - anon_sym_COLON, - ACTIONS(2314), 2, + ACTIONS(1656), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2336), 12, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_nopanic, anon_sym_LT2, - ACTIONS(1662), 11, + [41017] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1658), 1, + anon_sym_COLON, + ACTIONS(1656), 13, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_BANG, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -65450,32 +67091,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [41088] = 3, + [41039] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1646), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2310), 12, + ACTIONS(1658), 1, + anon_sym_COLON, + ACTIONS(2336), 2, anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1656), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, + anon_sym_BANG, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT, anon_sym_PIPE, - anon_sym_nopanic, - anon_sym_LT2, - [41110] = 3, + anon_sym_in, + [41063] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1658), 2, + ACTIONS(1670), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2312), 12, + ACTIONS(2334), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65488,12 +67130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_nopanic, anon_sym_LT2, - [41132] = 3, + [41085] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1660), 1, + ACTIONS(1646), 1, anon_sym_COLON, - ACTIONS(1658), 13, + ACTIONS(1644), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65507,19 +67149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [41154] = 4, + [41107] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1656), 1, + ACTIONS(1676), 1, anon_sym_COLON, - ACTIONS(2316), 2, + ACTIONS(1674), 13, anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(1654), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_BANG, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -65527,29 +67168,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [41178] = 3, + [41129] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1664), 1, + ACTIONS(512), 13, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(1662), 13, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_nopanic, + anon_sym_in, + [41148] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(524), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_nopanic, + anon_sym_in, + [41167] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2340), 1, + anon_sym_COLON, + ACTIONS(2342), 1, anon_sym_BANG, - anon_sym_LBRACK, + ACTIONS(2344), 1, + anon_sym_COLON_COLON, + STATE(944), 1, + sym_type_arguments, + ACTIONS(2338), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [41196] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(722), 13, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LPAREN, + anon_sym_implicits, anon_sym_RPAREN, + anon_sym_GT, anon_sym_PIPE, + anon_sym_nopanic, anon_sym_in, - [41200] = 2, + [41215] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2318), 13, + ACTIONS(1718), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65563,10 +67258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41219] = 2, + [41234] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1738), 13, + ACTIONS(2346), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65580,27 +67275,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41238] = 2, + [41253] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(529), 13, + ACTIONS(1694), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - anon_sym_in, - [41257] = 2, + [41272] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(521), 13, + ACTIONS(740), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65614,31 +67309,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_nopanic, anon_sym_in, - [41276] = 2, + [41291] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(585), 13, + ACTIONS(2348), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, + anon_sym_COLON_COLON, anon_sym_RPAREN, anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - anon_sym_in, - [41295] = 2, + [41309] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(595), 13, + ACTIONS(2352), 1, + anon_sym_COLON_COLON, + ACTIONS(2350), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, @@ -65647,21 +67342,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - anon_sym_in, - [41314] = 7, + [41329] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2322), 1, + ACTIONS(2320), 1, anon_sym_COLON, - ACTIONS(2324), 1, + ACTIONS(2322), 1, anon_sym_BANG, ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2354), 1, anon_sym_COLON_COLON, - STATE(924), 1, - sym_type_arguments, - ACTIONS(2320), 8, + ACTIONS(2318), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -65670,10 +67362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [41343] = 2, + [41355] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1744), 13, + ACTIONS(2330), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65681,33 +67373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, - anon_sym_COLON_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41362] = 3, + anon_sym_LT2, + [41373] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2330), 1, + ACTIONS(2358), 1, anon_sym_COLON_COLON, - ACTIONS(2328), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_implicits, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_nopanic, - [41382] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2332), 12, + ACTIONS(2356), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65715,17 +67391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, - anon_sym_COLON_COLON, anon_sym_RPAREN, anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41400] = 3, + [41393] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2334), 1, + ACTIONS(2360), 1, anon_sym_COLON_COLON, - ACTIONS(2328), 11, + ACTIONS(2350), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65737,32 +67412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41420] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2300), 1, - anon_sym_COLON, - ACTIONS(2302), 1, - anon_sym_BANG, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2336), 1, - anon_sym_COLON_COLON, - ACTIONS(2298), 8, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [41446] = 3, + [41413] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2340), 1, - anon_sym_COLON_COLON, - ACTIONS(2338), 11, + ACTIONS(2362), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65770,14 +67423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, + anon_sym_COLON_COLON, anon_sym_RPAREN, anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41466] = 2, + [41431] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2342), 12, + ACTIONS(2364), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65790,80 +67444,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41484] = 13, + [41449] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2344), 1, + ACTIONS(2366), 1, anon_sym_impl, - ACTIONS(2346), 1, + ACTIONS(2368), 1, anon_sym_trait, - ACTIONS(2348), 1, + ACTIONS(2370), 1, anon_sym_type, - ACTIONS(2350), 1, + ACTIONS(2372), 1, anon_sym_const, - ACTIONS(2352), 1, + ACTIONS(2374), 1, anon_sym_mod, - ACTIONS(2354), 1, + ACTIONS(2376), 1, anon_sym_struct, - ACTIONS(2356), 1, + ACTIONS(2378), 1, anon_sym_enum, - ACTIONS(2358), 1, + ACTIONS(2380), 1, anon_sym_fn, - ACTIONS(2360), 1, + ACTIONS(2382), 1, anon_sym_use, - ACTIONS(2362), 1, + ACTIONS(2384), 1, anon_sym_extern, - STATE(1309), 1, + STATE(1306), 1, sym_extern, - STATE(1336), 1, + STATE(1330), 1, sym_function, - [41524] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2364), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_implicits, - anon_sym_COLON_COLON, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_nopanic, - [41542] = 13, + [41489] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2358), 1, + ACTIONS(2380), 1, anon_sym_fn, - ACTIONS(2362), 1, + ACTIONS(2384), 1, anon_sym_extern, - ACTIONS(2366), 1, + ACTIONS(2386), 1, anon_sym_impl, - ACTIONS(2368), 1, + ACTIONS(2388), 1, anon_sym_trait, - ACTIONS(2370), 1, + ACTIONS(2390), 1, anon_sym_type, - ACTIONS(2372), 1, + ACTIONS(2392), 1, anon_sym_const, - ACTIONS(2374), 1, + ACTIONS(2394), 1, anon_sym_mod, - ACTIONS(2376), 1, + ACTIONS(2396), 1, anon_sym_struct, - ACTIONS(2378), 1, + ACTIONS(2398), 1, anon_sym_enum, - ACTIONS(2380), 1, + ACTIONS(2400), 1, anon_sym_use, - STATE(1299), 1, - sym_extern, - STATE(1320), 1, + STATE(1312), 1, sym_function, - [41582] = 2, + STATE(1315), 1, + sym_extern, + [41529] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2316), 12, + ACTIONS(2402), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65875,11 +67513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - anon_sym_LT2, - [41600] = 2, + [41546] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2382), 11, + ACTIONS(2404), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65891,60 +67528,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41617] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2384), 1, - anon_sym_RBRACE, - ACTIONS(2386), 1, - anon_sym_POUND, - ACTIONS(2388), 1, - anon_sym_COMMA, - ACTIONS(2390), 1, - anon_sym_DOT_DOT, - ACTIONS(2392), 1, - sym_numeric_literal, - ACTIONS(2394), 1, - sym_identifier, - STATE(1107), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1347), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [41648] = 9, + [41563] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, - anon_sym_POUND, - ACTIONS(2390), 1, - anon_sym_DOT_DOT, - ACTIONS(2392), 1, - sym_numeric_literal, - ACTIONS(2394), 1, - sym_identifier, - ACTIONS(2396), 1, - anon_sym_RBRACE, - ACTIONS(2398), 1, + ACTIONS(2406), 1, + anon_sym_RBRACK, + ACTIONS(2334), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1670), 7, + anon_sym_BANG, anon_sym_COMMA, - STATE(1107), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1360), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [41679] = 4, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [41584] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2400), 1, + ACTIONS(2409), 1, anon_sym_RBRACK, - ACTIONS(2316), 3, + ACTIONS(2332), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1654), 7, + ACTIONS(1674), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -65952,25 +67562,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [41700] = 2, + [41605] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2328), 11, + ACTIONS(2412), 1, + anon_sym_RBRACK, + ACTIONS(2336), 3, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, + anon_sym_LT2, + ACTIONS(1656), 7, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_implicits, - anon_sym_RPAREN, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_nopanic, - [41717] = 2, + anon_sym_EQ_GT, + anon_sym_if, + [41626] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2417), 1, + anon_sym_LPAREN, + ACTIONS(2415), 10, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_use, + anon_sym_extern, + [41645] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2403), 11, + ACTIONS(2419), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -65982,27 +67610,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41734] = 4, + [41662] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2405), 1, - anon_sym_RBRACK, - ACTIONS(2314), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LT2, - ACTIONS(1662), 7, - anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_RBRACE, + ACTIONS(2423), 1, + anon_sym_POUND, + ACTIONS(2425), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [41755] = 2, + ACTIONS(2427), 1, + anon_sym_DOT_DOT, + ACTIONS(2429), 1, + sym_numeric_literal, + ACTIONS(2431), 1, + sym_identifier, + STATE(1115), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1370), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [41693] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2408), 11, + ACTIONS(2350), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -66014,27 +67647,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41772] = 4, + [41710] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2410), 1, - anon_sym_RBRACK, - ACTIONS(2312), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LT2, - ACTIONS(1658), 7, - anon_sym_BANG, + ACTIONS(2423), 1, + anon_sym_POUND, + ACTIONS(2427), 1, + anon_sym_DOT_DOT, + ACTIONS(2429), 1, + sym_numeric_literal, + ACTIONS(2431), 1, + sym_identifier, + ACTIONS(2433), 1, + anon_sym_RBRACE, + ACTIONS(2435), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [41793] = 2, + STATE(1115), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1413), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [41741] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2413), 11, + ACTIONS(2437), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -66046,10 +67684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41810] = 2, + [41758] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 11, + ACTIONS(2439), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -66061,10 +67699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41827] = 2, + [41775] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2417), 11, + ACTIONS(2441), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -66076,10 +67714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41844] = 2, + [41792] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2419), 11, + ACTIONS(2443), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -66091,16 +67729,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [41861] = 4, + [41809] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2421), 1, + ACTIONS(2445), 1, anon_sym_RBRACK, - ACTIONS(2310), 3, + ACTIONS(2330), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1646), 7, + ACTIONS(1644), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -66108,142 +67746,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [41882] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2426), 1, - anon_sym_LPAREN, - ACTIONS(2424), 10, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_use, - anon_sym_extern, - [41901] = 8, + [41830] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, + ACTIONS(2423), 1, anon_sym_POUND, - ACTIONS(2390), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT, - ACTIONS(2392), 1, + ACTIONS(2429), 1, sym_numeric_literal, - ACTIONS(2394), 1, + ACTIONS(2431), 1, sym_identifier, - ACTIONS(2428), 1, + ACTIONS(2448), 1, anon_sym_RBRACE, - STATE(1107), 2, + STATE(1115), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1561), 3, + STATE(1453), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [41929] = 8, + [41858] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, + ACTIONS(2450), 1, + anon_sym_RBRACE, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2390), 1, - anon_sym_DOT_DOT, - ACTIONS(2392), 1, - sym_numeric_literal, - ACTIONS(2394), 1, + ACTIONS(2454), 1, + anon_sym_COMMA, + ACTIONS(2456), 1, + anon_sym_pub, + ACTIONS(2458), 1, sym_identifier, - ACTIONS(2430), 1, - anon_sym_RBRACE, - STATE(1107), 2, + STATE(1313), 1, + sym_enum_variant, + STATE(1543), 1, + sym_field_declaration, + STATE(1647), 1, + sym_visibility_modifier, + STATE(1027), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1561), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [41957] = 4, + [41890] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - STATE(928), 1, - sym_type_arguments, - ACTIONS(2328), 8, - anon_sym_LBRACE, + ACTIONS(536), 10, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, anon_sym_RPAREN, - anon_sym_nopanic, - [41977] = 10, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_in, + [41906] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2296), 1, - anon_sym_LBRACE, - ACTIONS(2302), 1, - anon_sym_BANG, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2432), 1, + ACTIONS(532), 10, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(2434), 1, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(2437), 1, - anon_sym_COLON_COLON, - STATE(930), 1, - sym_type_arguments, - ACTIONS(2298), 2, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, anon_sym_PIPE, - [42009] = 10, + anon_sym_in, + [41922] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2439), 1, - anon_sym_RBRACE, - ACTIONS(2441), 1, - anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(2316), 1, + anon_sym_LBRACE, + ACTIONS(2318), 1, + anon_sym_PIPE, + ACTIONS(2320), 1, + anon_sym_COLON, + ACTIONS(2322), 1, + anon_sym_BANG, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2462), 1, + anon_sym_COLON_COLON, + STATE(937), 1, + sym_type_arguments, + ACTIONS(2460), 2, anon_sym_COMMA, - ACTIONS(2445), 1, - anon_sym_pub, - ACTIONS(2447), 1, - sym_identifier, - STATE(1392), 1, - sym_enum_variant, - STATE(1439), 1, - sym_field_declaration, - STATE(1727), 1, - sym_visibility_modifier, - STATE(1020), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [42041] = 4, + anon_sym_RPAREN, + [41954] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2300), 1, - anon_sym_COLON, - ACTIONS(2449), 1, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2464), 1, + anon_sym_BANG, + ACTIONS(2466), 1, anon_sym_COLON_COLON, - ACTIONS(2298), 8, + STATE(937), 1, + sym_type_arguments, + ACTIONS(2460), 6, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [42061] = 2, + [41978] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2451), 10, + ACTIONS(2468), 10, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -66254,88 +67870,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_use, anon_sym_extern, - [42077] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2296), 1, - anon_sym_LBRACE, - ACTIONS(2298), 1, - anon_sym_PIPE, - ACTIONS(2300), 1, - anon_sym_COLON, - ACTIONS(2302), 1, - anon_sym_BANG, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2453), 1, - anon_sym_COLON_COLON, - STATE(930), 1, - sym_type_arguments, - ACTIONS(2432), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42109] = 8, + [41994] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, + ACTIONS(2423), 1, anon_sym_POUND, - ACTIONS(2390), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT, - ACTIONS(2392), 1, + ACTIONS(2429), 1, sym_numeric_literal, - ACTIONS(2394), 1, + ACTIONS(2431), 1, sym_identifier, - ACTIONS(2455), 1, + ACTIONS(2470), 1, anon_sym_RBRACE, - STATE(1107), 2, + STATE(1115), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1561), 3, + STATE(1453), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [42137] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2441), 1, - anon_sym_POUND, - ACTIONS(2445), 1, - anon_sym_pub, - ACTIONS(2447), 1, - sym_identifier, - ACTIONS(2457), 1, - anon_sym_RBRACE, - ACTIONS(2459), 1, - anon_sym_COMMA, - STATE(1409), 1, - sym_enum_variant, - STATE(1439), 1, - sym_field_declaration, - STATE(1727), 1, - sym_visibility_modifier, - STATE(1013), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [42169] = 2, + [42022] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(502), 10, + ACTIONS(2328), 1, + anon_sym_LT2, + STATE(943), 1, + sym_type_arguments, + ACTIONS(2350), 8, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_implicits, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_in, - [42185] = 2, + anon_sym_nopanic, + [42042] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2461), 10, + ACTIONS(2472), 10, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -66346,197 +67920,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_use, anon_sym_extern, - [42201] = 2, + [42058] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(517), 10, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2320), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_in, - [42217] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(533), 10, + ACTIONS(2474), 1, + anon_sym_COLON_COLON, + ACTIONS(2318), 8, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT, anon_sym_PIPE, anon_sym_in, - [42233] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2463), 1, - anon_sym_BANG, - ACTIONS(2465), 1, - anon_sym_COLON_COLON, - STATE(930), 1, - sym_type_arguments, - ACTIONS(2432), 6, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - [42257] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2467), 10, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_use, - anon_sym_extern, - [42273] = 8, + [42078] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, + ACTIONS(2423), 1, anon_sym_POUND, - ACTIONS(2390), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT, - ACTIONS(2392), 1, + ACTIONS(2429), 1, sym_numeric_literal, - ACTIONS(2394), 1, + ACTIONS(2431), 1, sym_identifier, - ACTIONS(2469), 1, + ACTIONS(2476), 1, anon_sym_RBRACE, - STATE(1107), 2, + STATE(1115), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1561), 3, + STATE(1453), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [42301] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2471), 9, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [42316] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1664), 1, - anon_sym_COLON, - ACTIONS(1662), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - ACTIONS(2314), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT2, - [42335] = 9, + [42106] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2447), 1, + ACTIONS(2458), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2478), 1, anon_sym_RBRACE, - STATE(1439), 1, - sym_field_declaration, - STATE(1444), 1, + ACTIONS(2480), 1, + anon_sym_COMMA, + STATE(1402), 1, sym_enum_variant, - STATE(1727), 1, + STATE(1543), 1, + sym_field_declaration, + STATE(1647), 1, sym_visibility_modifier, - STATE(1019), 2, + STATE(1034), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [42364] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2475), 9, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [42379] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2477), 9, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [42394] = 2, + [42138] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2479), 9, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [42409] = 9, + ACTIONS(2482), 10, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_use, + anon_sym_extern, + [42154] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2423), 1, anon_sym_POUND, - ACTIONS(2445), 1, - anon_sym_pub, - ACTIONS(2481), 1, - anon_sym_RBRACE, - ACTIONS(2483), 1, - anon_sym_COMMA, - ACTIONS(2485), 1, + ACTIONS(2427), 1, + anon_sym_DOT_DOT, + ACTIONS(2429), 1, + sym_numeric_literal, + ACTIONS(2431), 1, sym_identifier, - STATE(1413), 1, - sym_field_declaration, - STATE(1711), 1, - sym_visibility_modifier, - STATE(1034), 2, + ACTIONS(2484), 1, + anon_sym_RBRACE, + STATE(1115), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [42438] = 2, + STATE(1453), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [42182] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2487), 9, + ACTIONS(516), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66544,22 +68023,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_GT, anon_sym_PIPE, anon_sym_in, - [42453] = 2, + [42198] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2489), 9, - anon_sym_RBRACE, + ACTIONS(2316), 1, + anon_sym_LBRACE, + ACTIONS(2322), 1, + anon_sym_BANG, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2460), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(2486), 1, anon_sym_RBRACK, + ACTIONS(2489), 1, + anon_sym_COLON_COLON, + STATE(937), 1, + sym_type_arguments, + ACTIONS(2318), 2, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_in, - [42468] = 2, + [42230] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(2491), 9, @@ -66572,65 +68061,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42483] = 9, + [42245] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2485), 1, + ACTIONS(2458), 1, sym_identifier, ACTIONS(2493), 1, anon_sym_RBRACE, - ACTIONS(2495), 1, - anon_sym_COMMA, - STATE(1390), 1, + STATE(1442), 1, + sym_enum_variant, + STATE(1543), 1, sym_field_declaration, - STATE(1711), 1, + STATE(1647), 1, sym_visibility_modifier, STATE(1029), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [42512] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1656), 1, - anon_sym_COLON, - ACTIONS(1654), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - ACTIONS(2316), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT2, - [42531] = 9, + [42274] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2447), 1, + ACTIONS(2458), 1, sym_identifier, - ACTIONS(2497), 1, + ACTIONS(2495), 1, anon_sym_RBRACE, - STATE(1439), 1, - sym_field_declaration, - STATE(1444), 1, + STATE(1442), 1, sym_enum_variant, - STATE(1727), 1, + STATE(1543), 1, + sym_field_declaration, + STATE(1647), 1, sym_visibility_modifier, - STATE(1019), 2, + STATE(1029), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [42560] = 2, + [42303] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2499), 9, + ACTIONS(2497), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66640,10 +68114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42575] = 2, + [42318] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2501), 9, + ACTIONS(2499), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66653,10 +68127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42590] = 2, + [42333] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2503), 9, + ACTIONS(2501), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66666,10 +68140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42605] = 2, + [42348] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2505), 9, + ACTIONS(2503), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66679,10 +68153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42620] = 2, + [42363] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2507), 9, + ACTIONS(2505), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66692,10 +68166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42635] = 2, + [42378] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2509), 9, + ACTIONS(2507), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66705,75 +68179,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42650] = 4, + [42393] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2316), 1, + anon_sym_LBRACE, + ACTIONS(2318), 1, + anon_sym_PIPE, + ACTIONS(2322), 1, + anon_sym_BANG, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2509), 1, + anon_sym_COLON_COLON, + STATE(937), 1, + sym_type_arguments, + ACTIONS(2486), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42422] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2511), 1, + anon_sym_LBRACE, + ACTIONS(2513), 1, + anon_sym_BANG, + ACTIONS(2515), 1, + anon_sym_COLON_COLON, + ACTIONS(2517), 1, + anon_sym_LPAREN, + STATE(937), 1, + sym_type_arguments, + ACTIONS(2318), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42449] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2322), 1, + anon_sym_BANG, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2466), 1, + anon_sym_COLON_COLON, + STATE(937), 1, + sym_type_arguments, + ACTIONS(2460), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_nopanic, + [42472] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1648), 1, + ACTIONS(1676), 1, anon_sym_COLON, - ACTIONS(1646), 4, + ACTIONS(1674), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2310), 4, + ACTIONS(2332), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LT2, - [42669] = 9, + [42491] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2447), 1, + ACTIONS(2458), 1, sym_identifier, - ACTIONS(2511), 1, + ACTIONS(2519), 1, anon_sym_RBRACE, - STATE(1439), 1, - sym_field_declaration, - STATE(1444), 1, + STATE(1442), 1, sym_enum_variant, - STATE(1727), 1, + STATE(1543), 1, + sym_field_declaration, + STATE(1647), 1, sym_visibility_modifier, - STATE(1019), 2, + STATE(1029), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [42698] = 2, + [42520] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2513), 9, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1646), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, + ACTIONS(1644), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(2330), 4, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [42713] = 6, + anon_sym_LT2, + [42539] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2302), 1, + ACTIONS(1658), 1, + anon_sym_COLON, + ACTIONS(1656), 4, anon_sym_BANG, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2465), 1, anon_sym_COLON_COLON, - STATE(930), 1, - sym_type_arguments, - ACTIONS(2432), 5, + anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(2336), 4, anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_COMMA, - anon_sym_implicits, - anon_sym_nopanic, - [42736] = 2, + anon_sym_RPAREN, + anon_sym_LT2, + [42558] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2515), 9, + ACTIONS(2521), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66783,30 +68313,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42751] = 9, + [42573] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, - anon_sym_POUND, - ACTIONS(2445), 1, - anon_sym_pub, - ACTIONS(2447), 1, - sym_identifier, - ACTIONS(2517), 1, + ACTIONS(2318), 9, anon_sym_RBRACE, - STATE(1439), 1, - sym_field_declaration, - STATE(1444), 1, - sym_enum_variant, - STATE(1727), 1, - sym_visibility_modifier, - STATE(1019), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [42780] = 2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [42588] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1672), 1, + anon_sym_COLON, + ACTIONS(1670), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(2334), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT2, + [42607] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2513), 9, + ACTIONS(2523), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66816,28 +68354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42795] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2386), 1, - anon_sym_POUND, - ACTIONS(2390), 1, - anon_sym_DOT_DOT, - ACTIONS(2392), 1, - sym_numeric_literal, - ACTIONS(2394), 1, - sym_identifier, - STATE(1107), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1561), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [42820] = 2, + [42622] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2519), 9, + ACTIONS(2525), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66847,26 +68367,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42835] = 8, + [42637] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2523), 1, - anon_sym_BANG, - ACTIONS(2525), 1, - anon_sym_COLON_COLON, - ACTIONS(2527), 1, - anon_sym_LPAREN, - STATE(930), 1, - sym_type_arguments, - ACTIONS(2298), 3, + ACTIONS(2527), 9, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42862] = 2, + anon_sym_in, + [42652] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(2529), 9, @@ -66879,7 +68393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42877] = 2, + [42667] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(2531), 9, @@ -66892,47 +68406,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42892] = 9, + [42682] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, - anon_sym_POUND, - ACTIONS(2445), 1, - anon_sym_pub, - ACTIONS(2447), 1, - sym_identifier, - ACTIONS(2533), 1, + ACTIONS(2533), 9, anon_sym_RBRACE, - STATE(1439), 1, - sym_field_declaration, - STATE(1444), 1, - sym_enum_variant, - STATE(1727), 1, - sym_visibility_modifier, - STATE(1019), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [42921] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2302), 1, - anon_sym_BANG, - ACTIONS(2535), 1, - anon_sym_COLON_COLON, - ACTIONS(2537), 1, - anon_sym_LT2, - STATE(930), 1, - sym_type_arguments, - ACTIONS(2432), 5, anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - [42944] = 2, + anon_sym_in, + [42697] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2539), 9, + ACTIONS(2523), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66942,10 +68432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42959] = 2, + [42712] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2541), 9, + ACTIONS(2535), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66955,10 +68445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42974] = 2, + [42727] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2543), 9, + ACTIONS(2537), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -66968,30 +68458,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [42989] = 9, + [42742] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, - anon_sym_POUND, - ACTIONS(2445), 1, - anon_sym_pub, - ACTIONS(2447), 1, - sym_identifier, - ACTIONS(2545), 1, + ACTIONS(2539), 9, anon_sym_RBRACE, - STATE(1439), 1, - sym_field_declaration, - STATE(1444), 1, - sym_enum_variant, - STATE(1727), 1, - sym_visibility_modifier, - STATE(1019), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [43018] = 2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [42757] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2298), 9, + ACTIONS(2541), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -67001,30 +68484,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [43033] = 9, + [42772] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2296), 1, - anon_sym_LBRACE, - ACTIONS(2298), 1, - anon_sym_PIPE, - ACTIONS(2302), 1, - anon_sym_BANG, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2547), 1, - anon_sym_COLON_COLON, - STATE(930), 1, - sym_type_arguments, - ACTIONS(2434), 2, + ACTIONS(2543), 9, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - [43062] = 2, + anon_sym_PIPE, + anon_sym_in, + [42787] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 9, + ACTIONS(2545), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -67034,10 +68510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [43077] = 2, + [42802] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2551), 9, + ACTIONS(2547), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -67047,10 +68523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [43092] = 2, + [42817] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2553), 9, + ACTIONS(2549), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -67060,10 +68536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [43107] = 2, + [42832] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 9, + ACTIONS(2551), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -67073,25 +68549,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [43122] = 4, + [42847] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1660), 1, + ACTIONS(2452), 1, + anon_sym_POUND, + ACTIONS(2456), 1, + anon_sym_pub, + ACTIONS(2553), 1, + anon_sym_RBRACE, + ACTIONS(2555), 1, + anon_sym_COMMA, + ACTIONS(2557), 1, + sym_identifier, + STATE(1400), 1, + sym_field_declaration, + STATE(1593), 1, + sym_visibility_modifier, + STATE(1051), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [42876] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2559), 9, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(1658), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - ACTIONS(2312), 4, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LT2, - [43141] = 2, + anon_sym_PIPE, + anon_sym_in, + [42891] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2423), 1, + anon_sym_POUND, + ACTIONS(2427), 1, + anon_sym_DOT_DOT, + ACTIONS(2429), 1, + sym_numeric_literal, + ACTIONS(2431), 1, + sym_identifier, + STATE(1115), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1453), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [42916] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2557), 9, + ACTIONS(2561), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -67101,10 +68613,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [43156] = 2, + [42931] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2559), 9, + ACTIONS(2452), 1, + anon_sym_POUND, + ACTIONS(2456), 1, + anon_sym_pub, + ACTIONS(2458), 1, + sym_identifier, + ACTIONS(2563), 1, + anon_sym_RBRACE, + STATE(1442), 1, + sym_enum_variant, + STATE(1543), 1, + sym_field_declaration, + STATE(1647), 1, + sym_visibility_modifier, + STATE(1029), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [42960] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2452), 1, + anon_sym_POUND, + ACTIONS(2456), 1, + anon_sym_pub, + ACTIONS(2458), 1, + sym_identifier, + ACTIONS(2565), 1, + anon_sym_RBRACE, + STATE(1442), 1, + sym_enum_variant, + STATE(1543), 1, + sym_field_declaration, + STATE(1647), 1, + sym_visibility_modifier, + STATE(1029), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [42989] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2567), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -67114,10 +68666,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [43171] = 2, + [43004] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2561), 9, + ACTIONS(2322), 1, + anon_sym_BANG, + ACTIONS(2569), 1, + anon_sym_COLON_COLON, + ACTIONS(2571), 1, + anon_sym_LT2, + STATE(937), 1, + sym_type_arguments, + ACTIONS(2460), 5, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [43027] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2573), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -67127,765 +68696,804 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_in, - [43186] = 8, + [43042] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2485), 1, + ACTIONS(2458), 1, sym_identifier, - ACTIONS(2563), 1, + ACTIONS(2575), 1, anon_sym_RBRACE, - STATE(1432), 1, + STATE(1442), 1, + sym_enum_variant, + STATE(1543), 1, sym_field_declaration, - STATE(1711), 1, + STATE(1647), 1, sym_visibility_modifier, - STATE(1037), 2, + STATE(1029), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43212] = 8, + [43071] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2577), 9, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [43086] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2447), 1, + ACTIONS(2557), 1, sym_identifier, - STATE(1227), 1, - sym_enum_variant, - STATE(1439), 1, + ACTIONS(2579), 1, + anon_sym_RBRACE, + ACTIONS(2581), 1, + anon_sym_COMMA, + STATE(1328), 1, sym_field_declaration, - STATE(1727), 1, + STATE(1593), 1, sym_visibility_modifier, - STATE(1073), 2, + STATE(1043), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43238] = 8, + [43115] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2485), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2565), 1, + ACTIONS(2583), 1, anon_sym_RBRACE, - STATE(1432), 1, + STATE(1454), 1, sym_field_declaration, - STATE(1711), 1, + STATE(1593), 1, sym_visibility_modifier, - STATE(1037), 2, + STATE(1052), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43264] = 8, + [43141] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2485), 1, + ACTIONS(2458), 1, sym_identifier, - ACTIONS(2567), 1, - anon_sym_RBRACE, - STATE(1432), 1, + STATE(1346), 1, + sym_enum_variant, + STATE(1543), 1, sym_field_declaration, - STATE(1711), 1, + STATE(1647), 1, sym_visibility_modifier, - STATE(1037), 2, + STATE(1098), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43290] = 4, + [43167] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2314), 2, + ACTIONS(2334), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2405), 2, + ACTIONS(2406), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1662), 4, + ACTIONS(1670), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - [43308] = 4, + [43185] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2452), 1, + anon_sym_POUND, + ACTIONS(2456), 1, + anon_sym_pub, + ACTIONS(2458), 1, + sym_identifier, + STATE(1543), 1, + sym_field_declaration, + STATE(1566), 1, + sym_enum_variant, + STATE(1647), 1, + sym_visibility_modifier, + STATE(1098), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [43211] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2316), 2, + ACTIONS(2336), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2400), 2, + ACTIONS(2412), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1654), 4, + ACTIONS(1656), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - [43326] = 8, + [43229] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2485), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2569), 1, + ACTIONS(2585), 1, anon_sym_RBRACE, - STATE(1432), 1, + STATE(1454), 1, sym_field_declaration, - STATE(1711), 1, + STATE(1593), 1, sym_visibility_modifier, - STATE(1037), 2, + STATE(1052), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43352] = 8, + [43255] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2447), 1, + ACTIONS(2557), 1, sym_identifier, - STATE(1439), 1, + ACTIONS(2587), 1, + anon_sym_RBRACE, + STATE(1454), 1, sym_field_declaration, - STATE(1557), 1, - sym_enum_variant, - STATE(1727), 1, + STATE(1593), 1, sym_visibility_modifier, - STATE(1073), 2, + STATE(1052), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43378] = 8, + [43281] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2447), 1, + ACTIONS(2557), 1, sym_identifier, - STATE(1415), 1, - sym_enum_variant, - STATE(1439), 1, + ACTIONS(2589), 1, + anon_sym_RBRACE, + STATE(1454), 1, sym_field_declaration, - STATE(1727), 1, + STATE(1593), 1, sym_visibility_modifier, - STATE(1073), 2, + STATE(1052), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43404] = 8, + [43307] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2485), 1, + ACTIONS(2458), 1, sym_identifier, - ACTIONS(2571), 1, - anon_sym_RBRACE, - STATE(1432), 1, + STATE(1425), 1, + sym_enum_variant, + STATE(1543), 1, sym_field_declaration, - STATE(1711), 1, + STATE(1647), 1, sym_visibility_modifier, - STATE(1037), 2, + STATE(1098), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43430] = 8, + [43333] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2330), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2445), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1644), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [43351] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2485), 1, + ACTIONS(2458), 1, sym_identifier, - ACTIONS(2573), 1, - anon_sym_RBRACE, - STATE(1432), 1, + STATE(1442), 1, + sym_enum_variant, + STATE(1543), 1, sym_field_declaration, - STATE(1711), 1, + STATE(1647), 1, sym_visibility_modifier, - STATE(1037), 2, + STATE(1029), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43456] = 8, + [43377] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2447), 1, + ACTIONS(2557), 1, sym_identifier, - STATE(1439), 1, + ACTIONS(2591), 1, + anon_sym_RBRACE, + STATE(1454), 1, sym_field_declaration, - STATE(1444), 1, - sym_enum_variant, - STATE(1727), 1, + STATE(1593), 1, sym_visibility_modifier, - STATE(1019), 2, + STATE(1052), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43482] = 4, + [43403] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2310), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2421), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1646), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - [43500] = 4, + ACTIONS(2452), 1, + anon_sym_POUND, + ACTIONS(2456), 1, + anon_sym_pub, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2593), 1, + anon_sym_RBRACE, + STATE(1454), 1, + sym_field_declaration, + STATE(1593), 1, + sym_visibility_modifier, + STATE(1052), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [43429] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2312), 2, + ACTIONS(2332), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2410), 2, + ACTIONS(2409), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1658), 4, + ACTIONS(1674), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - [43518] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2251), 1, - anon_sym_LBRACE, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2575), 1, - anon_sym_STAR, - STATE(922), 1, - sym_type_arguments, - STATE(1308), 1, - sym_use_list, - ACTIONS(2577), 2, - sym_identifier, - sym_super, - [43541] = 8, + [43447] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2579), 1, + ACTIONS(2595), 1, anon_sym_LBRACE, - ACTIONS(2581), 1, + ACTIONS(2597), 1, anon_sym_EQ, - ACTIONS(2583), 1, + ACTIONS(2599), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2601), 1, anon_sym_RBRACK, - ACTIONS(2587), 1, + ACTIONS(2603), 1, anon_sym_COLON_COLON, - ACTIONS(2589), 1, + ACTIONS(2605), 1, anon_sym_LPAREN, - STATE(1695), 1, + STATE(1735), 1, sym_delim_token_tree, - [43566] = 5, + [43472] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2591), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - STATE(928), 1, + STATE(943), 1, sym_type_arguments, - ACTIONS(2328), 4, + ACTIONS(2350), 4, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - [43585] = 7, + [43491] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2342), 1, + anon_sym_BANG, + ACTIONS(2609), 1, + anon_sym_COLON_COLON, + STATE(944), 1, + sym_type_arguments, + ACTIONS(2338), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [43512] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2485), 1, + ACTIONS(2557), 1, sym_identifier, - STATE(1411), 1, + STATE(1354), 1, sym_field_declaration, - STATE(1711), 1, + STATE(1593), 1, sym_visibility_modifier, - STATE(1073), 2, + STATE(1098), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43608] = 7, + [43535] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, - anon_sym_POUND, - ACTIONS(2445), 1, - anon_sym_pub, - ACTIONS(2485), 1, + ACTIONS(2571), 1, + anon_sym_LT2, + STATE(943), 1, + sym_type_arguments, + ACTIONS(2350), 5, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [43552] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2259), 1, + anon_sym_LBRACE, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2611), 1, + anon_sym_STAR, + STATE(934), 1, + sym_type_arguments, + STATE(1240), 1, + sym_use_list, + ACTIONS(2613), 2, + sym_identifier, + sym_super, + [43575] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2259), 1, + anon_sym_LBRACE, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2615), 1, + anon_sym_STAR, + STATE(933), 1, + sym_type_arguments, + STATE(1246), 1, + sym_use_list, + ACTIONS(2617), 2, sym_identifier, - STATE(1432), 1, - sym_field_declaration, - STATE(1711), 1, - sym_visibility_modifier, - STATE(1037), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [43631] = 6, + sym_super, + [43598] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2324), 1, + ACTIONS(2342), 1, anon_sym_BANG, - ACTIONS(2593), 1, + ACTIONS(2619), 1, anon_sym_COLON_COLON, - STATE(924), 1, + STATE(944), 1, sym_type_arguments, - ACTIONS(2320), 3, + ACTIONS(2338), 3, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, - [43652] = 6, + [43619] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2259), 1, + anon_sym_LBRACE, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2595), 1, - anon_sym_BANG, - ACTIONS(2597), 1, - anon_sym_COLON_COLON, - STATE(924), 1, + ACTIONS(2615), 1, + anon_sym_STAR, + STATE(935), 1, sym_type_arguments, - ACTIONS(2320), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43673] = 8, + STATE(1246), 1, + sym_use_list, + ACTIONS(2617), 2, + sym_identifier, + sym_super, + [43642] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2579), 1, + ACTIONS(2595), 1, anon_sym_LBRACE, - ACTIONS(2583), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2599), 1, + ACTIONS(2597), 1, anon_sym_EQ, + ACTIONS(2599), 1, + anon_sym_LBRACK, ACTIONS(2601), 1, anon_sym_RBRACK, - ACTIONS(2603), 1, + ACTIONS(2605), 1, + anon_sym_LPAREN, + ACTIONS(2621), 1, anon_sym_COLON_COLON, - STATE(1654), 1, + STATE(1735), 1, sym_delim_token_tree, - [43698] = 7, + [43667] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2485), 1, + ACTIONS(2557), 1, sym_identifier, - STATE(1231), 1, + STATE(1454), 1, sym_field_declaration, - STATE(1711), 1, + STATE(1593), 1, sym_visibility_modifier, - STATE(1073), 2, + STATE(1052), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43721] = 7, + [43690] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2251), 1, - anon_sym_LBRACE, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2605), 1, - anon_sym_STAR, - STATE(915), 1, - sym_type_arguments, - STATE(1301), 1, - sym_use_list, - ACTIONS(2607), 2, + ACTIONS(2452), 1, + anon_sym_POUND, + ACTIONS(2456), 1, + anon_sym_pub, + ACTIONS(2557), 1, sym_identifier, - sym_super, - [43744] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2579), 1, - anon_sym_LBRACE, - ACTIONS(2581), 1, - anon_sym_EQ, - ACTIONS(2583), 1, - anon_sym_LBRACK, - ACTIONS(2585), 1, - anon_sym_RBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2609), 1, - anon_sym_COLON_COLON, - STATE(1695), 1, - sym_delim_token_tree, - [43769] = 7, + STATE(1422), 1, + sym_field_declaration, + STATE(1593), 1, + sym_visibility_modifier, + STATE(1098), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [43713] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2452), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2456), 1, anon_sym_pub, - ACTIONS(2485), 1, + ACTIONS(2557), 1, sym_identifier, - STATE(1550), 1, + STATE(1547), 1, sym_field_declaration, - STATE(1711), 1, + STATE(1593), 1, sym_visibility_modifier, - STATE(1073), 2, + STATE(1098), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43792] = 8, + [43736] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2579), 1, + ACTIONS(2595), 1, anon_sym_LBRACE, - ACTIONS(2581), 1, + ACTIONS(2597), 1, anon_sym_EQ, - ACTIONS(2583), 1, + ACTIONS(2599), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2601), 1, anon_sym_RBRACK, - ACTIONS(2589), 1, + ACTIONS(2605), 1, anon_sym_LPAREN, - ACTIONS(2611), 1, + ACTIONS(2623), 1, anon_sym_COLON_COLON, - STATE(1695), 1, + STATE(1735), 1, sym_delim_token_tree, - [43817] = 6, + [43761] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2324), 1, + ACTIONS(2625), 1, anon_sym_BANG, - ACTIONS(2613), 1, + ACTIONS(2627), 1, anon_sym_COLON_COLON, - STATE(924), 1, + STATE(944), 1, sym_type_arguments, - ACTIONS(2320), 3, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(2338), 3, anon_sym_PIPE, - [43838] = 7, + anon_sym_EQ_GT, + anon_sym_if, + [43782] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2251), 1, + ACTIONS(2595), 1, anon_sym_LBRACE, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2575), 1, - anon_sym_STAR, - STATE(916), 1, - sym_type_arguments, - STATE(1308), 1, - sym_use_list, - ACTIONS(2577), 2, - sym_identifier, - sym_super, - [43861] = 4, + ACTIONS(2599), 1, + anon_sym_LBRACK, + ACTIONS(2605), 1, + anon_sym_LPAREN, + ACTIONS(2629), 1, + anon_sym_EQ, + ACTIONS(2631), 1, + anon_sym_RBRACK, + ACTIONS(2633), 1, + anon_sym_COLON_COLON, + STATE(1634), 1, + sym_delim_token_tree, + [43807] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2537), 1, - anon_sym_LT2, - STATE(928), 1, - sym_type_arguments, - ACTIONS(2328), 5, + ACTIONS(2637), 1, + anon_sym_COMMA, + ACTIONS(2639), 1, + anon_sym_nopanic, + STATE(1074), 1, + aux_sym_function_repeat1, + STATE(1474), 1, + sym_nopanic, + ACTIONS(2635), 2, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_EQ, + [43827] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2571), 1, + anon_sym_LT2, + ACTIONS(2641), 1, anon_sym_COMMA, + ACTIONS(2643), 1, + anon_sym_COLON_COLON, + ACTIONS(2645), 1, anon_sym_GT, - anon_sym_PIPE, - [43878] = 7, + STATE(937), 1, + sym_type_arguments, + STATE(1390), 1, + aux_sym_type_parameters_repeat1, + [43849] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2571), 1, anon_sym_LT2, - ACTIONS(2320), 1, - anon_sym_PIPE, - ACTIONS(2322), 1, - anon_sym_COLON, - ACTIONS(2324), 1, - anon_sym_BANG, - ACTIONS(2615), 1, + ACTIONS(2643), 1, anon_sym_COLON_COLON, - STATE(924), 1, + ACTIONS(2647), 1, + anon_sym_COMMA, + ACTIONS(2649), 1, + anon_sym_GT, + STATE(937), 1, sym_type_arguments, - [43900] = 5, + STATE(1426), 1, + aux_sym_type_parameters_repeat1, + [43871] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2302), 1, + ACTIONS(2513), 1, anon_sym_BANG, - ACTIONS(2306), 1, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(2617), 1, + ACTIONS(2651), 1, anon_sym_COLON_COLON, - ACTIONS(2298), 3, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(2318), 3, anon_sym_PIPE, - [43918] = 2, + anon_sym_EQ_GT, + anon_sym_if, + [43889] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1646), 6, + ACTIONS(1656), 6, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43930] = 6, + [43901] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2621), 1, - anon_sym_DASH_GT, - ACTIONS(2623), 1, - anon_sym_implicits, - ACTIONS(2625), 1, - anon_sym_nopanic, - STATE(1468), 1, - sym_nopanic, - ACTIONS(2619), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [43950] = 6, + ACTIONS(1670), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43913] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2625), 1, - anon_sym_nopanic, - ACTIONS(2629), 1, + ACTIONS(2637), 1, anon_sym_COMMA, - STATE(1082), 1, + ACTIONS(2639), 1, + anon_sym_nopanic, + STATE(1099), 1, aux_sym_function_repeat1, - STATE(1555), 1, + STATE(1484), 1, sym_nopanic, - ACTIONS(2627), 2, + ACTIONS(2653), 2, anon_sym_LBRACE, anon_sym_SEMI, - [43970] = 2, + [43933] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1636), 6, + ACTIONS(1648), 6, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_GT, anon_sym_PIPE, - [43982] = 2, + [43945] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1654), 6, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2338), 1, + anon_sym_PIPE, + ACTIONS(2340), 1, + anon_sym_COLON, + ACTIONS(2342), 1, anon_sym_BANG, + ACTIONS(2655), 1, anon_sym_COLON_COLON, - anon_sym_LPAREN, + STATE(944), 1, + sym_type_arguments, + [43967] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2637), 1, + anon_sym_COMMA, + ACTIONS(2639), 1, + anon_sym_nopanic, + STATE(1099), 1, + aux_sym_function_repeat1, + STATE(1495), 1, + sym_nopanic, + ACTIONS(2657), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [43987] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1652), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43994] = 5, + [43999] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2302), 1, + ACTIONS(2322), 1, anon_sym_BANG, - ACTIONS(2306), 1, + ACTIONS(2326), 1, anon_sym_LPAREN, - ACTIONS(2631), 1, + ACTIONS(2659), 1, anon_sym_COLON_COLON, - ACTIONS(2298), 3, + ACTIONS(2318), 3, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, - [44012] = 2, + [44017] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1662), 6, + ACTIONS(1674), 6, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44024] = 6, + [44029] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2625), 1, - anon_sym_nopanic, - ACTIONS(2629), 1, + ACTIONS(2637), 1, anon_sym_COMMA, - STATE(1060), 1, + ACTIONS(2639), 1, + anon_sym_nopanic, + STATE(1062), 1, aux_sym_function_repeat1, - STATE(1473), 1, + STATE(1490), 1, sym_nopanic, - ACTIONS(2633), 2, + ACTIONS(2661), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44044] = 2, + [44049] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1650), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2322), 1, + anon_sym_BANG, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2663), 1, anon_sym_COLON_COLON, - anon_sym_GT, + ACTIONS(2318), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - [44056] = 7, + [44067] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2537), 1, - anon_sym_LT2, - ACTIONS(2635), 1, - anon_sym_COMMA, ACTIONS(2637), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, ACTIONS(2639), 1, - anon_sym_GT, - STATE(930), 1, - sym_type_arguments, - STATE(1246), 1, - aux_sym_type_parameters_repeat1, - [44078] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2625), 1, - anon_sym_nopanic, - ACTIONS(2643), 1, - anon_sym_DASH_GT, - ACTIONS(2645), 1, - anon_sym_implicits, - STATE(1527), 1, - sym_nopanic, - ACTIONS(2641), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [44098] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2625), 1, anon_sym_nopanic, - ACTIONS(2629), 1, - anon_sym_COMMA, - STATE(1058), 1, + STATE(1099), 1, aux_sym_function_repeat1, - STATE(1560), 1, + STATE(1493), 1, sym_nopanic, - ACTIONS(2647), 2, + ACTIONS(2665), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44118] = 2, + [44087] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1658), 6, + ACTIONS(1644), 6, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44130] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2523), 1, - anon_sym_BANG, - ACTIONS(2527), 1, - anon_sym_LPAREN, - ACTIONS(2649), 1, - anon_sym_COLON_COLON, - ACTIONS(2298), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [44148] = 6, + [44099] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2625), 1, + ACTIONS(2639), 1, anon_sym_nopanic, - ACTIONS(2629), 1, - anon_sym_COMMA, - STATE(1082), 1, - aux_sym_function_repeat1, - STATE(1477), 1, + ACTIONS(2669), 1, + anon_sym_DASH_GT, + ACTIONS(2671), 1, + anon_sym_implicits, + STATE(1475), 1, sym_nopanic, - ACTIONS(2651), 2, + ACTIONS(2667), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44168] = 6, + [44119] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2625), 1, - anon_sym_nopanic, - ACTIONS(2629), 1, + ACTIONS(2637), 1, anon_sym_COMMA, - STATE(1064), 1, - aux_sym_function_repeat1, - STATE(1515), 1, - sym_nopanic, - ACTIONS(2653), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [44188] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2625), 1, + ACTIONS(2639), 1, anon_sym_nopanic, - ACTIONS(2629), 1, - anon_sym_COMMA, - STATE(1082), 1, + STATE(1099), 1, aux_sym_function_repeat1, - STATE(1571), 1, + STATE(1532), 1, sym_nopanic, - ACTIONS(2655), 2, + ACTIONS(2673), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44208] = 7, + [44139] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2537), 1, - anon_sym_LT2, ACTIONS(2637), 1, - anon_sym_COLON_COLON, - ACTIONS(2657), 1, anon_sym_COMMA, - ACTIONS(2659), 1, - anon_sym_GT, - STATE(930), 1, - sym_type_arguments, - STATE(1385), 1, - aux_sym_type_parameters_repeat1, - [44230] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2625), 1, + ACTIONS(2639), 1, anon_sym_nopanic, - ACTIONS(2629), 1, - anon_sym_COMMA, - STATE(1046), 1, + STATE(1071), 1, aux_sym_function_repeat1, - STATE(1577), 1, + STATE(1505), 1, sym_nopanic, - ACTIONS(2661), 2, + ACTIONS(2675), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44250] = 2, + [44159] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(1666), 6, @@ -67895,6827 +69503,6782 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_GT, anon_sym_PIPE, - [44262] = 6, + [44171] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2625), 1, - anon_sym_nopanic, - ACTIONS(2629), 1, + ACTIONS(2637), 1, anon_sym_COMMA, - STATE(1082), 1, + ACTIONS(2639), 1, + anon_sym_nopanic, + STATE(1065), 1, aux_sym_function_repeat1, - STATE(1512), 1, + STATE(1513), 1, sym_nopanic, - ACTIONS(2663), 2, + ACTIONS(2677), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44282] = 2, + [44191] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2665), 5, + ACTIONS(2639), 1, + anon_sym_nopanic, + ACTIONS(2681), 1, + anon_sym_DASH_GT, + ACTIONS(2683), 1, + anon_sym_implicits, + STATE(1575), 1, + sym_nopanic, + ACTIONS(2679), 2, anon_sym_LBRACE, - anon_sym_of, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [44293] = 2, + [44211] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2318), 1, + anon_sym_PIPE, + ACTIONS(2320), 1, + anon_sym_COLON, + ACTIONS(2685), 1, + anon_sym_COLON_COLON, + ACTIONS(2356), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44228] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2687), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [44239] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2667), 5, + ACTIONS(2689), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [44304] = 5, + [44250] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1398), 1, + ACTIONS(2639), 1, + anon_sym_nopanic, + ACTIONS(2693), 1, + anon_sym_implicits, + STATE(1514), 1, + sym_nopanic, + ACTIONS(2691), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [44267] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2573), 1, anon_sym_RPAREN, - ACTIONS(2669), 1, - anon_sym_COMMA, - STATE(1416), 1, - aux_sym_parameters_repeat1, - ACTIONS(2298), 2, + ACTIONS(2695), 1, anon_sym_COLON, + ACTIONS(2697), 1, + anon_sym_COMMA, + ACTIONS(2699), 1, anon_sym_PIPE, - [44321] = 6, + STATE(1387), 1, + aux_sym_closure_parameters_repeat1, + [44286] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2671), 1, - anon_sym_of, - ACTIONS(2673), 1, + ACTIONS(2701), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [44297] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2318), 1, + anon_sym_PIPE, + ACTIONS(2320), 1, anon_sym_COLON, - ACTIONS(2675), 1, + ACTIONS(2322), 1, + anon_sym_BANG, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2703), 1, + anon_sym_COLON_COLON, + [44316] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2705), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, anon_sym_EQ, - ACTIONS(2677), 1, + anon_sym_LPAREN, + [44327] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2709), 1, + anon_sym_COLON_COLON, + ACTIONS(2711), 1, + anon_sym_as, + ACTIONS(2707), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [44342] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2713), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [44353] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2715), 1, + anon_sym_LBRACE, + ACTIONS(2717), 1, + anon_sym_SEMI, + ACTIONS(2719), 1, anon_sym_LT, - STATE(1436), 1, + STATE(620), 1, + sym_declaration_list, + STATE(1335), 1, sym_type_parameters, - [44340] = 5, + [44372] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2625), 1, - anon_sym_nopanic, - ACTIONS(2681), 1, - anon_sym_implicits, - STATE(1469), 1, - sym_nopanic, - ACTIONS(2679), 2, + ACTIONS(2721), 1, + anon_sym_COMMA, + ACTIONS(2723), 1, + anon_sym_RPAREN, + STATE(1345), 1, + aux_sym_parameters_repeat1, + ACTIONS(2318), 2, + anon_sym_COLON, + anon_sym_PIPE, + [44389] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2729), 1, + anon_sym_as, + ACTIONS(2725), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [44404] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(2731), 1, anon_sym_LBRACE, + ACTIONS(2733), 1, anon_sym_SEMI, - [44357] = 2, + STATE(587), 1, + sym_field_declaration_list, + STATE(1343), 1, + sym_type_parameters, + [44423] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2683), 5, + ACTIONS(2735), 5, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_implicits, anon_sym_nopanic, - [44368] = 6, + [44434] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2711), 1, + anon_sym_as, + ACTIONS(2737), 1, + anon_sym_COLON_COLON, + ACTIONS(2707), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [44449] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2711), 1, + anon_sym_as, + ACTIONS(2739), 1, + anon_sym_COLON_COLON, + ACTIONS(2707), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [44464] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2741), 1, + anon_sym_RBRACE, + ACTIONS(2743), 1, + anon_sym_COMMA, + ACTIONS(2745), 1, + sym_identifier, + ACTIONS(2747), 1, + sym_mutable_specifier, + STATE(1410), 1, + sym_field_pattern, + [44483] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, + ACTIONS(2719), 1, anon_sym_LT, - ACTIONS(2685), 1, - anon_sym_of, - ACTIONS(2687), 1, - anon_sym_COLON, - ACTIONS(2689), 1, - anon_sym_EQ, - STATE(1537), 1, + ACTIONS(2749), 1, + anon_sym_LBRACE, + ACTIONS(2751), 1, + anon_sym_SEMI, + STATE(310), 1, + sym_field_declaration_list, + STATE(1331), 1, sym_type_parameters, - [44387] = 6, + [44502] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2753), 1, + anon_sym_POUND, + ACTIONS(1546), 2, + anon_sym_pub, + sym_identifier, + STATE(1098), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44517] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2758), 1, + anon_sym_COMMA, + STATE(1099), 1, + aux_sym_function_repeat1, + ACTIONS(2756), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_nopanic, + [44532] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2745), 1, + sym_identifier, + ACTIONS(2747), 1, + sym_mutable_specifier, + ACTIONS(2761), 1, + anon_sym_RBRACE, + ACTIONS(2763), 1, + anon_sym_COMMA, + STATE(1418), 1, + sym_field_pattern, + [44551] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, + ACTIONS(2719), 1, anon_sym_LT, - ACTIONS(2691), 1, + ACTIONS(2765), 1, anon_sym_LBRACE, - ACTIONS(2693), 1, + ACTIONS(2767), 1, anon_sym_SEMI, - STATE(287), 1, + STATE(284), 1, sym_declaration_list, - STATE(1311), 1, + STATE(1319), 1, sym_type_parameters, - [44406] = 4, + [44570] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2695), 1, - anon_sym_POUND, - ACTIONS(1542), 2, - anon_sym_pub, - sym_identifier, - STATE(1073), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [44421] = 2, + ACTIONS(2715), 1, + anon_sym_LBRACE, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(2769), 1, + anon_sym_SEMI, + STATE(604), 1, + sym_declaration_list, + STATE(1403), 1, + sym_type_parameters, + [44589] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2571), 1, + anon_sym_LT2, + ACTIONS(2643), 1, + anon_sym_COLON_COLON, + STATE(937), 1, + sym_type_arguments, + ACTIONS(2771), 2, + anon_sym_COMMA, + anon_sym_GT, + [44606] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2698), 5, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(2731), 1, anon_sym_LBRACE, - anon_sym_of, + ACTIONS(2773), 1, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [44432] = 5, + STATE(619), 1, + sym_field_declaration_list, + STATE(1404), 1, + sym_type_parameters, + [44625] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2338), 1, + ACTIONS(2756), 5, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(2700), 1, - anon_sym_RBRACK, - ACTIONS(2703), 1, - anon_sym_COLON_COLON, - ACTIONS(2298), 2, anon_sym_COMMA, - anon_sym_PIPE, - [44449] = 2, + anon_sym_RPAREN, + anon_sym_nopanic, + [44636] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2705), 5, + ACTIONS(2775), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [44460] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2537), 1, - anon_sym_LT2, - ACTIONS(2637), 1, - anon_sym_COLON_COLON, - STATE(930), 1, - sym_type_arguments, - ACTIONS(2707), 2, - anon_sym_COMMA, - anon_sym_GT, - [44477] = 6, + [44647] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2709), 1, + ACTIONS(2777), 5, anon_sym_LBRACE, - ACTIONS(2711), 1, + anon_sym_of, anon_sym_SEMI, - STATE(526), 1, - sym_declaration_list, - STATE(1325), 1, - sym_type_parameters, - [44496] = 6, + anon_sym_EQ, + anon_sym_LPAREN, + [44658] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, + ACTIONS(2719), 1, anon_sym_LT, - ACTIONS(2713), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2715), 1, + ACTIONS(2779), 1, anon_sym_SEMI, - STATE(570), 1, + STATE(280), 1, sym_field_declaration_list, - STATE(1333), 1, + STATE(1380), 1, sym_type_parameters, - [44515] = 6, + [44677] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2717), 1, - anon_sym_RBRACE, ACTIONS(2719), 1, - anon_sym_COMMA, - ACTIONS(2721), 1, - sym_identifier, - ACTIONS(2723), 1, - sym_mutable_specifier, - STATE(1400), 1, - sym_field_pattern, - [44534] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2721), 1, - sym_identifier, - ACTIONS(2723), 1, - sym_mutable_specifier, - ACTIONS(2725), 1, - anon_sym_RBRACE, - ACTIONS(2727), 1, - anon_sym_COMMA, - STATE(1408), 1, - sym_field_pattern, - [44553] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2731), 1, - anon_sym_COMMA, - STATE(1082), 1, - aux_sym_function_repeat1, - ACTIONS(2729), 3, + anon_sym_LT, + ACTIONS(2765), 1, anon_sym_LBRACE, + ACTIONS(2781), 1, anon_sym_SEMI, - anon_sym_nopanic, - [44568] = 6, + STATE(292), 1, + sym_declaration_list, + STATE(1356), 1, + sym_type_parameters, + [44696] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2734), 1, + ACTIONS(2783), 5, anon_sym_LBRACE, - ACTIONS(2736), 1, + anon_sym_of, anon_sym_SEMI, - STATE(272), 1, - sym_field_declaration_list, - STATE(1315), 1, - sym_type_parameters, - [44587] = 2, + anon_sym_EQ, + anon_sym_LPAREN, + [44707] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2738), 5, + ACTIONS(2785), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [44598] = 5, + [44718] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2537), 1, - anon_sym_LT2, - ACTIONS(2637), 1, + ACTIONS(2324), 1, anon_sym_COLON_COLON, - STATE(930), 1, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2460), 1, + anon_sym_LBRACE, + ACTIONS(2464), 1, + anon_sym_BANG, + STATE(937), 1, sym_type_arguments, - ACTIONS(2740), 2, - anon_sym_COMMA, - anon_sym_GT, - [44615] = 6, + [44737] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2519), 1, - anon_sym_RPAREN, - ACTIONS(2742), 1, - anon_sym_COLON, - ACTIONS(2744), 1, + ACTIONS(2571), 1, + anon_sym_LT2, + ACTIONS(2643), 1, + anon_sym_COLON_COLON, + STATE(937), 1, + sym_type_arguments, + ACTIONS(2787), 2, anon_sym_COMMA, - ACTIONS(2746), 1, - anon_sym_PIPE, - STATE(1339), 1, - aux_sym_closure_parameters_repeat1, - [44634] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2709), 1, - anon_sym_LBRACE, - ACTIONS(2748), 1, - anon_sym_SEMI, - STATE(605), 1, - sym_declaration_list, - STATE(1388), 1, - sym_type_parameters, - [44653] = 6, + anon_sym_GT, + [44754] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2713), 1, + ACTIONS(2789), 5, anon_sym_LBRACE, - ACTIONS(2750), 1, + anon_sym_of, anon_sym_SEMI, - STATE(603), 1, - sym_field_declaration_list, - STATE(1389), 1, - sym_type_parameters, - [44672] = 4, + anon_sym_EQ, + anon_sym_LPAREN, + [44765] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2752), 1, + ACTIONS(2423), 1, anon_sym_POUND, - ACTIONS(1542), 2, + ACTIONS(2791), 1, sym_numeric_literal, + ACTIONS(2793), 1, sym_identifier, - STATE(1089), 2, + STATE(1118), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44687] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2757), 1, - anon_sym_COLON_COLON, - ACTIONS(2759), 1, - anon_sym_as, - ACTIONS(2755), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [44702] = 2, + [44782] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2761), 5, - anon_sym_LBRACE, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(2795), 1, anon_sym_of, - anon_sym_SEMI, + ACTIONS(2797), 1, + anon_sym_COLON, + ACTIONS(2799), 1, anon_sym_EQ, - anon_sym_LPAREN, - [44713] = 4, + STATE(1573), 1, + sym_type_parameters, + [44801] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2765), 1, + ACTIONS(2571), 1, + anon_sym_LT2, + ACTIONS(2643), 1, anon_sym_COLON_COLON, - ACTIONS(2767), 1, - anon_sym_as, - ACTIONS(2763), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + STATE(937), 1, + sym_type_arguments, + ACTIONS(2801), 2, anon_sym_COMMA, - [44728] = 4, + anon_sym_GT, + [44818] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2759), 1, - anon_sym_as, - ACTIONS(2769), 1, - anon_sym_COLON_COLON, - ACTIONS(2755), 3, - anon_sym_RBRACE, + ACTIONS(2803), 1, + anon_sym_POUND, + ACTIONS(1546), 2, + sym_numeric_literal, + sym_identifier, + STATE(1118), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44833] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2806), 5, + anon_sym_LBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_COMMA, - [44743] = 4, + anon_sym_EQ, + anon_sym_LPAREN, + [44844] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2759), 1, - anon_sym_as, - ACTIONS(2771), 1, - anon_sym_COLON_COLON, - ACTIONS(2755), 3, - anon_sym_RBRACE, + ACTIONS(2808), 5, + anon_sym_LBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_COMMA, - [44758] = 2, + anon_sym_EQ, + anon_sym_LPAREN, + [44855] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2773), 5, + ACTIONS(2810), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [44769] = 5, + [44866] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2298), 1, - anon_sym_PIPE, - ACTIONS(2300), 1, - anon_sym_COLON, - ACTIONS(2775), 1, - anon_sym_COLON_COLON, - ACTIONS(2338), 2, + ACTIONS(2259), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + anon_sym_STAR, + STATE(1246), 1, + sym_use_list, + ACTIONS(2617), 2, + sym_identifier, + sym_super, + [44883] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2745), 1, + sym_identifier, + ACTIONS(2747), 1, + sym_mutable_specifier, + ACTIONS(2812), 1, + anon_sym_RBRACE, + ACTIONS(2814), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [44786] = 2, + STATE(1252), 1, + sym_field_pattern, + [44902] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2777), 5, + ACTIONS(2639), 1, + anon_sym_nopanic, + ACTIONS(2818), 1, + anon_sym_implicits, + STATE(1466), 1, + sym_nopanic, + ACTIONS(2816), 2, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [44797] = 5, + [44919] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2779), 1, - anon_sym_COMMA, - ACTIONS(2781), 1, + ACTIONS(1378), 1, anon_sym_RPAREN, - STATE(1224), 1, + ACTIONS(2820), 1, + anon_sym_COMMA, + STATE(1263), 1, aux_sym_parameters_repeat1, - ACTIONS(2298), 2, + ACTIONS(2318), 2, anon_sym_COLON, anon_sym_PIPE, - [44814] = 2, + [44936] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2783), 5, + ACTIONS(2822), 5, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_implicits, anon_sym_nopanic, - [44825] = 5, + [44947] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2625), 1, - anon_sym_nopanic, - ACTIONS(2787), 1, - anon_sym_implicits, - STATE(1574), 1, - sym_nopanic, - ACTIONS(2785), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [44842] = 2, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(2824), 1, + anon_sym_of, + ACTIONS(2826), 1, + anon_sym_COLON, + ACTIONS(2828), 1, + anon_sym_EQ, + STATE(1445), 1, + sym_type_parameters, + [44966] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2789), 5, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [44853] = 6, + ACTIONS(2745), 1, + sym_identifier, + ACTIONS(2747), 1, + sym_mutable_specifier, + ACTIONS(2830), 1, + anon_sym_RBRACE, + ACTIONS(2832), 1, + anon_sym_COMMA, + STATE(1270), 1, + sym_field_pattern, + [44985] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2734), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2356), 1, anon_sym_SEMI, - STATE(260), 1, - sym_field_declaration_list, - STATE(1256), 1, - sym_type_parameters, - [44872] = 6, + ACTIONS(2834), 1, + anon_sym_RBRACK, + ACTIONS(2837), 1, + anon_sym_COLON_COLON, + ACTIONS(2318), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [45002] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2298), 1, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2839), 1, + sym_identifier, + ACTIONS(2841), 1, + sym_super, + STATE(935), 1, + sym_type_arguments, + [45018] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2843), 1, + anon_sym_COMMA, + ACTIONS(2845), 1, + anon_sym_RPAREN, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(2300), 1, - anon_sym_COLON, - ACTIONS(2302), 1, - anon_sym_BANG, - ACTIONS(2306), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - anon_sym_COLON_COLON, - [44891] = 6, + STATE(1304), 1, + aux_sym_slice_pattern_repeat1, + [45034] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, + ACTIONS(2719), 1, anon_sym_LT, - ACTIONS(2691), 1, - anon_sym_LBRACE, - ACTIONS(2795), 1, - anon_sym_SEMI, - STATE(316), 1, - sym_declaration_list, - STATE(1258), 1, + ACTIONS(2849), 1, + anon_sym_of, + ACTIONS(2851), 1, + anon_sym_EQ, + STATE(1441), 1, sym_type_parameters, - [44910] = 2, + [45050] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2729), 5, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(2853), 1, + anon_sym_COLON_COLON, + ACTIONS(2855), 1, + anon_sym_LPAREN, + ACTIONS(2350), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_nopanic, - [44921] = 5, + [45064] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2857), 1, + anon_sym_COLON_COLON, + ACTIONS(2318), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45076] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2537), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2637), 1, + ACTIONS(2342), 1, + anon_sym_BANG, + ACTIONS(2859), 1, anon_sym_COLON_COLON, - STATE(930), 1, + STATE(944), 1, sym_type_arguments, - ACTIONS(2797), 2, - anon_sym_COMMA, - anon_sym_GT, - [44938] = 5, + [45092] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, - anon_sym_POUND, - ACTIONS(2799), 1, - sym_numeric_literal, - ACTIONS(2801), 1, + ACTIONS(2571), 1, + anon_sym_LT2, + ACTIONS(2841), 1, + sym_super, + ACTIONS(2861), 1, sym_identifier, - STATE(1089), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [44955] = 6, + STATE(935), 1, + sym_type_arguments, + [45108] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2304), 1, - anon_sym_COLON_COLON, - ACTIONS(2308), 1, + ACTIONS(2571), 1, anon_sym_LT2, - ACTIONS(2432), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_BANG, - STATE(930), 1, + ACTIONS(2841), 1, + sym_super, + ACTIONS(2861), 1, + sym_identifier, + STATE(933), 1, sym_type_arguments, - [44974] = 2, + [45124] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2803), 5, - anon_sym_LBRACE, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(2571), 1, + anon_sym_LT2, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(2865), 1, + sym_super, + STATE(934), 1, + sym_type_arguments, + [45140] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(2799), 1, anon_sym_EQ, - anon_sym_LPAREN, - [44985] = 2, + ACTIONS(2867), 1, + anon_sym_SEMI, + STATE(1583), 1, + sym_type_parameters, + [45156] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2805), 5, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(2869), 1, anon_sym_LBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, + STATE(314), 1, + sym_enum_variant_list, + STATE(1569), 1, + sym_type_parameters, + [45172] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(2871), 1, anon_sym_LPAREN, - [44996] = 2, + STATE(1073), 1, + sym_parameters, + STATE(1567), 1, + sym_type_parameters, + [45188] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2807), 5, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [45007] = 6, + ACTIONS(2873), 1, + anon_sym_if, + STATE(104), 2, + sym_block, + sym_if_expression, + [45202] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2721), 1, - sym_identifier, - ACTIONS(2723), 1, - sym_mutable_specifier, - ACTIONS(2809), 1, - anon_sym_RBRACE, - ACTIONS(2811), 1, - anon_sym_COMMA, - STATE(1323), 1, - sym_field_pattern, - [45026] = 2, + ACTIONS(2855), 1, + anon_sym_LPAREN, + ACTIONS(2875), 1, + anon_sym_COLON_COLON, + ACTIONS(2350), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [45216] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2813), 5, - anon_sym_LBRACE, + ACTIONS(2847), 1, + anon_sym_PIPE, + ACTIONS(2877), 1, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [45037] = 5, + ACTIONS(2879), 1, + anon_sym_COLON, + ACTIONS(2881), 1, + anon_sym_EQ, + [45232] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2251), 1, + ACTIONS(2259), 1, anon_sym_LBRACE, - ACTIONS(2575), 1, - anon_sym_STAR, - STATE(1308), 1, + STATE(1364), 1, sym_use_list, - ACTIONS(2577), 2, + ACTIONS(2883), 2, sym_identifier, sym_super, - [45054] = 6, + [45246] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2721), 1, + ACTIONS(2695), 1, + anon_sym_COLON, + ACTIONS(2697), 1, + anon_sym_COMMA, + ACTIONS(2699), 1, + anon_sym_PIPE, + STATE(1387), 1, + aux_sym_closure_parameters_repeat1, + [45262] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2745), 1, sym_identifier, - ACTIONS(2723), 1, + ACTIONS(2747), 1, sym_mutable_specifier, - ACTIONS(2815), 1, + ACTIONS(2885), 1, anon_sym_RBRACE, - ACTIONS(2817), 1, - anon_sym_COMMA, - STATE(1348), 1, + STATE(1521), 1, sym_field_pattern, - [45073] = 5, + [45278] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2595), 1, + anon_sym_LBRACE, + ACTIONS(2599), 1, + anon_sym_LBRACK, + ACTIONS(2605), 1, + anon_sym_LPAREN, + STATE(116), 1, + sym_delim_token_tree, + [45294] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2537), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2607), 1, + ACTIONS(2613), 1, sym_super, - ACTIONS(2819), 1, + ACTIONS(2887), 1, sym_identifier, - STATE(915), 1, + STATE(934), 1, sym_type_arguments, - [45089] = 4, + [45310] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(259), 1, + ACTIONS(2595), 1, anon_sym_LBRACE, - ACTIONS(2821), 1, - anon_sym_if, - STATE(837), 2, - sym_block, - sym_if_expression, - [45103] = 5, + ACTIONS(2599), 1, + anon_sym_LBRACK, + ACTIONS(2605), 1, + anon_sym_LPAREN, + STATE(122), 1, + sym_delim_token_tree, + [45326] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2823), 1, - anon_sym_RBRACK, - ACTIONS(2825), 1, - anon_sym_COMMA, - ACTIONS(2827), 1, - anon_sym_PIPE, - STATE(1363), 1, - aux_sym_slice_pattern_repeat1, - [45119] = 5, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2617), 1, + sym_super, + ACTIONS(2889), 1, + sym_identifier, + STATE(466), 1, + sym_type_arguments, + [45342] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2721), 1, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2841), 1, + sym_super, + ACTIONS(2891), 1, sym_identifier, - ACTIONS(2723), 1, + STATE(935), 1, + sym_type_arguments, + [45358] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2841), 1, + sym_super, + ACTIONS(2891), 1, + sym_identifier, + STATE(933), 1, + sym_type_arguments, + [45374] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2865), 1, + sym_super, + ACTIONS(2893), 1, + sym_identifier, + STATE(934), 1, + sym_type_arguments, + [45390] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2745), 1, + sym_identifier, + ACTIONS(2747), 1, sym_mutable_specifier, - ACTIONS(2829), 1, + ACTIONS(2895), 1, anon_sym_RBRACE, - STATE(1496), 1, + STATE(1521), 1, sym_field_pattern, - [45135] = 5, + [45406] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2841), 1, + sym_super, + ACTIONS(2897), 1, + sym_identifier, + STATE(935), 1, + sym_type_arguments, + [45422] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2831), 1, + ACTIONS(2841), 1, + sym_super, + ACTIONS(2897), 1, sym_identifier, - ACTIONS(2833), 1, + STATE(933), 1, + sym_type_arguments, + [45438] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2865), 1, sym_super, - STATE(916), 1, + ACTIONS(2899), 1, + sym_identifier, + STATE(934), 1, sym_type_arguments, - [45151] = 5, + [45454] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2831), 1, + STATE(934), 1, + sym_type_arguments, + ACTIONS(2613), 2, sym_identifier, - ACTIONS(2833), 1, sym_super, - STATE(922), 1, - sym_type_arguments, - [45167] = 5, + [45468] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2835), 1, + STATE(933), 1, + sym_type_arguments, + ACTIONS(2617), 2, sym_identifier, - ACTIONS(2837), 1, sym_super, - STATE(915), 1, - sym_type_arguments, - [45183] = 5, + [45482] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2318), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2839), 1, + ACTIONS(2901), 2, anon_sym_COMMA, - ACTIONS(2841), 1, anon_sym_RPAREN, - STATE(1357), 1, - aux_sym_tuple_pattern_repeat1, - [45199] = 5, + [45494] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2819), 1, + ACTIONS(2897), 1, sym_identifier, - ACTIONS(2837), 1, + ACTIONS(2903), 1, sym_super, - STATE(915), 1, + STATE(935), 1, sym_type_arguments, - [45215] = 5, + [45510] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2833), 1, - sym_super, - ACTIONS(2843), 1, + ACTIONS(2897), 1, sym_identifier, - STATE(922), 1, + ACTIONS(2903), 1, + sym_super, + STATE(933), 1, sym_type_arguments, - [45231] = 5, + [45526] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_PIPE, - ACTIONS(2845), 1, - anon_sym_SEMI, - ACTIONS(2847), 1, - anon_sym_COLON, - ACTIONS(2849), 1, - anon_sym_EQ, - [45247] = 5, + ACTIONS(2907), 1, + anon_sym_COMMA, + STATE(1164), 1, + aux_sym_slice_pattern_repeat1, + ACTIONS(2905), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + [45540] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2833), 1, - sym_super, - ACTIONS(2843), 1, - sym_identifier, - STATE(916), 1, - sym_type_arguments, - [45263] = 5, + ACTIONS(2847), 1, + anon_sym_PIPE, + ACTIONS(2905), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [45552] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2831), 1, + ACTIONS(2899), 1, sym_identifier, - ACTIONS(2851), 1, + ACTIONS(2910), 1, sym_super, - STATE(916), 1, + STATE(934), 1, sym_type_arguments, - [45279] = 5, + [45568] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2831), 1, + STATE(935), 1, + sym_type_arguments, + ACTIONS(2617), 2, sym_identifier, - ACTIONS(2851), 1, sym_super, - STATE(922), 1, - sym_type_arguments, - [45295] = 5, + [45582] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2835), 1, - sym_identifier, - ACTIONS(2853), 1, - sym_super, - STATE(915), 1, - sym_type_arguments, - [45311] = 3, + ACTIONS(2847), 1, + anon_sym_PIPE, + ACTIONS(2912), 1, + anon_sym_RBRACK, + ACTIONS(2914), 1, + anon_sym_COMMA, + STATE(1280), 1, + aux_sym_slice_pattern_repeat1, + [45598] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2298), 2, - anon_sym_COLON, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(2855), 2, + ACTIONS(2916), 1, anon_sym_COMMA, + ACTIONS(2918), 1, anon_sym_RPAREN, - [45323] = 5, + STATE(1277), 1, + aux_sym_tuple_pattern_repeat1, + [45614] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2833), 1, - sym_super, - ACTIONS(2857), 1, + ACTIONS(2839), 1, sym_identifier, - STATE(916), 1, - sym_type_arguments, - [45339] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2833), 1, + ACTIONS(2841), 1, sym_super, - ACTIONS(2857), 1, - sym_identifier, - STATE(922), 1, + STATE(933), 1, sym_type_arguments, - [45355] = 5, + [45630] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2837), 1, + ACTIONS(2865), 1, sym_super, - ACTIONS(2859), 1, + ACTIONS(2920), 1, sym_identifier, - STATE(915), 1, + STATE(934), 1, sym_type_arguments, - [45371] = 5, + [45646] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2861), 1, + ACTIONS(2922), 1, anon_sym_LBRACE, - ACTIONS(2863), 1, + ACTIONS(2924), 1, anon_sym_LBRACK, - ACTIONS(2865), 1, + ACTIONS(2926), 1, anon_sym_LPAREN, - STATE(1240), 1, + STATE(1249), 1, sym_delim_token_tree, - [45387] = 5, + [45662] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2861), 1, + ACTIONS(2922), 1, anon_sym_LBRACE, - ACTIONS(2863), 1, + ACTIONS(2924), 1, anon_sym_LBRACK, - ACTIONS(2865), 1, + ACTIONS(2926), 1, anon_sym_LPAREN, - STATE(1220), 1, + STATE(1244), 1, sym_delim_token_tree, - [45403] = 4, + [45678] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2402), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2567), 2, + anon_sym_COLON, + anon_sym_PIPE, + [45690] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2865), 1, + sym_super, + ACTIONS(2928), 1, + sym_identifier, + STATE(934), 1, + sym_type_arguments, + [45706] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2350), 1, + anon_sym_SEMI, + ACTIONS(2930), 1, + anon_sym_RBRACK, + ACTIONS(2318), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [45720] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2841), 1, + sym_super, + ACTIONS(2933), 1, + sym_identifier, + STATE(933), 1, + sym_type_arguments, + [45736] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2577), 1, + anon_sym_PIPE, + ACTIONS(2935), 1, + anon_sym_SEMI, + ACTIONS(2937), 1, + anon_sym_COLON, + ACTIONS(2939), 1, + anon_sym_EQ, + [45752] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(886), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, + ACTIONS(2941), 1, anon_sym_if, - STATE(354), 2, + STATE(347), 2, sym_block, sym_if_expression, - [45417] = 5, + [45766] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2324), 1, - anon_sym_BANG, - ACTIONS(2537), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2869), 1, - anon_sym_COLON_COLON, - STATE(924), 1, + ACTIONS(2841), 1, + sym_super, + ACTIONS(2933), 1, + sym_identifier, + STATE(935), 1, sym_type_arguments, - [45433] = 5, + [45782] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2342), 1, + anon_sym_BANG, + ACTIONS(2571), 1, anon_sym_LT2, - ACTIONS(2326), 1, + ACTIONS(2943), 1, anon_sym_COLON_COLON, - ACTIONS(2871), 1, - anon_sym_BANG, - STATE(924), 1, + STATE(944), 1, sym_type_arguments, - [45449] = 5, + [45798] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2537), 1, + ACTIONS(2571), 1, anon_sym_LT2, - ACTIONS(2577), 1, + ACTIONS(2617), 1, sym_super, - ACTIONS(2843), 1, + ACTIONS(2933), 1, sym_identifier, - STATE(916), 1, + STATE(935), 1, sym_type_arguments, - [45465] = 5, + [45814] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2537), 1, + ACTIONS(2571), 1, anon_sym_LT2, - ACTIONS(2577), 1, + ACTIONS(2617), 1, sym_super, - ACTIONS(2843), 1, + ACTIONS(2933), 1, sym_identifier, - STATE(922), 1, + STATE(933), 1, sym_type_arguments, - [45481] = 3, + [45830] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2403), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2503), 2, - anon_sym_COLON, - anon_sym_PIPE, - [45493] = 5, + ACTIONS(2571), 1, + anon_sym_LT2, + ACTIONS(2613), 1, + sym_super, + ACTIONS(2928), 1, + sym_identifier, + STATE(934), 1, + sym_type_arguments, + [45846] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2873), 1, + ACTIONS(2945), 1, anon_sym_LT2, - ACTIONS(2875), 1, + ACTIONS(2947), 1, sym_identifier, - ACTIONS(2877), 1, + ACTIONS(2949), 1, sym_super, - STATE(667), 1, + STATE(643), 1, sym_type_arguments, - [45509] = 5, + [45862] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2873), 1, + ACTIONS(2945), 1, anon_sym_LT2, - ACTIONS(2875), 1, + ACTIONS(2947), 1, sym_identifier, - ACTIONS(2877), 1, + ACTIONS(2949), 1, sym_super, - STATE(674), 1, + STATE(641), 1, sym_type_arguments, - [45525] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2879), 1, - anon_sym_of, - ACTIONS(2881), 1, - anon_sym_EQ, - STATE(1433), 1, - sym_type_parameters, - [45541] = 5, + [45878] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2883), 1, + ACTIONS(2951), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_LBRACK, - ACTIONS(2887), 1, + ACTIONS(2955), 1, anon_sym_LPAREN, - STATE(237), 1, + STATE(248), 1, sym_delim_token_tree, - [45557] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2889), 1, - anon_sym_of, - ACTIONS(2891), 1, - anon_sym_EQ, - STATE(1458), 1, - sym_type_parameters, - [45573] = 5, + [45894] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2893), 1, + ACTIONS(2957), 1, sym_identifier, - ACTIONS(2895), 1, + ACTIONS(2959), 1, sym_super, - STATE(915), 1, + STATE(934), 1, sym_type_arguments, - [45589] = 5, + [45910] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2883), 1, + ACTIONS(2951), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, + ACTIONS(2953), 1, anon_sym_LBRACK, - ACTIONS(2887), 1, + ACTIONS(2955), 1, anon_sym_LPAREN, - STATE(234), 1, + STATE(245), 1, sym_delim_token_tree, - [45605] = 5, + [45926] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2011), 1, + anon_sym_GT, + ACTIONS(2961), 1, + anon_sym_COMMA, + ACTIONS(2963), 1, + anon_sym_COLON_COLON, + STATE(1352), 1, + aux_sym_type_parameters_repeat1, + [45942] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2011), 1, + anon_sym_GT, + ACTIONS(2360), 1, + anon_sym_COLON_COLON, + ACTIONS(2961), 1, + anon_sym_COMMA, + STATE(1352), 1, + aux_sym_type_parameters_repeat1, + [45958] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2833), 1, + ACTIONS(2617), 1, sym_super, - ACTIONS(2897), 1, + ACTIONS(2889), 1, sym_identifier, - STATE(922), 1, + STATE(460), 1, sym_type_arguments, - [45621] = 3, + [45974] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2899), 1, + ACTIONS(2965), 1, anon_sym_COLON, - ACTIONS(2529), 3, + ACTIONS(2577), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [45633] = 5, + [45986] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2721), 1, + ACTIONS(2745), 1, sym_identifier, - ACTIONS(2723), 1, + ACTIONS(2747), 1, sym_mutable_specifier, - ACTIONS(2901), 1, + ACTIONS(2967), 1, anon_sym_RBRACE, - STATE(1496), 1, + STATE(1521), 1, sym_field_pattern, - [45649] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2833), 1, - sym_super, - ACTIONS(2897), 1, - sym_identifier, - STATE(916), 1, - sym_type_arguments, - [45665] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2903), 1, - anon_sym_LBRACE, - STATE(262), 1, - sym_enum_variant_list, - STATE(1456), 1, - sym_type_parameters, - [45681] = 5, + [46002] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2721), 1, + ACTIONS(2745), 1, sym_identifier, - ACTIONS(2723), 1, + ACTIONS(2747), 1, sym_mutable_specifier, - ACTIONS(2905), 1, + ACTIONS(2969), 1, anon_sym_RBRACE, - STATE(1496), 1, + STATE(1521), 1, sym_field_pattern, - [45697] = 5, + [46018] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2721), 1, + ACTIONS(2745), 1, sym_identifier, - ACTIONS(2723), 1, + ACTIONS(2747), 1, sym_mutable_specifier, - ACTIONS(2907), 1, + ACTIONS(2971), 1, anon_sym_RBRACE, - STATE(1496), 1, + STATE(1521), 1, sym_field_pattern, - [45713] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2334), 1, - anon_sym_COLON_COLON, - ACTIONS(2909), 1, - anon_sym_COMMA, - ACTIONS(2911), 1, - anon_sym_GT, - STATE(1244), 1, - aux_sym_type_parameters_repeat1, - [45729] = 5, + [46034] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2577), 1, - sym_super, - ACTIONS(2913), 1, - sym_identifier, - STATE(461), 1, - sym_type_arguments, - [45745] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2909), 1, - anon_sym_COMMA, - ACTIONS(2911), 1, - anon_sym_GT, - ACTIONS(2915), 1, + ACTIONS(2344), 1, anon_sym_COLON_COLON, - STATE(1244), 1, - aux_sym_type_parameters_repeat1, - [45761] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2721), 1, - sym_identifier, - ACTIONS(2723), 1, - sym_mutable_specifier, - ACTIONS(2917), 1, - anon_sym_RBRACE, - STATE(1496), 1, - sym_field_pattern, - [45777] = 5, + ACTIONS(2973), 1, + anon_sym_BANG, + STATE(944), 1, + sym_type_arguments, + [46050] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2721), 1, + ACTIONS(2745), 1, sym_identifier, - ACTIONS(2723), 1, + ACTIONS(2747), 1, sym_mutable_specifier, - ACTIONS(2919), 1, + ACTIONS(2975), 1, anon_sym_RBRACE, - STATE(1496), 1, + STATE(1521), 1, sym_field_pattern, - [45793] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - STATE(915), 1, - sym_type_arguments, - ACTIONS(2837), 2, - sym_identifier, - sym_super, - [45807] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - STATE(922), 1, - sym_type_arguments, - ACTIONS(2833), 2, - sym_identifier, - sym_super, - [45821] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2577), 1, - sym_super, - ACTIONS(2913), 1, - sym_identifier, - STATE(462), 1, - sym_type_arguments, - [45837] = 3, + [46066] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2298), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2921), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45849] = 4, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_of, + ACTIONS(2979), 1, + anon_sym_EQ, + STATE(1538), 1, + sym_type_parameters, + [46082] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - STATE(916), 1, - sym_type_arguments, - ACTIONS(2833), 2, - sym_identifier, - sym_super, - [45863] = 5, + ACTIONS(269), 1, + anon_sym_LBRACE, + ACTIONS(2981), 1, + anon_sym_if, + STATE(741), 2, + sym_block, + sym_if_expression, + [46096] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2837), 1, - sym_super, - ACTIONS(2923), 1, - sym_identifier, - STATE(915), 1, - sym_type_arguments, - [45879] = 5, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(2869), 1, + anon_sym_LBRACE, + STATE(279), 1, + sym_enum_variant_list, + STATE(1496), 1, + sym_type_parameters, + [46112] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(2925), 1, + ACTIONS(2983), 1, anon_sym_COMMA, - ACTIONS(2927), 1, + ACTIONS(2985), 1, anon_sym_RPAREN, - STATE(1412), 1, + STATE(1423), 1, aux_sym_slice_pattern_repeat1, - [45895] = 5, + [46128] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(2929), 1, + ACTIONS(2987), 1, anon_sym_COMMA, - ACTIONS(2931), 1, + ACTIONS(2989), 1, anon_sym_RPAREN, - STATE(1391), 1, + STATE(1435), 1, aux_sym_slice_pattern_repeat1, - [45911] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2579), 1, - anon_sym_LBRACE, - ACTIONS(2583), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - STATE(85), 1, - sym_delim_token_tree, - [45927] = 3, + [46144] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2933), 1, + ACTIONS(2360), 1, anon_sym_COLON_COLON, - ACTIONS(2298), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [45939] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2607), 1, - sym_super, - ACTIONS(2935), 1, - sym_identifier, - STATE(915), 1, - sym_type_arguments, - [45955] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2298), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2328), 2, + ACTIONS(2991), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [45967] = 5, + ACTIONS(2993), 1, + anon_sym_GT, + STATE(1381), 1, + aux_sym_type_parameters_repeat1, + [46160] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, + ACTIONS(2719), 1, anon_sym_LT, - ACTIONS(2937), 1, + ACTIONS(2995), 1, anon_sym_LBRACE, - STATE(602), 1, + STATE(607), 1, sym_enum_variant_list, - STATE(1452), 1, + STATE(1463), 1, sym_type_parameters, - [45983] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2579), 1, - anon_sym_LBRACE, - ACTIONS(2583), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_LPAREN, - STATE(82), 1, - sym_delim_token_tree, - [45999] = 5, + [46176] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2742), 1, - anon_sym_COLON, - ACTIONS(2744), 1, + ACTIONS(2963), 1, + anon_sym_COLON_COLON, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(2746), 1, - anon_sym_PIPE, - STATE(1339), 1, - aux_sym_closure_parameters_repeat1, - [46015] = 4, + ACTIONS(2993), 1, + anon_sym_GT, + STATE(1381), 1, + aux_sym_type_parameters_repeat1, + [46192] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2939), 1, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2859), 1, anon_sym_COLON_COLON, - ACTIONS(2941), 1, - anon_sym_LPAREN, - ACTIONS(2328), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [46029] = 4, + ACTIONS(2973), 1, + anon_sym_BANG, + STATE(944), 1, + sym_type_arguments, + [46208] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2251), 1, - anon_sym_LBRACE, - STATE(1335), 1, - sym_use_list, - ACTIONS(2943), 2, + ACTIONS(2745), 1, sym_identifier, - sym_super, - [46043] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2941), 1, - anon_sym_LPAREN, - ACTIONS(2945), 1, - anon_sym_COLON_COLON, - ACTIONS(2328), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [46057] = 5, + ACTIONS(2747), 1, + sym_mutable_specifier, + ACTIONS(2997), 1, + anon_sym_RBRACE, + STATE(1521), 1, + sym_field_pattern, + [46224] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2871), 1, - anon_sym_BANG, - ACTIONS(2947), 1, - anon_sym_COLON_COLON, - STATE(924), 1, + ACTIONS(2841), 1, + sym_super, + ACTIONS(2861), 1, + sym_identifier, + STATE(935), 1, sym_type_arguments, - [46073] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2949), 1, - anon_sym_if, - STATE(90), 2, - sym_block, - sym_if_expression, - [46087] = 5, + [46240] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2318), 1, anon_sym_PIPE, - ACTIONS(2951), 1, - anon_sym_SEMI, - ACTIONS(2953), 1, - anon_sym_COLON, - ACTIONS(2955), 1, - anon_sym_EQ, - [46103] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2957), 1, - anon_sym_LPAREN, - STATE(1045), 1, - sym_parameters, - STATE(1565), 1, - sym_type_parameters, - [46119] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2903), 1, - anon_sym_LBRACE, - STATE(271), 1, - sym_enum_variant_list, - STATE(1553), 1, - sym_type_parameters, - [46135] = 5, + ACTIONS(2999), 1, + anon_sym_COLON_COLON, + ACTIONS(2834), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46254] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2833), 1, - sym_super, - ACTIONS(2959), 1, - sym_identifier, - STATE(916), 1, + STATE(934), 1, sym_type_arguments, - [46151] = 5, + ACTIONS(2865), 2, + sym_identifier, + sym_super, + [46268] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2577), 1, anon_sym_PIPE, - ACTIONS(2961), 1, + ACTIONS(3001), 1, anon_sym_SEMI, - ACTIONS(2963), 1, + ACTIONS(3003), 1, anon_sym_COLON, - ACTIONS(2965), 1, + ACTIONS(3005), 1, anon_sym_EQ, - [46167] = 5, + [46284] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2833), 1, + ACTIONS(2841), 1, sym_super, - ACTIONS(2959), 1, + ACTIONS(2861), 1, sym_identifier, - STATE(922), 1, + STATE(933), 1, sym_type_arguments, - [46183] = 5, + [46300] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2537), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2837), 1, - sym_super, - ACTIONS(2967), 1, + ACTIONS(2863), 1, sym_identifier, - STATE(915), 1, - sym_type_arguments, - [46199] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2837), 1, + ACTIONS(2865), 1, sym_super, - ACTIONS(2967), 1, - sym_identifier, - STATE(915), 1, + STATE(934), 1, sym_type_arguments, - [46215] = 5, + [46316] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(2969), 1, + ACTIONS(3007), 1, anon_sym_COMMA, - ACTIONS(2971), 1, + ACTIONS(3009), 1, anon_sym_RPAREN, - STATE(1397), 1, + STATE(1407), 1, aux_sym_tuple_pattern_repeat1, - [46231] = 5, + [46332] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(2973), 1, + ACTIONS(3011), 1, anon_sym_RBRACK, - ACTIONS(2975), 1, + ACTIONS(3013), 1, anon_sym_COMMA, - STATE(1395), 1, + STATE(1405), 1, aux_sym_slice_pattern_repeat1, - [46247] = 5, + [46348] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, - anon_sym_PIPE, - ACTIONS(2977), 1, - anon_sym_COMMA, - ACTIONS(2979), 1, - anon_sym_RPAREN, - STATE(1287), 1, - aux_sym_slice_pattern_repeat1, - [46263] = 5, + ACTIONS(2328), 1, + anon_sym_LT2, + STATE(933), 1, + sym_type_arguments, + ACTIONS(2841), 2, + sym_identifier, + sym_super, + [46362] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, - anon_sym_PIPE, - ACTIONS(2981), 1, - anon_sym_COMMA, - ACTIONS(2983), 1, - anon_sym_RPAREN, - STATE(1293), 1, - aux_sym_slice_pattern_repeat1, - [46279] = 5, + ACTIONS(2328), 1, + anon_sym_LT2, + STATE(935), 1, + sym_type_arguments, + ACTIONS(2841), 2, + sym_identifier, + sym_super, + [46376] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2577), 1, + ACTIONS(2617), 1, sym_super, - ACTIONS(2985), 1, + ACTIONS(3015), 1, sym_identifier, - STATE(771), 1, + STATE(708), 1, sym_type_arguments, - [46295] = 5, + [46392] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2577), 1, + ACTIONS(2617), 1, sym_super, - ACTIONS(2985), 1, + ACTIONS(3015), 1, sym_identifier, - STATE(770), 1, + STATE(705), 1, sym_type_arguments, - [46311] = 5, + [46408] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2987), 1, + ACTIONS(3017), 1, anon_sym_LBRACE, - ACTIONS(2989), 1, + ACTIONS(3019), 1, anon_sym_LBRACK, - ACTIONS(2991), 1, + ACTIONS(3021), 1, anon_sym_LPAREN, - STATE(920), 1, + STATE(936), 1, sym_delim_token_tree, - [46327] = 5, + [46424] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, + ACTIONS(2745), 1, + sym_identifier, + ACTIONS(2747), 1, + sym_mutable_specifier, + ACTIONS(3023), 1, + anon_sym_RBRACE, + STATE(1521), 1, + sym_field_pattern, + [46440] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 1, anon_sym_LT2, - ACTIONS(2607), 1, + ACTIONS(2613), 1, sym_super, - ACTIONS(2993), 1, + ACTIONS(3025), 1, sym_identifier, - STATE(915), 1, + STATE(934), 1, sym_type_arguments, - [46343] = 5, + [46456] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2987), 1, + ACTIONS(3017), 1, anon_sym_LBRACE, - ACTIONS(2989), 1, + ACTIONS(3019), 1, anon_sym_LBRACK, - ACTIONS(2991), 1, + ACTIONS(3021), 1, anon_sym_LPAREN, - STATE(919), 1, + STATE(932), 1, sym_delim_token_tree, - [46359] = 5, + [46472] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(2995), 1, + ACTIONS(3027), 1, anon_sym_SEMI, - ACTIONS(2997), 1, + ACTIONS(3029), 1, anon_sym_COLON, - ACTIONS(2999), 1, + ACTIONS(3031), 1, anon_sym_EQ, - [46375] = 5, + [46488] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, + ACTIONS(2719), 1, anon_sym_LT, - ACTIONS(2937), 1, + ACTIONS(2995), 1, anon_sym_LBRACE, - STATE(573), 1, + STATE(585), 1, sym_enum_variant_list, - STATE(1559), 1, + STATE(1554), 1, sym_type_parameters, - [46391] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2537), 1, - anon_sym_LT2, - ACTIONS(2833), 1, - sym_super, - ACTIONS(2959), 1, - sym_identifier, - STATE(922), 1, - sym_type_arguments, - [46407] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2721), 1, - sym_identifier, - ACTIONS(2723), 1, - sym_mutable_specifier, - ACTIONS(3001), 1, - anon_sym_RBRACE, - STATE(1496), 1, - sym_field_pattern, - [46423] = 5, + [46504] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2675), 1, - anon_sym_EQ, - ACTIONS(2677), 1, + ACTIONS(2719), 1, anon_sym_LT, - ACTIONS(3003), 1, + ACTIONS(2828), 1, + anon_sym_EQ, + ACTIONS(3033), 1, anon_sym_SEMI, - STATE(1581), 1, + STATE(1561), 1, sym_type_parameters, - [46439] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2537), 1, - anon_sym_LT2, - ACTIONS(2833), 1, - sym_super, - ACTIONS(2959), 1, - sym_identifier, - STATE(916), 1, - sym_type_arguments, - [46455] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3005), 1, - anon_sym_if, - STATE(90), 2, - sym_block, - sym_if_expression, - [46469] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2403), 1, - anon_sym_SEMI, - ACTIONS(3007), 1, - anon_sym_RBRACK, - ACTIONS(2503), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [46483] = 4, + [46520] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2328), 1, + ACTIONS(2402), 1, anon_sym_SEMI, - ACTIONS(3010), 1, + ACTIONS(3035), 1, anon_sym_RBRACK, - ACTIONS(2298), 2, + ACTIONS(2567), 2, anon_sym_COMMA, anon_sym_PIPE, - [46497] = 4, + [46534] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2298), 1, + ACTIONS(2318), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3013), 1, - anon_sym_COLON_COLON, - ACTIONS(2700), 2, + ACTIONS(2350), 2, anon_sym_COMMA, anon_sym_RPAREN, - [46511] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2721), 1, - sym_identifier, - ACTIONS(2723), 1, - sym_mutable_specifier, - ACTIONS(3015), 1, - anon_sym_RBRACE, - STATE(1496), 1, - sym_field_pattern, - [46527] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - STATE(915), 1, - sym_type_arguments, - ACTIONS(2607), 2, - sym_identifier, - sym_super, - [46541] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2005), 1, - anon_sym_GT, - ACTIONS(2334), 1, - anon_sym_COLON_COLON, - ACTIONS(3017), 1, - anon_sym_COMMA, - STATE(1386), 1, - aux_sym_type_parameters_repeat1, - [46557] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2005), 1, - anon_sym_GT, - ACTIONS(2915), 1, - anon_sym_COLON_COLON, - ACTIONS(3017), 1, - anon_sym_COMMA, - STATE(1386), 1, - aux_sym_type_parameters_repeat1, - [46573] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - STATE(922), 1, - sym_type_arguments, - ACTIONS(2577), 2, - sym_identifier, - sym_super, - [46587] = 5, + [46546] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2324), 1, - anon_sym_BANG, - ACTIONS(2947), 1, + ACTIONS(2855), 1, + anon_sym_LPAREN, + ACTIONS(3038), 1, anon_sym_COLON_COLON, - STATE(924), 1, - sym_type_arguments, - [46603] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2689), 1, - anon_sym_EQ, - ACTIONS(3019), 1, - anon_sym_SEMI, - STATE(1538), 1, - sym_type_parameters, - [46619] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3023), 1, + ACTIONS(2350), 2, anon_sym_COMMA, - STATE(1216), 1, - aux_sym_slice_pattern_repeat1, - ACTIONS(3021), 2, - anon_sym_RBRACK, anon_sym_RPAREN, - [46633] = 3, + [46560] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(3021), 3, - anon_sym_RBRACK, + ACTIONS(3040), 1, anon_sym_COMMA, + ACTIONS(3042), 1, anon_sym_RPAREN, - [46645] = 4, + STATE(1393), 1, + aux_sym_slice_pattern_repeat1, + [46576] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - STATE(916), 1, - sym_type_arguments, - ACTIONS(2577), 2, - sym_identifier, - sym_super, - [46659] = 4, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3044), 1, + anon_sym_if, + STATE(104), 2, + sym_block, + sym_if_expression, + [46590] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2941), 1, - anon_sym_LPAREN, - ACTIONS(3026), 1, - anon_sym_COLON_COLON, - ACTIONS(2328), 2, + ACTIONS(2318), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3046), 2, anon_sym_COMMA, anon_sym_RPAREN, - [46673] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(585), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [46682] = 4, + [46602] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2095), 1, - anon_sym_RBRACK, - ACTIONS(3028), 1, - anon_sym_COMMA, - STATE(1221), 1, - aux_sym_array_expression_repeat1, - [46695] = 4, + ACTIONS(2715), 1, + anon_sym_LBRACE, + ACTIONS(3048), 1, + anon_sym_SEMI, + STATE(544), 1, + sym_declaration_list, + [46615] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1398), 1, + ACTIONS(565), 1, anon_sym_RPAREN, - ACTIONS(2669), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - STATE(1416), 1, - aux_sym_parameters_repeat1, - [46708] = 3, + STATE(1412), 1, + aux_sym_arguments_repeat1, + [46628] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2503), 1, - anon_sym_PIPE, - ACTIONS(3007), 2, + ACTIONS(3050), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [46719] = 4, + ACTIONS(3053), 1, + anon_sym_PIPE, + STATE(1236), 1, + aux_sym_closure_parameters_repeat1, + [46641] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1398), 1, - anon_sym_RPAREN, - ACTIONS(2669), 1, + ACTIONS(2695), 1, + anon_sym_COLON, + ACTIONS(3053), 2, anon_sym_COMMA, - STATE(1420), 1, - aux_sym_parameters_repeat1, - [46732] = 4, + anon_sym_PIPE, + [46652] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, + ACTIONS(2719), 1, anon_sym_LT, - ACTIONS(2881), 1, + ACTIONS(2851), 1, anon_sym_EQ, - STATE(1732), 1, + STATE(1739), 1, sym_type_parameters, - [46745] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2487), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [46754] = 4, + [46665] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2533), 1, + ACTIONS(3055), 3, anon_sym_RBRACE, - ACTIONS(3031), 1, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1401), 1, - aux_sym_enum_variant_list_repeat2, - [46767] = 3, + [46674] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3035), 1, - anon_sym_COLON, - ACTIONS(3033), 2, + ACTIONS(3057), 3, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - [46778] = 2, + [46683] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(502), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [46787] = 4, + ACTIONS(2360), 1, + anon_sym_COLON_COLON, + ACTIONS(3059), 2, + anon_sym_COMMA, + anon_sym_GT, + [46694] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2533), 1, + ACTIONS(3061), 1, anon_sym_RBRACE, - ACTIONS(3031), 1, + ACTIONS(3063), 1, anon_sym_COMMA, - STATE(1383), 1, - aux_sym_enum_variant_list_repeat2, - [46800] = 4, + STATE(1242), 1, + aux_sym_field_initializer_list_repeat1, + [46707] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2567), 1, + ACTIONS(3066), 3, anon_sym_RBRACE, - ACTIONS(3037), 1, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1404), 1, - aux_sym_field_declaration_list_repeat1, - [46813] = 2, + [46716] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2489), 3, + ACTIONS(722), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [46822] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2567), 1, - anon_sym_RBRACE, - ACTIONS(3037), 1, - anon_sym_COMMA, - STATE(1402), 1, - aux_sym_field_declaration_list_repeat1, - [46835] = 3, + [46725] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2561), 3, anon_sym_PIPE, - ACTIONS(3039), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [46846] = 4, + anon_sym_EQ_GT, + anon_sym_if, + [46734] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(730), 1, - anon_sym_RBRACK, - ACTIONS(3041), 1, + ACTIONS(3068), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1221), 1, - aux_sym_array_expression_repeat1, - [46859] = 4, + [46743] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(45), 1, + ACTIONS(536), 3, anon_sym_PIPE, - ACTIONS(3043), 1, - anon_sym_move, - STATE(136), 1, - sym_closure_parameters, - [46872] = 4, + anon_sym_EQ_GT, + anon_sym_if, + [46752] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2455), 1, + ACTIONS(3070), 3, anon_sym_RBRACE, - ACTIONS(3045), 1, - anon_sym_COMMA, - STATE(1337), 1, - aux_sym_field_initializer_list_repeat1, - [46885] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2691), 1, - anon_sym_LBRACE, - ACTIONS(3047), 1, anon_sym_SEMI, - STATE(279), 1, - sym_declaration_list, - [46898] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(517), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [46907] = 2, + anon_sym_COMMA, + [46761] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(595), 3, + ACTIONS(740), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [46916] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3039), 1, - anon_sym_RPAREN, - ACTIONS(3049), 1, - anon_sym_COMMA, - STATE(1241), 1, - aux_sym_tuple_pattern_repeat1, - [46929] = 4, + [46770] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1626), 1, - anon_sym_GT, - ACTIONS(3052), 1, + ACTIONS(2289), 1, + anon_sym_RBRACE, + ACTIONS(3072), 1, anon_sym_COMMA, - STATE(1369), 1, - aux_sym_type_arguments_repeat1, - [46942] = 4, + STATE(1290), 1, + aux_sym_use_list_repeat1, + [46783] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2005), 1, - anon_sym_GT, - ACTIONS(3017), 1, + ACTIONS(3074), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1386), 1, - aux_sym_type_parameters_repeat1, - [46955] = 4, + [46792] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2005), 1, - anon_sym_GT, - ACTIONS(3017), 1, + ACTIONS(3076), 1, + anon_sym_RBRACE, + ACTIONS(3078), 1, anon_sym_COMMA, - STATE(1375), 1, - aux_sym_type_parameters_repeat1, - [46968] = 3, + STATE(1295), 1, + aux_sym_struct_pattern_repeat1, + [46805] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3056), 1, - anon_sym_COLON, - ACTIONS(3054), 2, + ACTIONS(3080), 1, anon_sym_RBRACE, + ACTIONS(3082), 1, anon_sym_COMMA, - [46979] = 4, + STATE(1253), 1, + aux_sym_enum_variant_list_repeat2, + [46818] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2007), 1, - anon_sym_GT, - ACTIONS(3058), 1, + ACTIONS(2519), 1, + anon_sym_RBRACE, + ACTIONS(3085), 1, anon_sym_COMMA, - STATE(1375), 1, - aux_sym_type_parameters_repeat1, - [46992] = 3, + STATE(1253), 1, + aux_sym_enum_variant_list_repeat2, + [46831] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2298), 1, + ACTIONS(2567), 3, anon_sym_PIPE, - ACTIONS(3010), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47003] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2915), 1, - anon_sym_COLON_COLON, - ACTIONS(3060), 2, - anon_sym_COMMA, - anon_sym_GT, - [47014] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2334), 1, - anon_sym_COLON_COLON, - ACTIONS(3060), 2, - anon_sym_COMMA, - anon_sym_GT, - [47025] = 3, + anon_sym_EQ_GT, + anon_sym_if, + [46840] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(948), 1, - anon_sym_POUND, - ACTIONS(950), 2, - sym_numeric_literal, - sym_identifier, - [47036] = 4, + ACTIONS(2573), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [46849] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1600), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(3062), 1, + ACTIONS(3087), 1, anon_sym_SEMI, - STATE(321), 1, + STATE(291), 1, sym_block, - [47049] = 4, + [46862] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1640), 1, + ACTIONS(2577), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [46871] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1660), 1, anon_sym_LBRACE, - ACTIONS(3064), 1, + ACTIONS(3089), 1, anon_sym_COLON_COLON, - STATE(495), 1, + STATE(506), 1, sym_field_initializer_list, - [47062] = 4, + [46884] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2358), 1, + ACTIONS(2380), 1, anon_sym_fn, - ACTIONS(3066), 1, + ACTIONS(3091), 1, anon_sym_type, - STATE(1614), 1, + STATE(1598), 1, sym_function, - [47075] = 4, + [46897] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(3068), 1, - anon_sym_SEMI, - STATE(1664), 1, - sym_type_parameters, - [47088] = 2, + ACTIONS(3046), 1, + anon_sym_RPAREN, + ACTIONS(3093), 1, + anon_sym_COMMA, + STATE(1261), 1, + aux_sym_parameters_repeat1, + [46910] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2531), 3, + ACTIONS(3096), 1, + anon_sym_COMMA, + ACTIONS(3098), 1, + anon_sym_RPAREN, + STATE(1368), 1, + aux_sym_function_repeat1, + [46923] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1380), 1, + anon_sym_RPAREN, + ACTIONS(3100), 1, + anon_sym_COMMA, + STATE(1261), 1, + aux_sym_parameters_repeat1, + [46936] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2523), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47097] = 4, + [46945] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2734), 1, - anon_sym_LBRACE, - ACTIONS(3070), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_field_declaration_list, - [47110] = 2, + ACTIONS(2539), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [46954] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2539), 3, + ACTIONS(2507), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47119] = 4, + [46963] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2691), 1, - anon_sym_LBRACE, - ACTIONS(3072), 1, - anon_sym_SEMI, - STATE(248), 1, - sym_declaration_list, - [47132] = 2, + ACTIONS(2318), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [46972] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(521), 3, + ACTIONS(524), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47141] = 2, + [46981] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(529), 3, + ACTIONS(512), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47150] = 2, + [46990] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2541), 3, + ACTIONS(3102), 1, + anon_sym_RBRACE, + ACTIONS(3104), 1, + anon_sym_COMMA, + STATE(1317), 1, + aux_sym_struct_pattern_repeat1, + [47003] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2551), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47159] = 4, + [47012] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3074), 1, + ACTIONS(3108), 1, + anon_sym_COLON, + ACTIONS(3106), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3076), 1, - anon_sym_RPAREN, - STATE(1344), 1, - aux_sym_function_repeat1, - [47172] = 2, + [47023] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2547), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [47032] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2515), 3, + ACTIONS(2505), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47181] = 3, + [47041] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(948), 1, + ACTIONS(1018), 1, anon_sym_POUND, - ACTIONS(950), 2, + ACTIONS(1020), 2, anon_sym_pub, sym_identifier, - [47192] = 4, + [47052] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(593), 1, - anon_sym_RPAREN, - ACTIONS(2023), 1, + ACTIONS(3110), 1, anon_sym_COMMA, - STATE(1343), 1, - aux_sym_arguments_repeat1, - [47205] = 4, + ACTIONS(3112), 1, + anon_sym_GT, + STATE(1321), 1, + aux_sym_type_arguments_repeat1, + [47065] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(593), 1, + ACTIONS(1542), 1, anon_sym_RPAREN, - ACTIONS(2023), 1, - anon_sym_COMMA, - STATE(1342), 1, - aux_sym_arguments_repeat1, - [47218] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3080), 1, - anon_sym_COLON, - ACTIONS(3078), 2, - anon_sym_RBRACE, + ACTIONS(3114), 1, anon_sym_COMMA, - [47229] = 2, + STATE(1322), 1, + aux_sym_tuple_pattern_repeat1, + [47078] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 3, + ACTIONS(2503), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47238] = 2, + [47087] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2477), 3, + ACTIONS(2501), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47247] = 2, + [47096] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2507), 3, + ACTIONS(1586), 1, + anon_sym_RBRACK, + ACTIONS(3116), 1, + anon_sym_COMMA, + STATE(1164), 1, + aux_sym_slice_pattern_repeat1, + [47109] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2499), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47256] = 2, + [47118] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2551), 3, + ACTIONS(2545), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47265] = 4, + [47127] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2691), 1, + ACTIONS(2765), 1, anon_sym_LBRACE, - ACTIONS(3082), 1, + ACTIONS(3118), 1, anon_sym_SEMI, - STATE(274), 1, + STATE(308), 1, sym_declaration_list, - [47278] = 2, + [47140] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 3, + ACTIONS(2497), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47287] = 2, + [47149] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2479), 3, + ACTIONS(2543), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47296] = 2, + [47158] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2557), 3, + ACTIONS(516), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47305] = 4, + [47167] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(2591), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_type_arguments, - [47318] = 2, + ACTIONS(3120), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [47176] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2519), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [47327] = 4, + ACTIONS(2721), 1, + anon_sym_COMMA, + ACTIONS(2723), 1, + anon_sym_RPAREN, + STATE(1345), 1, + aux_sym_parameters_repeat1, + [47189] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3084), 1, + ACTIONS(3122), 1, anon_sym_PIPE, - ACTIONS(3086), 1, + ACTIONS(3124), 1, anon_sym_EQ_GT, - ACTIONS(3088), 1, + ACTIONS(3126), 1, anon_sym_if, - [47340] = 2, + [47202] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3090), 3, + ACTIONS(3128), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3130), 1, anon_sym_COMMA, - [47349] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(3092), 1, - anon_sym_move, - STATE(139), 1, - sym_closure_parameters, - [47362] = 2, + STATE(1290), 1, + aux_sym_use_list_repeat1, + [47215] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2503), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [47371] = 4, + ACTIONS(2470), 1, + anon_sym_RBRACE, + ACTIONS(3133), 1, + anon_sym_COMMA, + STATE(1242), 1, + aux_sym_field_initializer_list_repeat1, + [47228] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(259), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(3094), 1, + ACTIONS(3135), 1, anon_sym_SEMI, - STATE(528), 1, + STATE(555), 1, sym_block, - [47384] = 4, + [47241] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1953), 1, + ACTIONS(1948), 1, anon_sym_LBRACE, - ACTIONS(3096), 1, + ACTIONS(3137), 1, anon_sym_COLON_COLON, - STATE(869), 1, + STATE(763), 1, sym_field_initializer_list, - [47397] = 2, + [47254] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2491), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [47406] = 4, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(2607), 1, + anon_sym_LBRACE, + STATE(943), 1, + sym_type_arguments, + [47267] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3015), 1, + ACTIONS(2885), 1, anon_sym_RBRACE, - ACTIONS(3098), 1, + ACTIONS(3139), 1, anon_sym_COMMA, - STATE(1365), 1, + STATE(1342), 1, aux_sym_struct_pattern_repeat1, - [47419] = 2, + [47280] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3100), 3, + ACTIONS(3141), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [47428] = 4, + [47289] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1580), 1, - anon_sym_RPAREN, - ACTIONS(3102), 1, - anon_sym_COMMA, - STATE(1216), 1, - aux_sym_slice_pattern_repeat1, - [47441] = 4, + ACTIONS(2745), 1, + sym_identifier, + ACTIONS(2747), 1, + sym_mutable_specifier, + STATE(1521), 1, + sym_field_pattern, + [47302] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2744), 1, - anon_sym_COMMA, - ACTIONS(3104), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - STATE(1339), 1, - aux_sym_closure_parameters_repeat1, - [47454] = 2, + ACTIONS(3143), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [47313] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2513), 3, + ACTIONS(2697), 1, + anon_sym_COMMA, + ACTIONS(3145), 1, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [47463] = 4, + STATE(1387), 1, + aux_sym_closure_parameters_repeat1, + [47326] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3106), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - ACTIONS(3109), 1, - anon_sym_PIPE, - STATE(1290), 1, - aux_sym_closure_parameters_repeat1, - [47476] = 3, + ACTIONS(3150), 1, + anon_sym_GT, + STATE(1300), 1, + aux_sym_type_arguments_repeat1, + [47339] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2742), 1, - anon_sym_COLON, - ACTIONS(3109), 2, + ACTIONS(3059), 1, + anon_sym_GT, + ACTIONS(3152), 1, anon_sym_COMMA, - anon_sym_PIPE, - [47487] = 4, + STATE(1301), 1, + aux_sym_type_parameters_repeat1, + [47352] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2709), 1, + ACTIONS(2715), 1, anon_sym_LBRACE, - ACTIONS(3111), 1, + ACTIONS(3155), 1, anon_sym_SEMI, - STATE(556), 1, + STATE(599), 1, sym_declaration_list, - [47500] = 4, + [47365] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1578), 1, - anon_sym_RPAREN, - ACTIONS(3113), 1, + ACTIONS(2847), 1, + anon_sym_PIPE, + ACTIONS(3157), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1216), 1, - aux_sym_slice_pattern_repeat1, - [47513] = 4, + [47376] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3001), 1, - anon_sym_RBRACE, - ACTIONS(3115), 1, + ACTIONS(1598), 1, + anon_sym_RPAREN, + ACTIONS(3159), 1, anon_sym_COMMA, - STATE(1365), 1, - aux_sym_struct_pattern_repeat1, - [47526] = 2, + STATE(1164), 1, + aux_sym_slice_pattern_repeat1, + [47389] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2513), 3, + ACTIONS(2541), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47535] = 2, + [47398] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2298), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [47544] = 2, + ACTIONS(2380), 1, + anon_sym_fn, + ACTIONS(3161), 1, + anon_sym_type, + STATE(1674), 1, + sym_function, + [47411] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3117), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [47553] = 3, + ACTIONS(3163), 1, + anon_sym_in, + ACTIONS(3165), 2, + sym_super, + sym_crate, + [47422] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3119), 1, + ACTIONS(3167), 1, anon_sym_in, - ACTIONS(3121), 2, + ACTIONS(3169), 2, sym_super, sym_crate, - [47564] = 4, + [47433] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2358), 1, + ACTIONS(2328), 1, + anon_sym_LT2, + ACTIONS(3171), 1, + anon_sym_LBRACE, + STATE(943), 1, + sym_type_arguments, + [47446] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2380), 1, anon_sym_fn, - ACTIONS(3123), 1, + ACTIONS(3173), 1, anon_sym_type, - STATE(1668), 1, + STATE(1594), 1, sym_function, - [47577] = 3, + [47459] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3125), 1, - anon_sym_in, - ACTIONS(3127), 2, - sym_super, - sym_crate, - [47588] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3129), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [47597] = 4, + ACTIONS(1660), 1, + anon_sym_LBRACE, + ACTIONS(3175), 1, + anon_sym_COLON_COLON, + STATE(506), 1, + sym_field_initializer_list, + [47472] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - ACTIONS(3131), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - STATE(928), 1, - sym_type_arguments, - [47610] = 2, + ACTIONS(3177), 1, + anon_sym_SEMI, + STATE(315), 1, + sym_block, + [47485] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3133), 3, + ACTIONS(3179), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3181), 1, anon_sym_COMMA, - [47619] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2529), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [47628] = 4, + STATE(1351), 1, + aux_sym_enum_variant_list_repeat2, + [47498] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3135), 1, + ACTIONS(3185), 1, + anon_sym_COLON, + ACTIONS(3183), 2, anon_sym_RBRACE, - ACTIONS(3137), 1, anon_sym_COMMA, - STATE(1305), 1, - aux_sym_use_list_repeat1, - [47641] = 4, + [47509] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2358), 1, + ACTIONS(2380), 1, anon_sym_fn, - ACTIONS(3140), 1, + ACTIONS(3187), 1, anon_sym_type, - STATE(1585), 1, + STATE(1713), 1, sym_function, - [47654] = 2, + [47522] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3142), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [47663] = 2, + ACTIONS(2549), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [47531] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3144), 3, + ACTIONS(2895), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3189), 1, anon_sym_COMMA, - [47672] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2358), 1, - anon_sym_fn, - ACTIONS(3146), 1, - anon_sym_type, - STATE(1667), 1, - sym_function, - [47685] = 4, + STATE(1342), 1, + aux_sym_struct_pattern_repeat1, + [47544] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1640), 1, - anon_sym_LBRACE, - ACTIONS(3148), 1, - anon_sym_COLON_COLON, - STATE(495), 1, - sym_field_initializer_list, - [47698] = 4, + ACTIONS(3193), 1, + anon_sym_COLON, + ACTIONS(3191), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [47555] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2691), 1, + ACTIONS(2765), 1, anon_sym_LBRACE, - ACTIONS(3150), 1, + ACTIONS(3195), 1, anon_sym_SEMI, - STATE(277), 1, + STATE(258), 1, sym_declaration_list, - [47711] = 2, + [47568] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3152), 3, + ACTIONS(3197), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [47720] = 2, + [47577] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3154), 3, + ACTIONS(1634), 1, + anon_sym_GT, + ACTIONS(3199), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [47729] = 4, + STATE(1300), 1, + aux_sym_type_arguments_repeat1, + [47590] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(726), 1, - anon_sym_RBRACK, - ACTIONS(1965), 1, + ACTIONS(3201), 1, anon_sym_COMMA, - STATE(1221), 1, - aux_sym_array_expression_repeat1, - [47742] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2734), 1, - anon_sym_LBRACE, - ACTIONS(3156), 1, - anon_sym_SEMI, - STATE(312), 1, - sym_field_declaration_list, - [47755] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2691), 1, - anon_sym_LBRACE, - ACTIONS(3158), 1, - anon_sym_SEMI, - STATE(303), 1, - sym_declaration_list, - [47768] = 4, + ACTIONS(3204), 1, + anon_sym_RPAREN, + STATE(1322), 1, + aux_sym_tuple_pattern_repeat1, + [47603] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2267), 1, + ACTIONS(3206), 3, anon_sym_RBRACE, - ACTIONS(3160), 1, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1305), 1, - aux_sym_use_list_repeat1, - [47781] = 4, + [47612] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2721), 1, - sym_identifier, - ACTIONS(2723), 1, - sym_mutable_specifier, - STATE(1496), 1, - sym_field_pattern, - [47794] = 3, + ACTIONS(714), 1, + anon_sym_RBRACK, + ACTIONS(1971), 1, + anon_sym_COMMA, + STATE(1338), 1, + aux_sym_array_expression_repeat1, + [47625] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(3162), 2, - anon_sym_RBRACE, + ACTIONS(3204), 2, anon_sym_COMMA, - [47805] = 4, + anon_sym_RPAREN, + [47636] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(259), 1, - anon_sym_LBRACE, - ACTIONS(3164), 1, - anon_sym_SEMI, - STATE(579), 1, - sym_block, - [47818] = 2, + ACTIONS(2567), 1, + anon_sym_PIPE, + ACTIONS(3035), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47647] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2543), 3, + ACTIONS(2521), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47827] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3166), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [47836] = 4, + [47656] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3168), 1, + ACTIONS(3208), 1, anon_sym_RBRACE, - ACTIONS(3170), 1, + ACTIONS(3210), 1, anon_sym_COMMA, - STATE(1294), 1, - aux_sym_struct_pattern_repeat1, - [47849] = 2, + STATE(1367), 1, + aux_sym_field_declaration_list_repeat1, + [47669] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 3, + ACTIONS(2559), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47858] = 4, + [47678] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2709), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(3172), 1, + ACTIONS(3212), 1, anon_sym_SEMI, - STATE(586), 1, - sym_declaration_list, - [47871] = 4, + STATE(546), 1, + sym_block, + [47691] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2839), 1, - anon_sym_COMMA, - ACTIONS(2841), 1, - anon_sym_RPAREN, - STATE(1357), 1, - aux_sym_tuple_pattern_repeat1, - [47884] = 2, + ACTIONS(2749), 1, + anon_sym_LBRACE, + ACTIONS(3214), 1, + anon_sym_SEMI, + STATE(265), 1, + sym_field_declaration_list, + [47704] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2553), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [47893] = 2, + ACTIONS(2963), 1, + anon_sym_COLON_COLON, + ACTIONS(3059), 2, + anon_sym_COMMA, + anon_sym_GT, + [47715] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2559), 3, + ACTIONS(2537), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47902] = 4, + [47724] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(742), 1, + ACTIONS(716), 1, anon_sym_RBRACK, - ACTIONS(1961), 1, + ACTIONS(2081), 1, anon_sym_COMMA, - STATE(1221), 1, + STATE(1338), 1, aux_sym_array_expression_repeat1, - [47915] = 2, + [47737] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2561), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [47924] = 2, + ACTIONS(2715), 1, + anon_sym_LBRACE, + ACTIONS(3216), 1, + anon_sym_SEMI, + STATE(559), 1, + sym_declaration_list, + [47750] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2471), 3, + ACTIONS(2523), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [47933] = 2, + [47759] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3174), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1378), 1, + anon_sym_RPAREN, + ACTIONS(2820), 1, anon_sym_COMMA, - [47942] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2713), 1, - anon_sym_LBRACE, - ACTIONS(3176), 1, - anon_sym_SEMI, - STATE(592), 1, - sym_field_declaration_list, - [47955] = 4, + STATE(1263), 1, + aux_sym_parameters_repeat1, + [47772] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3178), 1, - anon_sym_RBRACE, - ACTIONS(3180), 1, + ACTIONS(2135), 1, + anon_sym_RBRACK, + ACTIONS(3218), 1, anon_sym_COMMA, - STATE(1317), 1, - aux_sym_use_list_repeat1, - [47968] = 2, + STATE(1338), 1, + aux_sym_array_expression_repeat1, + [47785] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3182), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(734), 1, + anon_sym_RBRACK, + ACTIONS(2029), 1, anon_sym_COMMA, - [47977] = 4, + STATE(1338), 1, + aux_sym_array_expression_repeat1, + [47798] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1600), 1, - anon_sym_LBRACE, - ACTIONS(3184), 1, - anon_sym_SEMI, - STATE(315), 1, - sym_block, - [47990] = 4, + ACTIONS(2916), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_RPAREN, + STATE(1277), 1, + aux_sym_tuple_pattern_repeat1, + [47811] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3186), 1, + ACTIONS(3223), 1, + anon_sym_COLON, + ACTIONS(3221), 2, anon_sym_RBRACE, - ACTIONS(3188), 1, anon_sym_COMMA, - STATE(1337), 1, - aux_sym_field_initializer_list_repeat1, - [48003] = 3, + [47822] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2915), 1, - anon_sym_COLON_COLON, - ACTIONS(3191), 2, + ACTIONS(3225), 1, + anon_sym_RBRACE, + ACTIONS(3227), 1, anon_sym_COMMA, - anon_sym_GT, - [48014] = 4, + STATE(1342), 1, + aux_sym_struct_pattern_repeat1, + [47835] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2744), 1, - anon_sym_COMMA, - ACTIONS(3193), 1, - anon_sym_PIPE, - STATE(1290), 1, - aux_sym_closure_parameters_repeat1, - [48027] = 4, + ACTIONS(2731), 1, + anon_sym_LBRACE, + ACTIONS(3230), 1, + anon_sym_SEMI, + STATE(570), 1, + sym_field_declaration_list, + [47848] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2969), 1, - anon_sym_COMMA, - ACTIONS(2971), 1, + ACTIONS(569), 1, anon_sym_RPAREN, - STATE(1397), 1, - aux_sym_tuple_pattern_repeat1, - [48040] = 3, + ACTIONS(2073), 1, + anon_sym_COMMA, + STATE(1412), 1, + aux_sym_arguments_repeat1, + [47861] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2334), 1, - anon_sym_COLON_COLON, - ACTIONS(3191), 2, + ACTIONS(1378), 1, + anon_sym_RPAREN, + ACTIONS(2820), 1, anon_sym_COMMA, - anon_sym_GT, - [48051] = 4, + STATE(1261), 1, + aux_sym_parameters_repeat1, + [47874] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2113), 1, - anon_sym_RPAREN, - ACTIONS(3195), 1, + ACTIONS(2495), 1, + anon_sym_RBRACE, + ACTIONS(3232), 1, anon_sym_COMMA, - STATE(1342), 1, - aux_sym_arguments_repeat1, - [48064] = 4, + STATE(1254), 1, + aux_sym_enum_variant_list_repeat2, + [47887] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(569), 1, anon_sym_RPAREN, - ACTIONS(3198), 1, + ACTIONS(2073), 1, anon_sym_COMMA, - STATE(1342), 1, + STATE(1371), 1, aux_sym_arguments_repeat1, - [48077] = 4, + [47900] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1999), 1, - anon_sym_RPAREN, - ACTIONS(3200), 1, + ACTIONS(3236), 1, + anon_sym_COLON, + ACTIONS(3234), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1359), 1, - aux_sym_function_repeat1, - [48090] = 4, + [47911] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1634), 1, + ACTIONS(1642), 1, anon_sym_GT, - ACTIONS(3202), 1, + ACTIONS(3238), 1, anon_sym_COMMA, - STATE(1369), 1, + STATE(1300), 1, aux_sym_type_arguments_repeat1, - [48103] = 3, + [47924] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3206), 1, - anon_sym_COLON, - ACTIONS(3204), 2, - anon_sym_RBRACE, + ACTIONS(3007), 1, anon_sym_COMMA, - [48114] = 4, + ACTIONS(3009), 1, + anon_sym_RPAREN, + STATE(1407), 1, + aux_sym_tuple_pattern_repeat1, + [47937] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3208), 1, + ACTIONS(2495), 1, anon_sym_RBRACE, - ACTIONS(3210), 1, + ACTIONS(3232), 1, anon_sym_COMMA, - STATE(1237), 1, - aux_sym_field_initializer_list_repeat1, - [48127] = 4, + STATE(1253), 1, + aux_sym_enum_variant_list_repeat2, + [47950] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3212), 1, - anon_sym_RBRACE, - ACTIONS(3214), 1, + ACTIONS(2023), 1, + anon_sym_GT, + ACTIONS(3240), 1, anon_sym_COMMA, - STATE(1285), 1, - aux_sym_struct_pattern_repeat1, - [48140] = 2, + STATE(1301), 1, + aux_sym_type_parameters_repeat1, + [47963] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2499), 3, + ACTIONS(532), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [48149] = 4, + [47972] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3216), 1, + ACTIONS(2585), 1, + anon_sym_RBRACE, + ACTIONS(3242), 1, anon_sym_COMMA, - ACTIONS(3218), 1, + STATE(1378), 1, + aux_sym_field_declaration_list_repeat1, + [47985] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3244), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, anon_sym_GT, - STATE(1345), 1, + STATE(1349), 1, aux_sym_type_arguments_repeat1, - [48162] = 4, + [47998] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2017), 1, - anon_sym_COMMA, - ACTIONS(2019), 1, - anon_sym_RPAREN, - STATE(1266), 1, - aux_sym_arguments_repeat1, - [48175] = 2, + ACTIONS(2765), 1, + anon_sym_LBRACE, + ACTIONS(3248), 1, + anon_sym_SEMI, + STATE(311), 1, + sym_declaration_list, + [48011] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2501), 3, + ACTIONS(2491), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [48184] = 3, + [48020] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3222), 1, - anon_sym_COLON, - ACTIONS(3220), 2, + ACTIONS(2318), 1, + anon_sym_PIPE, + ACTIONS(2930), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48031] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3250), 1, anon_sym_RBRACE, + ACTIONS(3252), 1, anon_sym_COMMA, - [48195] = 2, + STATE(1359), 1, + aux_sym_field_declaration_list_repeat1, + [48044] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2505), 3, + ACTIONS(1018), 1, + anon_sym_POUND, + ACTIONS(1020), 2, + sym_numeric_literal, + sym_identifier, + [48055] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2535), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [48204] = 4, + [48064] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3224), 1, + ACTIONS(3255), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(3226), 1, - anon_sym_GT, - STATE(1242), 1, - aux_sym_type_arguments_repeat1, - [48217] = 2, + [48073] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2509), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [48226] = 4, + ACTIONS(3257), 1, + anon_sym_RBRACE, + ACTIONS(3259), 1, + anon_sym_COMMA, + STATE(1250), 1, + aux_sym_use_list_repeat1, + [48086] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1538), 1, - anon_sym_RPAREN, - ACTIONS(3228), 1, + ACTIONS(3261), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1241), 1, - aux_sym_tuple_pattern_repeat1, - [48239] = 4, + [48095] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2691), 1, + ACTIONS(2765), 1, anon_sym_LBRACE, - ACTIONS(3230), 1, + ACTIONS(3263), 1, anon_sym_SEMI, - STATE(319), 1, + STATE(278), 1, sym_declaration_list, - [48252] = 4, + [48108] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2729), 1, + ACTIONS(3265), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3232), 1, + anon_sym_PIPE, + [48117] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2585), 1, + anon_sym_RBRACE, + ACTIONS(3242), 1, anon_sym_COMMA, STATE(1359), 1, - aux_sym_function_repeat1, - [48265] = 4, + aux_sym_field_declaration_list_repeat1, + [48130] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3235), 1, - anon_sym_RBRACE, - ACTIONS(3237), 1, + ACTIONS(1975), 1, + anon_sym_RPAREN, + ACTIONS(3267), 1, anon_sym_COMMA, - STATE(1424), 1, - aux_sym_field_initializer_list_repeat1, - [48278] = 2, + STATE(1414), 1, + aux_sym_function_repeat1, + [48143] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2533), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [48152] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3239), 3, + ACTIONS(3269), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3271), 1, anon_sym_COMMA, - [48287] = 2, + STATE(1434), 1, + aux_sym_field_initializer_list_repeat1, + [48165] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3241), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(563), 1, + anon_sym_RPAREN, + ACTIONS(3273), 1, anon_sym_COMMA, - [48296] = 4, + STATE(1412), 1, + aux_sym_arguments_repeat1, + [48178] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1576), 1, + ACTIONS(692), 1, anon_sym_RBRACK, - ACTIONS(3243), 1, + ACTIONS(3275), 1, anon_sym_COMMA, - STATE(1216), 1, - aux_sym_slice_pattern_repeat1, - [48309] = 4, + STATE(1338), 1, + aux_sym_array_expression_repeat1, + [48191] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2001), 1, + ACTIONS(2765), 1, + anon_sym_LBRACE, + ACTIONS(3277), 1, + anon_sym_SEMI, + STATE(336), 1, + sym_declaration_list, + [48204] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2053), 1, anon_sym_COMMA, - ACTIONS(2003), 1, + ACTIONS(2055), 1, anon_sym_RPAREN, - STATE(1381), 1, + STATE(1235), 1, aux_sym_arguments_repeat1, - [48322] = 4, + [48217] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3245), 1, - anon_sym_RBRACE, - ACTIONS(3247), 1, + ACTIONS(2011), 1, + anon_sym_GT, + ACTIONS(2961), 1, anon_sym_COMMA, - STATE(1365), 1, - aux_sym_struct_pattern_repeat1, - [48335] = 4, + STATE(1352), 1, + aux_sym_type_parameters_repeat1, + [48230] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(45), 1, + ACTIONS(2531), 3, anon_sym_PIPE, - ACTIONS(3250), 1, - anon_sym_move, - STATE(145), 1, - sym_closure_parameters, - [48348] = 4, + anon_sym_EQ_GT, + anon_sym_if, + [48239] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2691), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - anon_sym_SEMI, - STATE(251), 1, - sym_declaration_list, - [48361] = 3, + ACTIONS(2963), 1, + anon_sym_COLON_COLON, + ACTIONS(3279), 2, + anon_sym_COMMA, + anon_sym_GT, + [48250] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2587), 1, + anon_sym_RBRACE, + ACTIONS(3281), 1, + anon_sym_COMMA, + STATE(1359), 1, + aux_sym_field_declaration_list_repeat1, + [48263] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 3, anon_sym_PIPE, - ACTIONS(3254), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [48372] = 4, + anon_sym_EQ_GT, + anon_sym_if, + [48272] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3256), 1, - anon_sym_COMMA, - ACTIONS(3259), 1, - anon_sym_GT, - STATE(1369), 1, - aux_sym_type_arguments_repeat1, - [48385] = 3, + ACTIONS(2749), 1, + anon_sym_LBRACE, + ACTIONS(3283), 1, + anon_sym_SEMI, + STATE(319), 1, + sym_field_declaration_list, + [48285] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2334), 1, - anon_sym_COLON_COLON, - ACTIONS(3261), 2, - anon_sym_COMMA, + ACTIONS(2011), 1, anon_sym_GT, - [48396] = 4, + ACTIONS(2961), 1, + anon_sym_COMMA, + STATE(1301), 1, + aux_sym_type_parameters_repeat1, + [48298] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2709), 1, - anon_sym_LBRACE, - ACTIONS(3263), 1, + ACTIONS(3285), 3, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(574), 1, - sym_declaration_list, - [48409] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2915), 1, - anon_sym_COLON_COLON, - ACTIONS(3261), 2, anon_sym_COMMA, - anon_sym_GT, - [48420] = 4, + [48307] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2709), 1, + ACTIONS(2715), 1, anon_sym_LBRACE, - ACTIONS(3265), 1, + ACTIONS(3287), 1, anon_sym_SEMI, - STATE(607), 1, + STATE(611), 1, sym_declaration_list, - [48433] = 2, + [48320] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(533), 3, + ACTIONS(2527), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [48442] = 4, + [48329] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3261), 1, - anon_sym_GT, - ACTIONS(3267), 1, - anon_sym_COMMA, - STATE(1375), 1, - aux_sym_type_parameters_repeat1, - [48455] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(3270), 1, - anon_sym_SEMI, - STATE(1698), 1, - sym_type_parameters, - [48468] = 4, + ACTIONS(2525), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [48338] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2691), 1, + ACTIONS(2715), 1, anon_sym_LBRACE, - ACTIONS(3272), 1, + ACTIONS(3289), 1, anon_sym_SEMI, - STATE(295), 1, + STATE(568), 1, sym_declaration_list, - [48481] = 4, + [48351] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2697), 1, + anon_sym_COMMA, + ACTIONS(3291), 1, + anon_sym_PIPE, + STATE(1236), 1, + aux_sym_closure_parameters_repeat1, + [48364] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, + ACTIONS(2719), 1, anon_sym_LT, - ACTIONS(3274), 1, + ACTIONS(3293), 1, anon_sym_SEMI, - STATE(1701), 1, + STATE(1702), 1, sym_type_parameters, - [48494] = 4, + [48377] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2709), 1, + ACTIONS(2715), 1, anon_sym_LBRACE, - ACTIONS(3276), 1, + ACTIONS(3295), 1, anon_sym_SEMI, - STATE(571), 1, + STATE(561), 1, sym_declaration_list, - [48507] = 4, + [48390] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2517), 1, - anon_sym_RBRACE, - ACTIONS(3278), 1, + ACTIONS(2025), 1, + anon_sym_GT, + ACTIONS(3297), 1, anon_sym_COMMA, - STATE(1383), 1, - aux_sym_enum_variant_list_repeat2, - [48520] = 4, + STATE(1301), 1, + aux_sym_type_parameters_repeat1, + [48403] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(617), 1, - anon_sym_RPAREN, - ACTIONS(2013), 1, + ACTIONS(2360), 1, + anon_sym_COLON_COLON, + ACTIONS(3279), 2, anon_sym_COMMA, - STATE(1342), 1, - aux_sym_arguments_repeat1, - [48533] = 4, + anon_sym_GT, + [48414] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2779), 1, - anon_sym_COMMA, - ACTIONS(2781), 1, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(3299), 1, + anon_sym_SEMI, + STATE(1622), 1, + sym_type_parameters, + [48427] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, anon_sym_RPAREN, - STATE(1224), 1, - aux_sym_parameters_repeat1, - [48546] = 4, + ACTIONS(3301), 1, + anon_sym_COMMA, + STATE(1164), 1, + aux_sym_slice_pattern_repeat1, + [48440] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3280), 1, + ACTIONS(2493), 1, anon_sym_RBRACE, - ACTIONS(3282), 1, + ACTIONS(3303), 1, anon_sym_COMMA, - STATE(1383), 1, + STATE(1253), 1, aux_sym_enum_variant_list_repeat2, - [48559] = 4, + [48453] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(617), 1, - anon_sym_RPAREN, - ACTIONS(2013), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - STATE(1422), 1, - aux_sym_arguments_repeat1, - [48572] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1995), 1, + ACTIONS(2993), 1, anon_sym_GT, - ACTIONS(3285), 1, - anon_sym_COMMA, - STATE(1375), 1, + STATE(1381), 1, aux_sym_type_parameters_repeat1, - [48585] = 4, + [48466] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1993), 1, - anon_sym_GT, - ACTIONS(3287), 1, + ACTIONS(2589), 1, + anon_sym_RBRACE, + ACTIONS(3305), 1, anon_sym_COMMA, - STATE(1375), 1, - aux_sym_type_parameters_repeat1, - [48598] = 4, + STATE(1359), 1, + aux_sym_field_declaration_list_repeat1, + [48479] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(728), 1, + ACTIONS(698), 1, anon_sym_RBRACK, - ACTIONS(1997), 1, + ACTIONS(2047), 1, anon_sym_COMMA, - STATE(1221), 1, + STATE(1338), 1, aux_sym_array_expression_repeat1, - [48611] = 4, + [48492] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2709), 1, - anon_sym_LBRACE, - ACTIONS(3289), 1, - anon_sym_SEMI, - STATE(536), 1, - sym_declaration_list, - [48624] = 4, + ACTIONS(2571), 1, + anon_sym_LT2, + ACTIONS(3307), 1, + anon_sym_COLON_COLON, + STATE(944), 1, + sym_type_arguments, + [48505] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2713), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SEMI, - STATE(540), 1, - sym_field_declaration_list, - [48637] = 4, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(2979), 1, + anon_sym_EQ, + STATE(1665), 1, + sym_type_parameters, + [48518] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3293), 1, + ACTIONS(3309), 1, anon_sym_RBRACE, - ACTIONS(3295), 1, + ACTIONS(3311), 1, anon_sym_COMMA, - STATE(1407), 1, + STATE(1421), 1, aux_sym_field_declaration_list_repeat1, - [48650] = 4, + [48531] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1572), 1, + ACTIONS(565), 1, anon_sym_RPAREN, - ACTIONS(3297), 1, + ACTIONS(2051), 1, anon_sym_COMMA, - STATE(1216), 1, - aux_sym_slice_pattern_repeat1, - [48663] = 4, + STATE(1432), 1, + aux_sym_arguments_repeat1, + [48544] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3299), 1, + ACTIONS(3313), 1, anon_sym_RBRACE, - ACTIONS(3301), 1, + ACTIONS(3315), 1, anon_sym_COMMA, - STATE(1414), 1, + STATE(1424), 1, aux_sym_enum_variant_list_repeat2, - [48676] = 4, + [48557] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(2715), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, anon_sym_SEMI, - STATE(1682), 1, - sym_type_parameters, - [48689] = 4, + STATE(589), 1, + sym_declaration_list, + [48570] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2709), 1, + ACTIONS(2731), 1, anon_sym_LBRACE, - ACTIONS(3305), 1, + ACTIONS(3319), 1, anon_sym_SEMI, - STATE(559), 1, - sym_declaration_list, - [48702] = 4, + STATE(578), 1, + sym_field_declaration_list, + [48583] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1584), 1, + ACTIONS(1588), 1, anon_sym_RBRACK, - ACTIONS(3307), 1, + ACTIONS(3321), 1, anon_sym_COMMA, - STATE(1216), 1, + STATE(1164), 1, aux_sym_slice_pattern_repeat1, - [48715] = 4, + [48596] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2709), 1, + ACTIONS(2715), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3323), 1, anon_sym_SEMI, - STATE(545), 1, + STATE(593), 1, sym_declaration_list, - [48728] = 4, + [48609] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1540), 1, + ACTIONS(1544), 1, anon_sym_RPAREN, - ACTIONS(3311), 1, + ACTIONS(3325), 1, anon_sym_COMMA, - STATE(1241), 1, + STATE(1322), 1, aux_sym_tuple_pattern_repeat1, - [48741] = 4, + [48622] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3313), 1, + ACTIONS(3327), 1, anon_sym_COMMA, - ACTIONS(3315), 1, + ACTIONS(3329), 1, anon_sym_GT, - STATE(1419), 1, + STATE(1429), 1, aux_sym_type_arguments_repeat1, - [48754] = 4, + [48635] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2563), 1, - anon_sym_RBRACE, - ACTIONS(3317), 1, - anon_sym_COMMA, - STATE(1402), 1, - aux_sym_field_declaration_list_repeat1, - [48767] = 4, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(3331), 1, + anon_sym_SEMI, + STATE(1687), 1, + sym_type_parameters, + [48648] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3319), 1, + ACTIONS(3333), 1, anon_sym_RBRACE, - ACTIONS(3321), 1, + ACTIONS(3335), 1, anon_sym_COMMA, - STATE(1421), 1, + STATE(1431), 1, aux_sym_struct_pattern_repeat1, - [48780] = 4, + [48661] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2511), 1, + ACTIONS(3339), 1, + anon_sym_COLON, + ACTIONS(3337), 2, anon_sym_RBRACE, - ACTIONS(3323), 1, anon_sym_COMMA, - STATE(1383), 1, - aux_sym_enum_variant_list_repeat2, - [48793] = 4, + [48672] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3325), 1, - anon_sym_RBRACE, - ACTIONS(3327), 1, + ACTIONS(2151), 1, + anon_sym_RPAREN, + ACTIONS(3341), 1, anon_sym_COMMA, - STATE(1402), 1, - aux_sym_field_declaration_list_repeat1, - [48806] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2891), 1, - anon_sym_EQ, - STATE(1694), 1, - sym_type_parameters, - [48819] = 4, + STATE(1412), 1, + aux_sym_arguments_repeat1, + [48685] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, + ACTIONS(3344), 1, anon_sym_RBRACE, - ACTIONS(3330), 1, + ACTIONS(3346), 1, anon_sym_COMMA, - STATE(1402), 1, - aux_sym_field_declaration_list_repeat1, - [48832] = 4, + STATE(1291), 1, + aux_sym_field_initializer_list_repeat1, + [48698] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(736), 1, - anon_sym_RBRACK, - ACTIONS(3332), 1, + ACTIONS(2756), 1, + anon_sym_RPAREN, + ACTIONS(3348), 1, anon_sym_COMMA, - STATE(1221), 1, - aux_sym_array_expression_repeat1, - [48845] = 4, + STATE(1414), 1, + aux_sym_function_repeat1, + [48711] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2909), 1, + ACTIONS(2360), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 2, anon_sym_COMMA, - ACTIONS(2911), 1, anon_sym_GT, - STATE(1244), 1, - aux_sym_type_parameters_repeat1, - [48858] = 4, + [48722] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2571), 1, - anon_sym_RBRACE, - ACTIONS(3334), 1, + ACTIONS(730), 1, + anon_sym_RBRACK, + ACTIONS(3353), 1, anon_sym_COMMA, - STATE(1402), 1, - aux_sym_field_declaration_list_repeat1, - [48871] = 4, + STATE(1338), 1, + aux_sym_array_expression_repeat1, + [48735] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2765), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_SEMI, + STATE(327), 1, + sym_declaration_list, + [48748] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3336), 1, + ACTIONS(3357), 1, anon_sym_RBRACE, - ACTIONS(3338), 1, + ACTIONS(3359), 1, anon_sym_COMMA, - STATE(1417), 1, + STATE(1427), 1, aux_sym_struct_pattern_repeat1, - [48884] = 4, + [48761] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3340), 1, - anon_sym_RBRACE, - ACTIONS(3342), 1, - anon_sym_COMMA, - STATE(1230), 1, - aux_sym_enum_variant_list_repeat2, - [48897] = 3, + ACTIONS(2765), 1, + anon_sym_LBRACE, + ACTIONS(3361), 1, + anon_sym_SEMI, + STATE(270), 1, + sym_declaration_list, + [48774] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3346), 1, - anon_sym_COLON, - ACTIONS(3344), 2, + ACTIONS(2719), 1, + anon_sym_LT, + ACTIONS(3363), 1, + anon_sym_SEMI, + STATE(1733), 1, + sym_type_parameters, + [48787] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2583), 1, anon_sym_RBRACE, + ACTIONS(3365), 1, anon_sym_COMMA, - [48908] = 4, + STATE(1359), 1, + aux_sym_field_declaration_list_repeat1, + [48800] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2571), 1, + ACTIONS(2583), 1, anon_sym_RBRACE, - ACTIONS(3334), 1, + ACTIONS(3365), 1, anon_sym_COMMA, - STATE(1399), 1, + STATE(1396), 1, aux_sym_field_declaration_list_repeat1, - [48921] = 4, + [48813] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1586), 1, + ACTIONS(1594), 1, anon_sym_RPAREN, - ACTIONS(3348), 1, + ACTIONS(3367), 1, anon_sym_COMMA, - STATE(1216), 1, + STATE(1164), 1, aux_sym_slice_pattern_repeat1, - [48934] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3350), 1, - anon_sym_RBRACE, - ACTIONS(3352), 1, - anon_sym_COMMA, - STATE(1233), 1, - aux_sym_field_declaration_list_repeat1, - [48947] = 4, + [48826] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2497), 1, + ACTIONS(2575), 1, anon_sym_RBRACE, - ACTIONS(3354), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - STATE(1383), 1, + STATE(1253), 1, aux_sym_enum_variant_list_repeat2, - [48960] = 4, + [48839] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2497), 1, + ACTIONS(2575), 1, anon_sym_RBRACE, - ACTIONS(3354), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - STATE(1380), 1, + STATE(1394), 1, aux_sym_enum_variant_list_repeat2, - [48973] = 4, + [48852] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1390), 1, - anon_sym_RPAREN, - ACTIONS(3356), 1, + ACTIONS(2013), 1, + anon_sym_GT, + ACTIONS(3371), 1, anon_sym_COMMA, - STATE(1420), 1, - aux_sym_parameters_repeat1, - [48986] = 4, + STATE(1301), 1, + aux_sym_type_parameters_repeat1, + [48865] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2917), 1, + ACTIONS(2971), 1, anon_sym_RBRACE, - ACTIONS(3358), 1, + ACTIONS(3373), 1, anon_sym_COMMA, - STATE(1365), 1, + STATE(1342), 1, aux_sym_struct_pattern_repeat1, - [48999] = 4, + [48878] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2537), 1, - anon_sym_LT2, - ACTIONS(3360), 1, - anon_sym_COLON_COLON, - STATE(924), 1, - sym_type_arguments, - [49012] = 4, + ACTIONS(2033), 1, + anon_sym_COMMA, + ACTIONS(2035), 1, + anon_sym_RPAREN, + STATE(1344), 1, + aux_sym_arguments_repeat1, + [48891] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1632), 1, + ACTIONS(1636), 1, anon_sym_GT, - ACTIONS(3362), 1, + ACTIONS(3375), 1, anon_sym_COMMA, - STATE(1369), 1, + STATE(1300), 1, aux_sym_type_arguments_repeat1, - [49025] = 4, + [48904] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2921), 1, - anon_sym_RPAREN, - ACTIONS(3364), 1, + ACTIONS(2963), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 2, anon_sym_COMMA, - STATE(1420), 1, - aux_sym_parameters_repeat1, - [49038] = 4, + anon_sym_GT, + [48915] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2919), 1, + ACTIONS(2975), 1, anon_sym_RBRACE, - ACTIONS(3367), 1, + ACTIONS(3377), 1, anon_sym_COMMA, - STATE(1365), 1, + STATE(1342), 1, aux_sym_struct_pattern_repeat1, - [49051] = 4, + [48928] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(583), 1, + ACTIONS(567), 1, anon_sym_RPAREN, - ACTIONS(3369), 1, + ACTIONS(3379), 1, anon_sym_COMMA, - STATE(1342), 1, + STATE(1412), 1, aux_sym_arguments_repeat1, - [49064] = 4, + [48941] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(724), 1, - anon_sym_RBRACK, - ACTIONS(2015), 1, - anon_sym_COMMA, - STATE(1221), 1, - aux_sym_array_expression_repeat1, - [49077] = 4, + ACTIONS(2765), 1, + anon_sym_LBRACE, + ACTIONS(3381), 1, + anon_sym_SEMI, + STATE(286), 1, + sym_declaration_list, + [48954] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2430), 1, + ACTIONS(2476), 1, anon_sym_RBRACE, - ACTIONS(3371), 1, + ACTIONS(3383), 1, anon_sym_COMMA, - STATE(1337), 1, + STATE(1242), 1, aux_sym_field_initializer_list_repeat1, - [49090] = 2, + [48967] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3373), 2, - sym_identifier, - sym_super, - [49098] = 3, + ACTIONS(1584), 1, + anon_sym_RPAREN, + ACTIONS(3385), 1, + anon_sym_COMMA, + STATE(1164), 1, + aux_sym_slice_pattern_repeat1, + [48980] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(45), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - STATE(139), 1, - sym_closure_parameters, - [49108] = 3, + ACTIONS(3387), 1, + anon_sym_EQ, + [48990] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3375), 1, - anon_sym_SEMI, - ACTIONS(3377), 1, - anon_sym_EQ, - [49118] = 3, + ACTIONS(269), 1, + anon_sym_LBRACE, + STATE(787), 1, + sym_block, + [49000] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3379), 1, + ACTIONS(3389), 1, anon_sym_BANG, - ACTIONS(3381), 1, + ACTIONS(3391), 1, anon_sym_LBRACK, - [49128] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3383), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [49136] = 3, + [49010] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(3385), 1, + ACTIONS(3393), 1, anon_sym_in, - [49146] = 3, + [49020] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3387), 1, + ACTIONS(3395), 1, anon_sym_BANG, - ACTIONS(3389), 1, + ACTIONS(3397), 1, anon_sym_LBRACK, - [49156] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3325), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [49164] = 3, + [49030] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3391), 1, + ACTIONS(3399), 1, anon_sym_of, - ACTIONS(3393), 1, + ACTIONS(3401), 1, anon_sym_EQ, - [49174] = 3, + [49040] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3080), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [49048] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(3395), 1, + ACTIONS(3403), 1, anon_sym_COLON, - [49184] = 3, + [49058] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2577), 1, anon_sym_PIPE, - ACTIONS(3395), 1, + ACTIONS(3403), 1, anon_sym_COLON, - [49194] = 3, + [49068] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3397), 1, + ACTIONS(3405), 1, anon_sym_of, - ACTIONS(3399), 1, + ACTIONS(3407), 1, anon_sym_EQ, - [49204] = 3, + [49078] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(3401), 1, + ACTIONS(3409), 1, anon_sym_in, - [49214] = 3, + [49088] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3403), 1, + ACTIONS(3411), 1, anon_sym_SEMI, - ACTIONS(3405), 1, + ACTIONS(3413), 1, anon_sym_EQ, - [49224] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3344), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [49232] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3039), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49240] = 3, + [49098] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3407), 1, + ACTIONS(3415), 1, anon_sym_BANG, - ACTIONS(3409), 1, + ACTIONS(3417), 1, anon_sym_LBRACK, - [49250] = 3, + [49108] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2943), 1, + ACTIONS(2883), 1, sym_super, - ACTIONS(3411), 1, + ACTIONS(3419), 1, sym_identifier, - [49260] = 2, + [49118] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3413), 2, + ACTIONS(3421), 2, anon_sym_type, anon_sym_fn, - [49268] = 2, + [49126] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(123), 1, + sym_block, + [49136] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3280), 2, + ACTIONS(45), 1, + anon_sym_PIPE, + STATE(142), 1, + sym_closure_parameters, + [49146] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3061), 2, anon_sym_RBRACE, anon_sym_COMMA, - [49276] = 3, + [49154] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(73), 1, - sym_block, - [49286] = 3, + ACTIONS(3250), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [49162] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3415), 1, + ACTIONS(3423), 1, + anon_sym_SEMI, + ACTIONS(3425), 1, + anon_sym_EQ, + [49172] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3427), 1, anon_sym_COLON_COLON, - ACTIONS(3417), 1, + ACTIONS(3429), 1, anon_sym_RPAREN, - [49296] = 3, + [49182] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3419), 1, + ACTIONS(3431), 1, anon_sym_COLON_COLON, - ACTIONS(3421), 1, + ACTIONS(3433), 1, anon_sym_RPAREN, - [49306] = 3, + [49192] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3417), 1, + ACTIONS(3429), 1, anon_sym_RPAREN, - ACTIONS(3423), 1, + ACTIONS(3435), 1, anon_sym_COLON_COLON, - [49316] = 3, + [49202] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3417), 1, + ACTIONS(3429), 1, anon_sym_RPAREN, - ACTIONS(3425), 1, + ACTIONS(3437), 1, anon_sym_COLON_COLON, - [49326] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(259), 1, - anon_sym_LBRACE, - STATE(845), 1, - sym_block, - [49336] = 3, + [49212] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(136), 1, - sym_closure_parameters, - [49346] = 3, + ACTIONS(2185), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [49220] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2937), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - STATE(541), 1, - sym_enum_variant_list, - [49356] = 2, + STATE(738), 1, + sym_block, + [49230] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2577), 2, + ACTIONS(2415), 1, sym_identifier, - sym_super, - [49364] = 3, + ACTIONS(3439), 1, + anon_sym_LPAREN, + [49240] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1640), 1, + ACTIONS(2995), 1, anon_sym_LBRACE, - STATE(495), 1, - sym_field_initializer_list, - [49374] = 2, + STATE(553), 1, + sym_enum_variant_list, + [49250] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2921), 2, + ACTIONS(3046), 2, anon_sym_COMMA, anon_sym_RPAREN, - [49382] = 3, + [49258] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2903), 1, + ACTIONS(1660), 1, anon_sym_LBRACE, - STATE(265), 1, - sym_enum_variant_list, - [49392] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2833), 2, - sym_identifier, - sym_super, - [49400] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3427), 1, - anon_sym_of, - ACTIONS(3429), 1, - anon_sym_EQ, - [49410] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3431), 1, - anon_sym_SEMI, - ACTIONS(3433), 1, - anon_sym_EQ, - [49420] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2609), 1, - anon_sym_COLON_COLON, - ACTIONS(3435), 1, - anon_sym_BANG, - [49430] = 3, + STATE(506), 1, + sym_field_initializer_list, + [49268] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3437), 1, + ACTIONS(3441), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3439), 1, - anon_sym_EQ, - [49440] = 3, + [49276] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2587), 1, + ACTIONS(2354), 1, anon_sym_COLON_COLON, - ACTIONS(3435), 1, + ACTIONS(2464), 1, anon_sym_BANG, - [49450] = 3, + [49286] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2603), 1, + ACTIONS(2350), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3441), 1, - anon_sym_BANG, - [49460] = 3, + [49296] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3443), 1, - anon_sym_SEMI, - ACTIONS(3445), 1, - anon_sym_RBRACK, - [49470] = 3, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(494), 1, + sym_block, + [49306] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2537), 1, - anon_sym_LT2, - STATE(928), 1, - sym_type_arguments, - [49480] = 3, + ACTIONS(2322), 1, + anon_sym_BANG, + ACTIONS(3445), 1, + anon_sym_COLON_COLON, + [49316] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2302), 1, - anon_sym_BANG, ACTIONS(3447), 1, - anon_sym_COLON_COLON, - [49490] = 3, + anon_sym_SEMI, + ACTIONS(3449), 1, + anon_sym_EQ, + [49326] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(259), 1, - anon_sym_LBRACE, - STATE(838), 1, - sym_block, - [49500] = 2, + ACTIONS(3451), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [49334] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3449), 2, + ACTIONS(2356), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [49508] = 2, + ACTIONS(2474), 1, + anon_sym_COLON_COLON, + [49344] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3451), 2, + ACTIONS(3453), 2, anon_sym_LBRACE, anon_sym_SEMI, - [49516] = 3, + [49352] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, + ACTIONS(3455), 2, anon_sym_LBRACE, - STATE(479), 1, - sym_block, - [49526] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3453), 1, anon_sym_SEMI, - ACTIONS(3455), 1, - anon_sym_EQ, - [49536] = 3, + [49360] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3425), 1, - anon_sym_COLON_COLON, - ACTIONS(3457), 1, - anon_sym_RPAREN, - [49546] = 2, + ACTIONS(3457), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [49368] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3459), 2, anon_sym_LBRACE, anon_sym_SEMI, - [49554] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3423), 1, - anon_sym_COLON_COLON, - ACTIONS(3457), 1, - anon_sym_RPAREN, - [49564] = 3, + [49376] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3419), 1, - anon_sym_COLON_COLON, ACTIONS(3461), 1, - anon_sym_RPAREN, - [49574] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3415), 1, - anon_sym_COLON_COLON, - ACTIONS(3457), 1, - anon_sym_RPAREN, - [49584] = 2, + anon_sym_SEMI, + ACTIONS(3463), 1, + anon_sym_EQ, + [49386] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3463), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [49592] = 3, + ACTIONS(528), 2, + anon_sym_COMMA, + anon_sym_GT, + [49394] = 3, ACTIONS(3), 1, sym_line_comment, + ACTIONS(2847), 1, + anon_sym_PIPE, ACTIONS(3465), 1, - sym_identifier, - ACTIONS(3467), 1, - sym_super, - [49602] = 3, + anon_sym_COLON, + [49404] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2941), 1, - anon_sym_LPAREN, - ACTIONS(3469), 1, - anon_sym_COLON_COLON, - [49612] = 3, + ACTIONS(3467), 2, + anon_sym_COMMA, + anon_sym_GT, + [49412] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2943), 1, - sym_super, - ACTIONS(3471), 1, - sym_identifier, - [49622] = 2, + ACTIONS(2603), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_BANG, + [49422] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3279), 2, anon_sym_COMMA, anon_sym_GT, - [49630] = 3, + [49430] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2424), 1, - sym_identifier, - ACTIONS(3473), 1, - anon_sym_LPAREN, - [49640] = 3, + ACTIONS(3471), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [49438] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(259), 1, - anon_sym_LBRACE, - STATE(848), 1, - sym_block, - [49650] = 3, + ACTIONS(2883), 1, + sym_super, + ACTIONS(3473), 1, + sym_identifier, + [49448] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1953), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - STATE(869), 1, - sym_field_initializer_list, - [49660] = 3, + STATE(776), 1, + sym_block, + [49458] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(3475), 1, anon_sym_SEMI, ACTIONS(3477), 1, anon_sym_EQ, - [49670] = 2, + [49468] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2943), 2, + ACTIONS(3479), 1, sym_identifier, + ACTIONS(3481), 1, sym_super, - [49678] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2577), 1, - sym_super, - ACTIONS(2913), 1, - sym_identifier, - [49688] = 3, + [49478] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2463), 1, - anon_sym_BANG, - ACTIONS(3447), 1, - anon_sym_COLON_COLON, - [49698] = 3, + ACTIONS(2847), 1, + anon_sym_PIPE, + ACTIONS(3483), 1, + anon_sym_EQ, + [49488] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(259), 1, + ACTIONS(3485), 2, anon_sym_LBRACE, - STATE(852), 1, - sym_block, - [49708] = 3, + anon_sym_SEMI, + [49496] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2847), 1, anon_sym_PIPE, - ACTIONS(3479), 1, + ACTIONS(2965), 1, anon_sym_COLON, - [49718] = 2, + [49506] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3109), 2, - anon_sym_COMMA, + ACTIONS(45), 1, anon_sym_PIPE, - [49726] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3481), 1, - sym_identifier, - ACTIONS(3483), 1, - sym_super, - [49736] = 3, + STATE(139), 1, + sym_closure_parameters, + [49516] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(886), 1, + ACTIONS(3487), 2, anon_sym_LBRACE, - STATE(355), 1, - sym_block, - [49746] = 2, + anon_sym_SEMI, + [49524] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3261), 2, + ACTIONS(3128), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [49754] = 3, + [49532] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(145), 1, - sym_closure_parameters, - [49764] = 2, + ACTIONS(3489), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [49540] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3245), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [49772] = 2, + ACTIONS(2869), 1, + anon_sym_LBRACE, + STATE(322), 1, + sym_enum_variant_list, + [49550] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3485), 2, + ACTIONS(3491), 2, anon_sym_LBRACE, anon_sym_SEMI, - [49780] = 3, + [49558] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2943), 1, - sym_super, - ACTIONS(3465), 1, - sym_identifier, - [49790] = 3, + ACTIONS(2464), 1, + anon_sym_BANG, + ACTIONS(3445), 1, + anon_sym_COLON_COLON, + [49568] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2875), 1, - sym_identifier, - ACTIONS(2877), 1, - sym_super, - [49800] = 3, + ACTIONS(269), 1, + anon_sym_LBRACE, + STATE(796), 1, + sym_block, + [49578] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3467), 1, - sym_super, - ACTIONS(3487), 1, - sym_identifier, - [49810] = 3, + ACTIONS(2855), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + [49588] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3489), 1, - anon_sym_LBRACE, - STATE(101), 1, - sym_block, - [49820] = 3, + ACTIONS(3493), 1, + sym_identifier, + ACTIONS(3495), 1, + sym_super, + [49598] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3491), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - STATE(692), 1, + STATE(353), 1, sym_block, - [49830] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(144), 1, - sym_closure_parameters, - [49840] = 3, + [49608] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(45), 1, anon_sym_PIPE, - STATE(133), 1, + STATE(145), 1, sym_closure_parameters, - [49850] = 3, + [49618] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(886), 1, + ACTIONS(1948), 1, anon_sym_LBRACE, - STATE(345), 1, - sym_block, - [49860] = 3, + STATE(763), 1, + sym_field_initializer_list, + [49628] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, + ACTIONS(3497), 2, anon_sym_LBRACE, - STATE(78), 1, - sym_block, - [49870] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2827), 1, - anon_sym_PIPE, - ACTIONS(3493), 1, - anon_sym_in, - [49880] = 2, + anon_sym_SEMI, + [49636] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2085), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49888] = 3, + ACTIONS(2883), 1, + sym_super, + ACTIONS(3479), 1, + sym_identifier, + [49646] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3495), 1, + ACTIONS(2947), 1, sym_identifier, - ACTIONS(3497), 1, + ACTIONS(2949), 1, sym_super, - [49898] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(513), 2, - anon_sym_COMMA, - anon_sym_GT, - [49906] = 3, + [49656] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2336), 1, - anon_sym_COLON_COLON, - ACTIONS(2463), 1, - anon_sym_BANG, - [49916] = 2, + ACTIONS(2571), 1, + anon_sym_LT2, + STATE(943), 1, + sym_type_arguments, + [49666] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3499), 2, anon_sym_LBRACE, anon_sym_SEMI, - [49924] = 3, + [49674] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2577), 1, - sym_super, - ACTIONS(2843), 1, - sym_identifier, - [49934] = 3, + ACTIONS(3501), 1, + anon_sym_LBRACE, + STATE(623), 1, + sym_block, + [49684] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3501), 1, - sym_identifier, - ACTIONS(3503), 1, - sym_super, - [49944] = 2, + ACTIONS(3150), 2, + anon_sym_COMMA, + anon_sym_GT, + [49692] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(894), 1, + anon_sym_LBRACE, + STATE(354), 1, + sym_block, + [49702] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3503), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [49710] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3505), 2, anon_sym_LBRACE, anon_sym_SEMI, - [49952] = 3, + [49718] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3503), 1, - sym_super, + ACTIONS(2633), 1, + anon_sym_COLON_COLON, ACTIONS(3507), 1, - sym_identifier, - [49962] = 3, + anon_sym_BANG, + [49728] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(3509), 1, - sym_numeric_literal, - ACTIONS(3511), 1, sym_identifier, - [49972] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2328), 1, - anon_sym_LBRACE, - ACTIONS(3469), 1, - anon_sym_COLON_COLON, - [49982] = 3, + ACTIONS(3511), 1, + sym_super, + [49738] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(466), 1, - sym_block, - [49992] = 2, + ACTIONS(2617), 1, + sym_super, + ACTIONS(2889), 1, + sym_identifier, + [49748] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3513), 2, - anon_sym_COMMA, - anon_sym_GT, - [50000] = 3, + sym_identifier, + sym_super, + [49756] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, - anon_sym_PIPE, + ACTIONS(3427), 1, + anon_sym_COLON_COLON, ACTIONS(3515), 1, - anon_sym_EQ, - [50010] = 3, + anon_sym_RPAREN, + [49766] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3503), 1, + ACTIONS(2617), 1, sym_super, - ACTIONS(3517), 1, + ACTIONS(2933), 1, sym_identifier, - [50020] = 3, + [49776] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2338), 1, - anon_sym_LBRACE, - ACTIONS(2449), 1, - anon_sym_COLON_COLON, - [50030] = 3, + ACTIONS(3225), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [49784] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2302), 1, - anon_sym_BANG, - ACTIONS(3519), 1, - anon_sym_COLON_COLON, - [50040] = 3, + ACTIONS(3481), 1, + sym_super, + ACTIONS(3517), 1, + sym_identifier, + [49794] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 1, - anon_sym_LT2, - STATE(487), 1, - sym_type_arguments, - [50050] = 3, + ACTIONS(3513), 1, + sym_super, + ACTIONS(3519), 1, + sym_identifier, + [49804] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2577), 1, + ACTIONS(2617), 1, sym_super, - ACTIONS(2985), 1, + ACTIONS(3015), 1, sym_identifier, - [50060] = 2, + [49814] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3521), 2, - anon_sym_LBRACE, + ACTIONS(3521), 1, anon_sym_SEMI, - [50068] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3135), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [50076] = 3, + ACTIONS(3523), 1, + anon_sym_EQ, + [49824] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3523), 1, - anon_sym_SEMI, ACTIONS(3525), 1, - anon_sym_EQ, - [50086] = 3, + anon_sym_LBRACE, + STATE(126), 1, + sym_block, + [49834] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3527), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(445), 1, + STATE(107), 1, sym_block, - [50096] = 2, + [49844] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3529), 2, - anon_sym_COMMA, - anon_sym_GT, - [50104] = 3, + ACTIONS(2841), 2, + sym_identifier, + sym_super, + [49852] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3531), 1, + ACTIONS(3431), 1, anon_sym_COLON_COLON, - ACTIONS(3533), 1, - anon_sym_LPAREN, - [50114] = 3, + ACTIONS(3527), 1, + anon_sym_RPAREN, + [49862] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3373), 1, - sym_super, - ACTIONS(3535), 1, - sym_identifier, - [50124] = 3, + ACTIONS(2623), 1, + anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_BANG, + [49872] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(132), 1, - sym_closure_parameters, - [50134] = 2, + ACTIONS(2322), 1, + anon_sym_BANG, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + [49882] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3537), 2, + ACTIONS(3531), 2, anon_sym_LBRACE, anon_sym_SEMI, - [50142] = 3, + [49890] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(259), 1, - anon_sym_LBRACE, - STATE(857), 1, - sym_block, - [50152] = 3, + ACTIONS(3533), 2, + sym_identifier, + sym_super, + [49898] = 3, ACTIONS(3), 1, sym_line_comment, + ACTIONS(3533), 1, + sym_super, + ACTIONS(3535), 1, + sym_identifier, + [49908] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3537), 1, + anon_sym_COLON_COLON, ACTIONS(3539), 1, - anon_sym_of, - ACTIONS(3541), 1, - anon_sym_EQ, - [50162] = 3, + anon_sym_LPAREN, + [49918] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3519), 1, + sym_identifier, + ACTIONS(3533), 1, + sym_super, + [49928] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(3541), 1, - anon_sym_EQ, - ACTIONS(3543), 1, anon_sym_SEMI, - [50172] = 3, + ACTIONS(3543), 1, + anon_sym_EQ, + [49938] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, - anon_sym_PIPE, ACTIONS(3545), 1, + anon_sym_of, + ACTIONS(3547), 1, anon_sym_EQ, - [50182] = 3, + [49948] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, - anon_sym_PIPE, - ACTIONS(2899), 1, - anon_sym_COLON, - [50192] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3467), 1, - sym_super, - ACTIONS(3547), 1, + ACTIONS(2883), 2, sym_identifier, - [50202] = 2, + sym_super, + [49956] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3191), 2, + ACTIONS(2151), 2, anon_sym_COMMA, - anon_sym_GT, - [50210] = 3, + anon_sym_RPAREN, + [49964] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3549), 1, - anon_sym_LBRACE, - STATE(327), 1, - sym_block, - [50220] = 2, + ACTIONS(3549), 2, + anon_sym_COMMA, + anon_sym_GT, + [49972] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3467), 2, - sym_identifier, + ACTIONS(2841), 1, sym_super, - [50228] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3551), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [50236] = 3, + ACTIONS(2861), 1, + sym_identifier, + [49982] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2833), 1, - sym_super, - ACTIONS(2959), 1, - sym_identifier, - [50246] = 3, + ACTIONS(3183), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [49990] = 3, ACTIONS(3), 1, sym_line_comment, + ACTIONS(3551), 1, + anon_sym_SEMI, ACTIONS(3553), 1, - sym_numeric_literal, - ACTIONS(3555), 1, - sym_identifier, - [50256] = 3, + anon_sym_RBRACK, + [50000] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2833), 1, + ACTIONS(3513), 1, sym_super, - ACTIONS(2857), 1, + ACTIONS(3555), 1, sym_identifier, - [50266] = 2, + [50010] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2113), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50274] = 2, + ACTIONS(45), 1, + anon_sym_PIPE, + STATE(150), 1, + sym_closure_parameters, + [50020] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3557), 2, anon_sym_RBRACE, anon_sym_COMMA, - [50282] = 3, + [50028] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3373), 1, + ACTIONS(2841), 1, sym_super, - ACTIONS(3559), 1, + ACTIONS(2933), 1, sym_identifier, - [50292] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3561), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [50300] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2903), 1, - anon_sym_LBRACE, - STATE(318), 1, - sym_enum_variant_list, - [50310] = 2, + [50038] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3503), 2, - sym_identifier, + ACTIONS(3481), 1, sym_super, - [50318] = 2, + ACTIONS(3559), 1, + sym_identifier, + [50048] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3563), 2, - anon_sym_LBRACE, + ACTIONS(3561), 1, anon_sym_SEMI, - [50326] = 3, + ACTIONS(3563), 1, + anon_sym_EQ, + [50058] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3373), 1, - sym_super, ACTIONS(3565), 1, - sym_identifier, - [50336] = 2, + anon_sym_LBRACE, + STATE(332), 1, + sym_block, + [50068] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3567), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [50344] = 2, + ACTIONS(2847), 1, + anon_sym_PIPE, + ACTIONS(3567), 1, + anon_sym_in, + [50078] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3569), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [50352] = 3, + ACTIONS(3053), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [50086] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2937), 1, + ACTIONS(2995), 1, anon_sym_LBRACE, - STATE(597), 1, + STATE(576), 1, sym_enum_variant_list, - [50362] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3571), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [50370] = 2, + [50096] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3186), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [50378] = 3, + ACTIONS(3569), 1, + sym_numeric_literal, + ACTIONS(3571), 1, + sym_identifier, + [50106] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3573), 1, + ACTIONS(2839), 1, sym_identifier, - ACTIONS(3575), 1, + ACTIONS(2841), 1, sym_super, - [50388] = 3, + [50116] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2833), 1, - sym_super, - ACTIONS(2897), 1, - sym_identifier, - [50398] = 2, + ACTIONS(2328), 1, + anon_sym_LT2, + STATE(483), 1, + sym_type_arguments, + [50126] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2855), 2, - anon_sym_COMMA, + ACTIONS(3435), 1, + anon_sym_COLON_COLON, + ACTIONS(3515), 1, anon_sym_RPAREN, - [50406] = 3, + [50136] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2957), 1, - anon_sym_LPAREN, - STATE(1054), 1, - sym_parameters, - [50416] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2831), 1, - sym_identifier, - ACTIONS(2851), 1, + ACTIONS(3533), 1, sym_super, - [50426] = 2, + ACTIONS(3573), 1, + sym_identifier, + [50146] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3577), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [50434] = 3, + ACTIONS(3437), 1, + anon_sym_COLON_COLON, + ACTIONS(3515), 1, + anon_sym_RPAREN, + [50156] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3467), 1, - sym_super, - ACTIONS(3579), 1, - sym_identifier, - [50444] = 3, + ACTIONS(3407), 1, + anon_sym_EQ, + ACTIONS(3575), 1, + anon_sym_SEMI, + [50166] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3581), 1, - sym_identifier, - ACTIONS(3583), 1, - sym_super, - [50454] = 3, + ACTIONS(3577), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [50174] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, + ACTIONS(3579), 1, anon_sym_LBRACE, - STATE(502), 1, + STATE(457), 1, sym_block, - [50464] = 2, + [50184] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3585), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [50472] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3373), 1, + ACTIONS(3533), 1, sym_super, - ACTIONS(3507), 1, + ACTIONS(3581), 1, sym_identifier, - [50482] = 3, + [50194] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2873), 1, - anon_sym_LT2, - STATE(872), 1, - sym_type_arguments, - [50492] = 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(514), 1, + sym_block, + [50204] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3587), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [50500] = 3, + ACTIONS(3583), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [50212] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3373), 1, - sym_super, - ACTIONS(3581), 1, - sym_identifier, - [50510] = 3, + ACTIONS(2871), 1, + anon_sym_LPAREN, + STATE(1078), 1, + sym_parameters, + [50222] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3589), 1, + ACTIONS(3585), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3591), 1, - anon_sym_EQ, - [50520] = 2, + [50230] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3593), 2, + ACTIONS(2869), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [50528] = 3, + STATE(259), 1, + sym_enum_variant_list, + [50240] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2833), 1, - sym_super, - ACTIONS(2843), 1, + ACTIONS(3587), 1, sym_identifier, - [50538] = 3, + ACTIONS(3589), 1, + sym_super, + [50250] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2831), 1, - sym_identifier, - ACTIONS(2833), 1, + ACTIONS(2841), 1, sym_super, - [50548] = 3, + ACTIONS(2891), 1, + sym_identifier, + [50260] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3467), 1, + ACTIONS(3481), 1, sym_super, - ACTIONS(3573), 1, + ACTIONS(3591), 1, sym_identifier, - [50558] = 3, + [50270] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3399), 1, - anon_sym_EQ, + ACTIONS(3593), 1, + anon_sym_of, ACTIONS(3595), 1, - anon_sym_SEMI, - [50568] = 2, + anon_sym_EQ, + [50280] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3597), 1, - anon_sym_SEMI, - [50575] = 2, + ACTIONS(2897), 1, + sym_identifier, + ACTIONS(2903), 1, + sym_super, + [50290] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3599), 1, + ACTIONS(3597), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [50582] = 2, + [50298] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3168), 1, - anon_sym_RBRACE, - [50589] = 2, + ACTIONS(3533), 1, + sym_super, + ACTIONS(3599), 1, + sym_identifier, + [50308] = 3, ACTIONS(3), 1, sym_line_comment, + ACTIONS(3599), 1, + sym_identifier, ACTIONS(3601), 1, - anon_sym_SEMI, - [50596] = 2, + sym_super, + [50318] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(742), 1, - anon_sym_RBRACK, - [50603] = 2, + ACTIONS(2945), 1, + anon_sym_LT2, + STATE(847), 1, + sym_type_arguments, + [50328] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(3603), 1, + sym_numeric_literal, + ACTIONS(3605), 1, sym_identifier, - [50610] = 2, + [50338] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(2841), 1, - anon_sym_RPAREN, - [50617] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3605), 1, - anon_sym_EQ_GT, - [50624] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2823), 1, - anon_sym_RBRACK, - [50631] = 2, + sym_super, + ACTIONS(2897), 1, + sym_identifier, + [50348] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2983), 1, - anon_sym_RPAREN, - [50638] = 2, + ACTIONS(3513), 1, + sym_super, + ACTIONS(3607), 1, + sym_identifier, + [50358] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3607), 1, - anon_sym_RBRACK, - [50645] = 2, + ACTIONS(3059), 2, + anon_sym_COMMA, + anon_sym_GT, + [50366] = 3, ACTIONS(3), 1, sym_line_comment, + ACTIONS(3595), 1, + anon_sym_EQ, ACTIONS(3609), 1, - anon_sym_RBRACK, - [50652] = 2, + anon_sym_SEMI, + [50376] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3611), 1, - anon_sym_DQUOTE, - [50659] = 2, + ACTIONS(3204), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50384] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3178), 1, - anon_sym_RBRACE, - [50666] = 2, + ACTIONS(2617), 2, + sym_identifier, + sym_super, + [50392] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2973), 1, - anon_sym_RBRACK, - [50673] = 2, + ACTIONS(2901), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50400] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3613), 1, + ACTIONS(3481), 2, sym_identifier, - [50680] = 2, + sym_super, + [50408] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3615), 1, + ACTIONS(3481), 1, + sym_super, + ACTIONS(3587), 1, sym_identifier, - [50687] = 2, + [50418] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2971), 1, - anon_sym_RPAREN, - [50694] = 2, + ACTIONS(3611), 1, + anon_sym_SEMI, + [50425] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3617), 1, - anon_sym_RBRACK, - [50701] = 2, + ACTIONS(3613), 1, + anon_sym_SEMI, + [50432] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(726), 1, + ACTIONS(714), 1, anon_sym_RBRACK, - [50708] = 2, + [50439] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2979), 1, - anon_sym_RPAREN, - [50715] = 2, + ACTIONS(3615), 1, + anon_sym_COLON, + [50446] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3617), 1, + sym_identifier, + [50453] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3619), 1, - anon_sym_RBRACK, - [50722] = 2, + anon_sym_SEMI, + [50460] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3621), 1, - sym_identifier, - [50729] = 2, + anon_sym_DQUOTE, + [50467] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3309), 1, + anon_sym_RBRACE, + [50474] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3623), 1, - sym_identifier, - [50736] = 2, + anon_sym_RBRACK, + [50481] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3625), 1, - sym_identifier, - [50743] = 2, + anon_sym_SEMI, + [50488] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3627), 1, - sym_identifier, - [50750] = 2, + ACTIONS(3185), 1, + anon_sym_COLON, + [50495] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3629), 1, + ACTIONS(3627), 1, sym_identifier, - [50757] = 2, + [50502] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3631), 1, + ACTIONS(3629), 1, anon_sym_RBRACK, - [50764] = 2, + [50509] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3633), 1, + ACTIONS(3631), 1, anon_sym_DQUOTE, - [50771] = 2, + [50516] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3635), 1, - anon_sym_RPAREN, - [50778] = 2, + ACTIONS(2912), 1, + anon_sym_RBRACK, + [50523] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3637), 1, + ACTIONS(3179), 1, anon_sym_RBRACE, - [50785] = 2, + [50530] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3208), 1, anon_sym_RBRACE, - [50792] = 2, + [50537] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2918), 1, + anon_sym_RPAREN, + [50544] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3633), 1, + anon_sym_RBRACK, + [50551] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(734), 1, + anon_sym_RBRACK, + [50558] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3635), 1, + sym_identifier, + [50565] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3637), 1, + sym_identifier, + [50572] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3639), 1, - anon_sym_SEMI, - [50799] = 2, + anon_sym_RBRACK, + [50579] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3641), 1, sym_identifier, - [50806] = 2, - ACTIONS(3643), 1, - aux_sym_string_literal_token2, - ACTIONS(3645), 1, + [50586] = 2, + ACTIONS(3), 1, sym_line_comment, - [50813] = 2, + ACTIONS(3643), 1, + sym_identifier, + [50593] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2189), 1, - anon_sym_COLON_COLON, - [50820] = 2, + ACTIONS(3645), 1, + sym_identifier, + [50600] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3647), 1, - anon_sym_DQUOTE, - [50827] = 2, + sym_identifier, + [50607] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3649), 1, - anon_sym_RBRACE, - [50834] = 2, + sym_identifier, + [50614] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3651), 1, - anon_sym_DQUOTE, - [50841] = 2, + sym_identifier, + [50621] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3653), 1, - anon_sym_COLON, - [50848] = 2, + sym_identifier, + [50628] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3655), 1, sym_identifier, - [50855] = 2, + [50635] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3657), 1, sym_identifier, - [50862] = 2, + [50642] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3659), 1, sym_identifier, - [50869] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2340), 1, - anon_sym_COLON_COLON, - [50876] = 2, + [50649] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3661), 1, - anon_sym_RBRACE, - [50883] = 2, + anon_sym_SEMI, + [50656] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3663), 1, - anon_sym_SEMI, - [50890] = 2, - ACTIONS(3), 1, + anon_sym_RBRACK, + [50663] = 2, + ACTIONS(3665), 1, + aux_sym_string_literal_token2, + ACTIONS(3667), 1, sym_line_comment, - ACTIONS(2019), 1, - anon_sym_RPAREN, - [50897] = 2, + [50670] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3665), 1, + ACTIONS(2049), 1, anon_sym_COLON_COLON, - [50904] = 2, + [50677] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3667), 1, - sym_identifier, - [50911] = 2, + ACTIONS(3011), 1, + anon_sym_RBRACK, + [50684] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3669), 1, - sym_identifier, - [50918] = 2, + anon_sym_DQUOTE, + [50691] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3009), 1, + anon_sym_RPAREN, + [50698] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3671), 1, - sym_identifier, - [50925] = 2, + anon_sym_RBRACE, + [50705] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3673), 1, - sym_identifier, - [50932] = 2, + anon_sym_SEMI, + [50712] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3675), 1, - sym_identifier, - [50939] = 2, + anon_sym_RBRACE, + [50719] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3677), 1, sym_identifier, - [50946] = 2, + [50726] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2358), 1, + anon_sym_COLON_COLON, + [50733] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3679), 1, - sym_identifier, - [50953] = 2, + anon_sym_RBRACK, + [50740] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3681), 1, - sym_identifier, - [50960] = 2, + anon_sym_RBRACK, + [50747] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3683), 1, - sym_identifier, - [50967] = 2, + anon_sym_SEMI, + [50754] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3685), 1, - anon_sym_SEMI, - [50974] = 2, + anon_sym_COLON_COLON, + [50761] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3687), 1, - sym_identifier, - [50981] = 2, + anon_sym_DQUOTE, + [50768] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3236), 1, + anon_sym_COLON, + [50775] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3689), 1, - anon_sym_RBRACK, - [50988] = 2, + sym_identifier, + [50782] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3691), 1, - anon_sym_RPAREN, - [50995] = 2, + ACTIONS(3257), 1, + anon_sym_RBRACE, + [50789] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3693), 1, - anon_sym_SEMI, - [51002] = 2, + ACTIONS(3691), 1, + sym_identifier, + [50796] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3235), 1, - anon_sym_RBRACE, - [51009] = 2, + ACTIONS(3693), 1, + sym_identifier, + [50803] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3695), 1, - anon_sym_RBRACK, - [51016] = 2, + sym_identifier, + [50810] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3697), 1, - anon_sym_RBRACK, - [51023] = 2, + sym_identifier, + [50817] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3699), 1, - sym_identifier, - [51030] = 2, + sym_numeric_literal, + [50824] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3701), 1, - anon_sym_EQ_GT, - [51037] = 2, + sym_identifier, + [50831] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3703), 1, - anon_sym_DQUOTE, - [51044] = 2, + sym_identifier, + [50838] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3705), 1, - anon_sym_EQ_GT, - [51051] = 2, + anon_sym_RBRACK, + [50845] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3707), 1, - anon_sym_SEMI, - [51058] = 2, + anon_sym_RPAREN, + [50852] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2003), 1, - anon_sym_RPAREN, - [51065] = 2, + ACTIONS(3269), 1, + anon_sym_RBRACE, + [50859] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3709), 1, - sym_numeric_literal, - [51072] = 2, + anon_sym_RBRACK, + [50866] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3711), 1, anon_sym_RBRACK, - [51079] = 2, + [50873] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3713), 1, - anon_sym_COLON, - [51086] = 2, + ACTIONS(2055), 1, + anon_sym_RPAREN, + [50880] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(619), 1, - anon_sym_RBRACK, - [51093] = 2, + ACTIONS(3713), 1, + anon_sym_SEMI, + [50887] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3715), 1, - anon_sym_SEMI, - [51100] = 2, + anon_sym_COLON_COLON, + [50894] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3717), 1, - sym_identifier, - [51107] = 2, + anon_sym_SEMI, + [50901] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3719), 1, - sym_identifier, - [51114] = 2, + anon_sym_DQUOTE, + [50908] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3721), 1, - anon_sym_COLON_COLON, - [51121] = 2, + ACTIONS(660), 1, + anon_sym_RBRACK, + [50915] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3723), 1, - anon_sym_SEMI, - [51128] = 2, + ACTIONS(3721), 1, + anon_sym_EQ_GT, + [50922] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2467), 1, + ACTIONS(3723), 1, sym_identifier, - [51135] = 2, + [50929] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2451), 1, - sym_identifier, - [51142] = 2, + ACTIONS(2621), 1, + anon_sym_COLON_COLON, + [50936] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3725), 1, - anon_sym_SEMI, - [51149] = 2, + anon_sym_RBRACE, + [50943] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3727), 1, - anon_sym_RBRACK, - [51156] = 2, + anon_sym_EQ_GT, + [50950] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3547), 1, + anon_sym_EQ, + [50957] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3729), 1, sym_identifier, - [51163] = 2, + [50964] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3731), 1, - anon_sym_SEMI, - [51170] = 2, + sym_identifier, + [50971] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3733), 1, - anon_sym_SEMI, - [51177] = 2, + anon_sym_COLON_COLON, + [50978] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3735), 1, - anon_sym_RBRACE, - [51184] = 2, + ACTIONS(2360), 1, + anon_sym_COLON_COLON, + [50985] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3737), 1, - anon_sym_SEMI, - [51191] = 2, + ACTIONS(3735), 1, + anon_sym_EQ_GT, + [50992] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3739), 1, - anon_sym_SEMI, - [51198] = 2, + ACTIONS(2723), 1, + anon_sym_RPAREN, + [50999] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2334), 1, - anon_sym_COLON_COLON, - [51205] = 2, + ACTIONS(3737), 1, + anon_sym_RBRACK, + [51006] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2449), 1, - anon_sym_COLON_COLON, - [51212] = 2, + ACTIONS(3739), 1, + sym_identifier, + [51013] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3741), 1, - sym_numeric_literal, - [51219] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3743), 1, anon_sym_SEMI, - [51226] = 2, + [51020] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2461), 1, - sym_identifier, - [51233] = 2, + ACTIONS(3743), 1, + sym_numeric_literal, + [51027] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3745), 1, - anon_sym_EQ_GT, - [51240] = 2, + anon_sym_SEMI, + [51034] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3747), 1, - sym_identifier, - [51247] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3212), 1, - anon_sym_RBRACE, - [51254] = 2, + anon_sym_SEMI, + [51041] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3749), 1, - sym_identifier, - [51261] = 2, + anon_sym_RPAREN, + [51048] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(706), 1, + ACTIONS(3751), 1, anon_sym_RBRACK, - [51268] = 2, + [51055] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3751), 1, - anon_sym_SEMI, - [51275] = 2, + ACTIONS(3344), 1, + anon_sym_RBRACE, + [51062] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3753), 1, - anon_sym_SEMI, - [51282] = 2, + anon_sym_EQ_GT, + [51069] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3755), 1, - anon_sym_COLON_COLON, - [51289] = 2, + anon_sym_COLON, + [51076] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(656), 1, + anon_sym_RBRACK, + [51083] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3757), 1, anon_sym_LBRACK, - [51296] = 2, + [51090] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3759), 1, - anon_sym_COLON, - [51303] = 2, + anon_sym_LBRACK, + [51097] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3761), 1, - anon_sym_LBRACK, - [51310] = 2, + anon_sym_COLON, + [51104] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3763), 1, - anon_sym_RBRACE, - [51317] = 2, + anon_sym_SEMI, + [51111] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3765), 1, - anon_sym_COLON, - [51324] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2611), 1, - anon_sym_COLON_COLON, - [51331] = 2, + anon_sym_RBRACE, + [51118] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3767), 1, - anon_sym_RBRACK, - [51338] = 2, - ACTIONS(3645), 1, + anon_sym_SEMI, + [51125] = 2, + ACTIONS(3), 1, sym_line_comment, ACTIONS(3769), 1, - aux_sym_string_literal_token2, - [51345] = 2, + anon_sym_RBRACE, + [51132] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2201), 1, - anon_sym_COLON_COLON, - [51352] = 2, + ACTIONS(3102), 1, + anon_sym_RBRACE, + [51139] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3429), 1, - anon_sym_EQ, - [51359] = 2, + ACTIONS(3771), 1, + sym_identifier, + [51146] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3771), 1, - anon_sym_RBRACK, - [51366] = 2, + ACTIONS(2035), 1, + anon_sym_RPAREN, + [51153] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3773), 1, - anon_sym_COLON_COLON, - [51373] = 2, + anon_sym_EQ_GT, + [51160] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2482), 1, + sym_identifier, + [51167] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3775), 1, anon_sym_SEMI, - [51380] = 2, + [51174] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3042), 1, + anon_sym_RPAREN, + [51181] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3777), 1, anon_sym_SEMI, - [51387] = 2, - ACTIONS(3), 1, + [51188] = 2, + ACTIONS(3667), 1, sym_line_comment, ACTIONS(3779), 1, - anon_sym_COLON, - [51394] = 2, + aux_sym_string_literal_token2, + [51195] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3781), 1, - ts_builtin_sym_end, - [51401] = 2, + ACTIONS(2063), 1, + anon_sym_COLON_COLON, + [51202] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3783), 1, + ACTIONS(2845), 1, + anon_sym_RPAREN, + [51209] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3781), 1, anon_sym_SEMI, - [51408] = 2, + [51216] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1878), 1, + ACTIONS(3783), 1, anon_sym_COLON_COLON, - [51415] = 2, + [51223] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3350), 1, - anon_sym_RBRACE, - [51422] = 2, - ACTIONS(3645), 1, - sym_line_comment, ACTIONS(3785), 1, - aux_sym_string_literal_token2, - [51429] = 2, - ACTIONS(3645), 1, + anon_sym_COLON, + [51230] = 2, + ACTIONS(3), 1, sym_line_comment, ACTIONS(3787), 1, - aux_sym_string_literal_token2, - [51436] = 2, + anon_sym_RBRACE, + [51237] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3789), 1, - anon_sym_COLON, - [51443] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3791), 1, - anon_sym_RBRACE, - [51450] = 2, + ts_builtin_sym_end, + [51244] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2775), 1, + ACTIONS(1800), 1, anon_sym_COLON_COLON, - [51457] = 2, + [51251] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3346), 1, + ACTIONS(3791), 1, anon_sym_COLON, - [51464] = 2, - ACTIONS(3645), 1, + [51258] = 2, + ACTIONS(3), 1, sym_line_comment, ACTIONS(3793), 1, + anon_sym_SEMI, + [51265] = 2, + ACTIONS(3667), 1, + sym_line_comment, + ACTIONS(3795), 1, aux_sym_string_literal_token2, - [51471] = 2, + [51272] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3795), 1, + ACTIONS(3797), 1, sym_identifier, - [51478] = 2, + [51279] = 2, + ACTIONS(3667), 1, + sym_line_comment, + ACTIONS(3799), 1, + aux_sym_string_literal_token2, + [51286] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2933), 1, + ACTIONS(3801), 1, + anon_sym_SEMI, + [51293] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2472), 1, + sym_identifier, + [51300] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2685), 1, anon_sym_COLON_COLON, - [51485] = 2, + [51307] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3797), 1, + ACTIONS(2468), 1, sym_identifier, - [51492] = 2, + [51314] = 2, + ACTIONS(3667), 1, + sym_line_comment, + ACTIONS(3803), 1, + aux_sym_string_literal_token2, + [51321] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2703), 1, + ACTIONS(3357), 1, + anon_sym_RBRACE, + [51328] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2857), 1, anon_sym_COLON_COLON, - [51499] = 2, + [51335] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3799), 1, + ACTIONS(3805), 1, sym_identifier, - [51506] = 2, + [51342] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3013), 1, + ACTIONS(2837), 1, anon_sym_COLON_COLON, - [51513] = 2, + [51349] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3801), 1, + ACTIONS(3807), 1, sym_identifier, - [51520] = 2, + [51356] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3340), 1, - anon_sym_RBRACE, - [51527] = 2, + ACTIONS(2999), 1, + anon_sym_COLON_COLON, + [51363] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3809), 1, + sym_identifier, + [51370] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3811), 1, + anon_sym_SEMI, + [51377] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3336), 1, + ACTIONS(3076), 1, anon_sym_RBRACE, - [51534] = 2, + [51384] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3803), 1, + ACTIONS(3813), 1, anon_sym_COLON, - [51541] = 2, + [51391] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3805), 1, + ACTIONS(3815), 1, anon_sym_LBRACK, - [51548] = 2, + [51398] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3807), 1, + ACTIONS(3817), 1, anon_sym_LBRACK, - [51555] = 2, + [51405] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3809), 1, + ACTIONS(3819), 1, sym_identifier, - [51562] = 2, + [51412] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2927), 1, - anon_sym_RPAREN, - [51569] = 2, + ACTIONS(3821), 1, + anon_sym_COLON, + [51419] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2931), 1, + ACTIONS(2985), 1, anon_sym_RPAREN, - [51576] = 2, + [51426] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3319), 1, - anon_sym_RBRACE, - [51583] = 2, + ACTIONS(3823), 1, + anon_sym_SEMI, + [51433] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3811), 1, - sym_identifier, - [51590] = 2, + ACTIONS(2989), 1, + anon_sym_RPAREN, + [51440] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3035), 1, - anon_sym_COLON, - [51597] = 2, + ACTIONS(3825), 1, + anon_sym_RBRACK, + [51447] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3813), 1, - anon_sym_EQ_GT, - [51604] = 2, + ACTIONS(3333), 1, + anon_sym_RBRACE, + [51454] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3815), 1, + ACTIONS(3827), 1, anon_sym_COLON, - [51611] = 2, + [51461] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2781), 1, - anon_sym_RPAREN, - [51618] = 2, + ACTIONS(3829), 1, + anon_sym_SEMI, + [51468] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3393), 1, + ACTIONS(3401), 1, anon_sym_EQ, - [51625] = 2, + [51475] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3299), 1, - anon_sym_RBRACE, - [51632] = 2, + ACTIONS(3831), 1, + sym_identifier, + [51482] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3817), 1, + ACTIONS(3833), 1, anon_sym_LBRACK, - [51639] = 2, + [51489] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3819), 1, + ACTIONS(3835), 1, anon_sym_LBRACK, - [51646] = 2, + [51496] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3293), 1, - anon_sym_RBRACE, - [51653] = 2, + ACTIONS(3837), 1, + sym_identifier, + [51503] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3821), 1, + ACTIONS(3839), 1, anon_sym_LBRACK, - [51660] = 2, + [51510] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3823), 1, + ACTIONS(3841), 1, anon_sym_LBRACK, - [51667] = 2, + [51517] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3825), 1, + ACTIONS(3843), 1, sym_identifier, - [51674] = 2, + [51524] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3827), 1, + ACTIONS(3845), 1, sym_identifier, - [51681] = 2, + [51531] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3829), 1, - anon_sym_RBRACK, - [51688] = 2, + ACTIONS(3313), 1, + anon_sym_RBRACE, + [51538] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3831), 1, + ACTIONS(3847), 1, sym_identifier, - [51695] = 2, + [51545] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3833), 1, + ACTIONS(3849), 1, sym_identifier, - [51702] = 2, + [51552] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3835), 1, + ACTIONS(3851), 1, sym_identifier, - [51709] = 2, + [51559] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3837), 1, + ACTIONS(3853), 1, sym_identifier, - [51716] = 2, + [51566] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3839), 1, + ACTIONS(3855), 1, sym_identifier, - [51723] = 2, + [51573] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3841), 1, - anon_sym_SEMI, + ACTIONS(2474), 1, + anon_sym_COLON_COLON, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(234)] = 0, - [SMALL_STATE(235)] = 70, - [SMALL_STATE(236)] = 158, - [SMALL_STATE(237)] = 228, - [SMALL_STATE(238)] = 298, - [SMALL_STATE(239)] = 368, - [SMALL_STATE(240)] = 438, - [SMALL_STATE(241)] = 508, - [SMALL_STATE(242)] = 578, - [SMALL_STATE(243)] = 666, - [SMALL_STATE(244)] = 735, - [SMALL_STATE(245)] = 804, - [SMALL_STATE(246)] = 873, - [SMALL_STATE(247)] = 940, - [SMALL_STATE(248)] = 1007, - [SMALL_STATE(249)] = 1074, - [SMALL_STATE(250)] = 1141, - [SMALL_STATE(251)] = 1208, - [SMALL_STATE(252)] = 1275, - [SMALL_STATE(253)] = 1342, - [SMALL_STATE(254)] = 1409, - [SMALL_STATE(255)] = 1476, - [SMALL_STATE(256)] = 1543, - [SMALL_STATE(257)] = 1610, - [SMALL_STATE(258)] = 1677, - [SMALL_STATE(259)] = 1744, - [SMALL_STATE(260)] = 1811, - [SMALL_STATE(261)] = 1878, - [SMALL_STATE(262)] = 1945, - [SMALL_STATE(263)] = 2012, - [SMALL_STATE(264)] = 2079, - [SMALL_STATE(265)] = 2146, - [SMALL_STATE(266)] = 2213, - [SMALL_STATE(267)] = 2280, - [SMALL_STATE(268)] = 2347, - [SMALL_STATE(269)] = 2414, - [SMALL_STATE(270)] = 2481, - [SMALL_STATE(271)] = 2548, - [SMALL_STATE(272)] = 2615, - [SMALL_STATE(273)] = 2682, - [SMALL_STATE(274)] = 2749, - [SMALL_STATE(275)] = 2816, - [SMALL_STATE(276)] = 2883, - [SMALL_STATE(277)] = 2950, - [SMALL_STATE(278)] = 3017, - [SMALL_STATE(279)] = 3084, - [SMALL_STATE(280)] = 3151, - [SMALL_STATE(281)] = 3218, - [SMALL_STATE(282)] = 3285, - [SMALL_STATE(283)] = 3352, - [SMALL_STATE(284)] = 3419, - [SMALL_STATE(285)] = 3486, - [SMALL_STATE(286)] = 3553, - [SMALL_STATE(287)] = 3620, - [SMALL_STATE(288)] = 3687, - [SMALL_STATE(289)] = 3754, - [SMALL_STATE(290)] = 3821, - [SMALL_STATE(291)] = 3888, - [SMALL_STATE(292)] = 3955, - [SMALL_STATE(293)] = 4022, - [SMALL_STATE(294)] = 4089, - [SMALL_STATE(295)] = 4156, - [SMALL_STATE(296)] = 4223, - [SMALL_STATE(297)] = 4290, - [SMALL_STATE(298)] = 4357, - [SMALL_STATE(299)] = 4424, - [SMALL_STATE(300)] = 4491, - [SMALL_STATE(301)] = 4558, - [SMALL_STATE(302)] = 4625, - [SMALL_STATE(303)] = 4692, - [SMALL_STATE(304)] = 4759, - [SMALL_STATE(305)] = 4826, - [SMALL_STATE(306)] = 4893, - [SMALL_STATE(307)] = 4960, - [SMALL_STATE(308)] = 5027, - [SMALL_STATE(309)] = 5094, - [SMALL_STATE(310)] = 5161, - [SMALL_STATE(311)] = 5228, - [SMALL_STATE(312)] = 5295, - [SMALL_STATE(313)] = 5362, - [SMALL_STATE(314)] = 5429, - [SMALL_STATE(315)] = 5496, - [SMALL_STATE(316)] = 5563, - [SMALL_STATE(317)] = 5630, - [SMALL_STATE(318)] = 5697, - [SMALL_STATE(319)] = 5764, - [SMALL_STATE(320)] = 5831, - [SMALL_STATE(321)] = 5898, - [SMALL_STATE(322)] = 5965, - [SMALL_STATE(323)] = 6032, - [SMALL_STATE(324)] = 6099, - [SMALL_STATE(325)] = 6166, - [SMALL_STATE(326)] = 6233, - [SMALL_STATE(327)] = 6347, - [SMALL_STATE(328)] = 6417, - [SMALL_STATE(329)] = 6531, - [SMALL_STATE(330)] = 6645, - [SMALL_STATE(331)] = 6773, - [SMALL_STATE(332)] = 6887, - [SMALL_STATE(333)] = 7001, - [SMALL_STATE(334)] = 7128, - [SMALL_STATE(335)] = 7193, - [SMALL_STATE(336)] = 7258, - [SMALL_STATE(337)] = 7383, - [SMALL_STATE(338)] = 7510, - [SMALL_STATE(339)] = 7635, - [SMALL_STATE(340)] = 7700, - [SMALL_STATE(341)] = 7827, - [SMALL_STATE(342)] = 7952, - [SMALL_STATE(343)] = 8016, - [SMALL_STATE(344)] = 8080, - [SMALL_STATE(345)] = 8144, - [SMALL_STATE(346)] = 8208, - [SMALL_STATE(347)] = 8272, - [SMALL_STATE(348)] = 8336, - [SMALL_STATE(349)] = 8400, - [SMALL_STATE(350)] = 8464, - [SMALL_STATE(351)] = 8532, - [SMALL_STATE(352)] = 8596, - [SMALL_STATE(353)] = 8660, - [SMALL_STATE(354)] = 8782, - [SMALL_STATE(355)] = 8846, - [SMALL_STATE(356)] = 8910, - [SMALL_STATE(357)] = 8978, - [SMALL_STATE(358)] = 9094, - [SMALL_STATE(359)] = 9210, - [SMALL_STATE(360)] = 9326, - [SMALL_STATE(361)] = 9442, - [SMALL_STATE(362)] = 9558, - [SMALL_STATE(363)] = 9671, - [SMALL_STATE(364)] = 9786, - [SMALL_STATE(365)] = 9899, - [SMALL_STATE(366)] = 10012, - [SMALL_STATE(367)] = 10122, - [SMALL_STATE(368)] = 10235, - [SMALL_STATE(369)] = 10348, - [SMALL_STATE(370)] = 10454, - [SMALL_STATE(371)] = 10564, - [SMALL_STATE(372)] = 10674, - [SMALL_STATE(373)] = 10784, - [SMALL_STATE(374)] = 10890, - [SMALL_STATE(375)] = 11000, - [SMALL_STATE(376)] = 11061, - [SMALL_STATE(377)] = 11168, - [SMALL_STATE(378)] = 11272, - [SMALL_STATE(379)] = 11376, - [SMALL_STATE(380)] = 11480, - [SMALL_STATE(381)] = 11581, - [SMALL_STATE(382)] = 11682, - [SMALL_STATE(383)] = 11783, - [SMALL_STATE(384)] = 11884, - [SMALL_STATE(385)] = 11939, - [SMALL_STATE(386)] = 12040, - [SMALL_STATE(387)] = 12141, - [SMALL_STATE(388)] = 12239, - [SMALL_STATE(389)] = 12337, - [SMALL_STATE(390)] = 12435, - [SMALL_STATE(391)] = 12533, - [SMALL_STATE(392)] = 12631, - [SMALL_STATE(393)] = 12729, - [SMALL_STATE(394)] = 12827, - [SMALL_STATE(395)] = 12925, - [SMALL_STATE(396)] = 13023, - [SMALL_STATE(397)] = 13121, - [SMALL_STATE(398)] = 13219, - [SMALL_STATE(399)] = 13317, - [SMALL_STATE(400)] = 13412, - [SMALL_STATE(401)] = 13507, - [SMALL_STATE(402)] = 13602, - [SMALL_STATE(403)] = 13697, - [SMALL_STATE(404)] = 13792, - [SMALL_STATE(405)] = 13887, - [SMALL_STATE(406)] = 13982, - [SMALL_STATE(407)] = 14077, - [SMALL_STATE(408)] = 14172, - [SMALL_STATE(409)] = 14267, - [SMALL_STATE(410)] = 14320, - [SMALL_STATE(411)] = 14415, - [SMALL_STATE(412)] = 14510, - [SMALL_STATE(413)] = 14605, - [SMALL_STATE(414)] = 14700, - [SMALL_STATE(415)] = 14753, - [SMALL_STATE(416)] = 14848, - [SMALL_STATE(417)] = 14943, - [SMALL_STATE(418)] = 15038, - [SMALL_STATE(419)] = 15133, - [SMALL_STATE(420)] = 15228, - [SMALL_STATE(421)] = 15323, - [SMALL_STATE(422)] = 15418, - [SMALL_STATE(423)] = 15513, - [SMALL_STATE(424)] = 15605, - [SMALL_STATE(425)] = 15657, - [SMALL_STATE(426)] = 15749, - [SMALL_STATE(427)] = 15841, - [SMALL_STATE(428)] = 15933, - [SMALL_STATE(429)] = 16025, - [SMALL_STATE(430)] = 16117, - [SMALL_STATE(431)] = 16206, - [SMALL_STATE(432)] = 16295, - [SMALL_STATE(433)] = 16384, - [SMALL_STATE(434)] = 16473, - [SMALL_STATE(435)] = 16518, - [SMALL_STATE(436)] = 16571, - [SMALL_STATE(437)] = 16616, - [SMALL_STATE(438)] = 16661, - [SMALL_STATE(439)] = 16706, - [SMALL_STATE(440)] = 16751, - [SMALL_STATE(441)] = 16796, - [SMALL_STATE(442)] = 16841, - [SMALL_STATE(443)] = 16887, - [SMALL_STATE(444)] = 16933, - [SMALL_STATE(445)] = 16979, - [SMALL_STATE(446)] = 17027, - [SMALL_STATE(447)] = 17073, - [SMALL_STATE(448)] = 17146, - [SMALL_STATE(449)] = 17199, - [SMALL_STATE(450)] = 17252, - [SMALL_STATE(451)] = 17325, - [SMALL_STATE(452)] = 17368, - [SMALL_STATE(453)] = 17421, - [SMALL_STATE(454)] = 17474, - [SMALL_STATE(455)] = 17517, - [SMALL_STATE(456)] = 17564, - [SMALL_STATE(457)] = 17607, - [SMALL_STATE(458)] = 17650, - [SMALL_STATE(459)] = 17697, - [SMALL_STATE(460)] = 17750, - [SMALL_STATE(461)] = 17795, - [SMALL_STATE(462)] = 17840, - [SMALL_STATE(463)] = 17885, - [SMALL_STATE(464)] = 17928, - [SMALL_STATE(465)] = 18001, - [SMALL_STATE(466)] = 18074, - [SMALL_STATE(467)] = 18116, - [SMALL_STATE(468)] = 18158, - [SMALL_STATE(469)] = 18200, - [SMALL_STATE(470)] = 18274, - [SMALL_STATE(471)] = 18316, - [SMALL_STATE(472)] = 18358, - [SMALL_STATE(473)] = 18430, - [SMALL_STATE(474)] = 18494, - [SMALL_STATE(475)] = 18548, - [SMALL_STATE(476)] = 18590, - [SMALL_STATE(477)] = 18650, - [SMALL_STATE(478)] = 18692, - [SMALL_STATE(479)] = 18750, - [SMALL_STATE(480)] = 18792, - [SMALL_STATE(481)] = 18854, - [SMALL_STATE(482)] = 18922, - [SMALL_STATE(483)] = 18992, - [SMALL_STATE(484)] = 19034, - [SMALL_STATE(485)] = 19090, - [SMALL_STATE(486)] = 19132, - [SMALL_STATE(487)] = 19204, - [SMALL_STATE(488)] = 19246, - [SMALL_STATE(489)] = 19288, - [SMALL_STATE(490)] = 19330, - [SMALL_STATE(491)] = 19372, - [SMALL_STATE(492)] = 19446, - [SMALL_STATE(493)] = 19488, - [SMALL_STATE(494)] = 19530, - [SMALL_STATE(495)] = 19572, - [SMALL_STATE(496)] = 19614, - [SMALL_STATE(497)] = 19656, - [SMALL_STATE(498)] = 19698, - [SMALL_STATE(499)] = 19740, - [SMALL_STATE(500)] = 19782, - [SMALL_STATE(501)] = 19824, - [SMALL_STATE(502)] = 19896, - [SMALL_STATE(503)] = 19938, - [SMALL_STATE(504)] = 19980, - [SMALL_STATE(505)] = 20022, - [SMALL_STATE(506)] = 20066, - [SMALL_STATE(507)] = 20108, - [SMALL_STATE(508)] = 20150, - [SMALL_STATE(509)] = 20192, - [SMALL_STATE(510)] = 20264, - [SMALL_STATE(511)] = 20306, - [SMALL_STATE(512)] = 20348, - [SMALL_STATE(513)] = 20390, - [SMALL_STATE(514)] = 20464, - [SMALL_STATE(515)] = 20506, - [SMALL_STATE(516)] = 20548, - [SMALL_STATE(517)] = 20590, - [SMALL_STATE(518)] = 20632, - [SMALL_STATE(519)] = 20674, - [SMALL_STATE(520)] = 20716, - [SMALL_STATE(521)] = 20758, - [SMALL_STATE(522)] = 20800, - [SMALL_STATE(523)] = 20842, - [SMALL_STATE(524)] = 20884, - [SMALL_STATE(525)] = 20925, - [SMALL_STATE(526)] = 20966, - [SMALL_STATE(527)] = 21007, - [SMALL_STATE(528)] = 21048, - [SMALL_STATE(529)] = 21089, - [SMALL_STATE(530)] = 21130, - [SMALL_STATE(531)] = 21171, - [SMALL_STATE(532)] = 21212, - [SMALL_STATE(533)] = 21253, - [SMALL_STATE(534)] = 21332, - [SMALL_STATE(535)] = 21373, - [SMALL_STATE(536)] = 21414, - [SMALL_STATE(537)] = 21455, - [SMALL_STATE(538)] = 21496, - [SMALL_STATE(539)] = 21537, - [SMALL_STATE(540)] = 21582, - [SMALL_STATE(541)] = 21623, - [SMALL_STATE(542)] = 21664, - [SMALL_STATE(543)] = 21705, - [SMALL_STATE(544)] = 21746, - [SMALL_STATE(545)] = 21787, - [SMALL_STATE(546)] = 21828, - [SMALL_STATE(547)] = 21869, - [SMALL_STATE(548)] = 21910, - [SMALL_STATE(549)] = 21951, - [SMALL_STATE(550)] = 21992, - [SMALL_STATE(551)] = 22033, - [SMALL_STATE(552)] = 22074, - [SMALL_STATE(553)] = 22115, - [SMALL_STATE(554)] = 22156, - [SMALL_STATE(555)] = 22197, - [SMALL_STATE(556)] = 22238, - [SMALL_STATE(557)] = 22279, - [SMALL_STATE(558)] = 22320, - [SMALL_STATE(559)] = 22361, - [SMALL_STATE(560)] = 22402, - [SMALL_STATE(561)] = 22443, - [SMALL_STATE(562)] = 22484, - [SMALL_STATE(563)] = 22525, - [SMALL_STATE(564)] = 22566, - [SMALL_STATE(565)] = 22607, - [SMALL_STATE(566)] = 22648, - [SMALL_STATE(567)] = 22689, - [SMALL_STATE(568)] = 22730, - [SMALL_STATE(569)] = 22771, - [SMALL_STATE(570)] = 22812, - [SMALL_STATE(571)] = 22853, - [SMALL_STATE(572)] = 22894, - [SMALL_STATE(573)] = 22935, - [SMALL_STATE(574)] = 22976, - [SMALL_STATE(575)] = 23017, - [SMALL_STATE(576)] = 23096, - [SMALL_STATE(577)] = 23137, - [SMALL_STATE(578)] = 23178, - [SMALL_STATE(579)] = 23219, - [SMALL_STATE(580)] = 23260, - [SMALL_STATE(581)] = 23301, - [SMALL_STATE(582)] = 23342, - [SMALL_STATE(583)] = 23383, - [SMALL_STATE(584)] = 23424, - [SMALL_STATE(585)] = 23465, - [SMALL_STATE(586)] = 23506, - [SMALL_STATE(587)] = 23547, - [SMALL_STATE(588)] = 23588, - [SMALL_STATE(589)] = 23629, - [SMALL_STATE(590)] = 23670, - [SMALL_STATE(591)] = 23711, - [SMALL_STATE(592)] = 23752, - [SMALL_STATE(593)] = 23793, - [SMALL_STATE(594)] = 23834, - [SMALL_STATE(595)] = 23883, - [SMALL_STATE(596)] = 23924, - [SMALL_STATE(597)] = 24003, - [SMALL_STATE(598)] = 24044, - [SMALL_STATE(599)] = 24085, - [SMALL_STATE(600)] = 24164, - [SMALL_STATE(601)] = 24205, - [SMALL_STATE(602)] = 24246, - [SMALL_STATE(603)] = 24287, - [SMALL_STATE(604)] = 24328, - [SMALL_STATE(605)] = 24369, - [SMALL_STATE(606)] = 24410, - [SMALL_STATE(607)] = 24451, - [SMALL_STATE(608)] = 24492, - [SMALL_STATE(609)] = 24533, - [SMALL_STATE(610)] = 24599, - [SMALL_STATE(611)] = 24641, - [SMALL_STATE(612)] = 24683, - [SMALL_STATE(613)] = 24725, - [SMALL_STATE(614)] = 24791, - [SMALL_STATE(615)] = 24857, - [SMALL_STATE(616)] = 24923, - [SMALL_STATE(617)] = 24989, - [SMALL_STATE(618)] = 25031, - [SMALL_STATE(619)] = 25107, - [SMALL_STATE(620)] = 25173, - [SMALL_STATE(621)] = 25249, - [SMALL_STATE(622)] = 25315, - [SMALL_STATE(623)] = 25381, - [SMALL_STATE(624)] = 25447, - [SMALL_STATE(625)] = 25513, - [SMALL_STATE(626)] = 25589, - [SMALL_STATE(627)] = 25665, - [SMALL_STATE(628)] = 25741, - [SMALL_STATE(629)] = 25787, - [SMALL_STATE(630)] = 25863, - [SMALL_STATE(631)] = 25926, - [SMALL_STATE(632)] = 25989, - [SMALL_STATE(633)] = 26052, - [SMALL_STATE(634)] = 26115, - [SMALL_STATE(635)] = 26178, - [SMALL_STATE(636)] = 26241, - [SMALL_STATE(637)] = 26304, - [SMALL_STATE(638)] = 26367, - [SMALL_STATE(639)] = 26440, - [SMALL_STATE(640)] = 26513, - [SMALL_STATE(641)] = 26554, - [SMALL_STATE(642)] = 26617, - [SMALL_STATE(643)] = 26690, - [SMALL_STATE(644)] = 26753, - [SMALL_STATE(645)] = 26816, - [SMALL_STATE(646)] = 26879, - [SMALL_STATE(647)] = 26942, - [SMALL_STATE(648)] = 27005, - [SMALL_STATE(649)] = 27068, - [SMALL_STATE(650)] = 27141, - [SMALL_STATE(651)] = 27214, - [SMALL_STATE(652)] = 27287, - [SMALL_STATE(653)] = 27350, - [SMALL_STATE(654)] = 27423, - [SMALL_STATE(655)] = 27486, - [SMALL_STATE(656)] = 27525, - [SMALL_STATE(657)] = 27564, - [SMALL_STATE(658)] = 27637, - [SMALL_STATE(659)] = 27700, - [SMALL_STATE(660)] = 27763, - [SMALL_STATE(661)] = 27826, - [SMALL_STATE(662)] = 27865, - [SMALL_STATE(663)] = 27936, - [SMALL_STATE(664)] = 28007, - [SMALL_STATE(665)] = 28080, - [SMALL_STATE(666)] = 28143, - [SMALL_STATE(667)] = 28216, - [SMALL_STATE(668)] = 28257, - [SMALL_STATE(669)] = 28328, - [SMALL_STATE(670)] = 28401, - [SMALL_STATE(671)] = 28472, - [SMALL_STATE(672)] = 28545, - [SMALL_STATE(673)] = 28616, - [SMALL_STATE(674)] = 28687, - [SMALL_STATE(675)] = 28728, - [SMALL_STATE(676)] = 28791, - [SMALL_STATE(677)] = 28864, - [SMALL_STATE(678)] = 28937, - [SMALL_STATE(679)] = 29008, - [SMALL_STATE(680)] = 29079, - [SMALL_STATE(681)] = 29150, - [SMALL_STATE(682)] = 29223, - [SMALL_STATE(683)] = 29286, - [SMALL_STATE(684)] = 29359, - [SMALL_STATE(685)] = 29422, - [SMALL_STATE(686)] = 29463, - [SMALL_STATE(687)] = 29526, - [SMALL_STATE(688)] = 29599, - [SMALL_STATE(689)] = 29662, - [SMALL_STATE(690)] = 29701, - [SMALL_STATE(691)] = 29774, - [SMALL_STATE(692)] = 29837, - [SMALL_STATE(693)] = 29880, - [SMALL_STATE(694)] = 29943, - [SMALL_STATE(695)] = 30006, - [SMALL_STATE(696)] = 30069, - [SMALL_STATE(697)] = 30142, - [SMALL_STATE(698)] = 30181, - [SMALL_STATE(699)] = 30220, - [SMALL_STATE(700)] = 30293, - [SMALL_STATE(701)] = 30366, - [SMALL_STATE(702)] = 30439, - [SMALL_STATE(703)] = 30502, - [SMALL_STATE(704)] = 30565, - [SMALL_STATE(705)] = 30628, - [SMALL_STATE(706)] = 30691, - [SMALL_STATE(707)] = 30764, - [SMALL_STATE(708)] = 30827, - [SMALL_STATE(709)] = 30900, - [SMALL_STATE(710)] = 30963, - [SMALL_STATE(711)] = 31036, - [SMALL_STATE(712)] = 31099, - [SMALL_STATE(713)] = 31138, - [SMALL_STATE(714)] = 31211, - [SMALL_STATE(715)] = 31254, - [SMALL_STATE(716)] = 31317, - [SMALL_STATE(717)] = 31380, - [SMALL_STATE(718)] = 31451, - [SMALL_STATE(719)] = 31490, - [SMALL_STATE(720)] = 31529, - [SMALL_STATE(721)] = 31602, - [SMALL_STATE(722)] = 31665, - [SMALL_STATE(723)] = 31704, - [SMALL_STATE(724)] = 31777, - [SMALL_STATE(725)] = 31816, - [SMALL_STATE(726)] = 31879, - [SMALL_STATE(727)] = 31952, - [SMALL_STATE(728)] = 32015, - [SMALL_STATE(729)] = 32086, - [SMALL_STATE(730)] = 32149, - [SMALL_STATE(731)] = 32212, - [SMALL_STATE(732)] = 32275, - [SMALL_STATE(733)] = 32318, - [SMALL_STATE(734)] = 32381, - [SMALL_STATE(735)] = 32444, - [SMALL_STATE(736)] = 32507, - [SMALL_STATE(737)] = 32570, - [SMALL_STATE(738)] = 32643, - [SMALL_STATE(739)] = 32716, - [SMALL_STATE(740)] = 32759, - [SMALL_STATE(741)] = 32822, - [SMALL_STATE(742)] = 32885, - [SMALL_STATE(743)] = 32948, - [SMALL_STATE(744)] = 33011, - [SMALL_STATE(745)] = 33084, - [SMALL_STATE(746)] = 33127, - [SMALL_STATE(747)] = 33166, - [SMALL_STATE(748)] = 33234, - [SMALL_STATE(749)] = 33304, - [SMALL_STATE(750)] = 33372, - [SMALL_STATE(751)] = 33412, - [SMALL_STATE(752)] = 33460, - [SMALL_STATE(753)] = 33508, - [SMALL_STATE(754)] = 33548, - [SMALL_STATE(755)] = 33618, - [SMALL_STATE(756)] = 33656, - [SMALL_STATE(757)] = 33726, - [SMALL_STATE(758)] = 33796, - [SMALL_STATE(759)] = 33866, - [SMALL_STATE(760)] = 33936, - [SMALL_STATE(761)] = 33974, - [SMALL_STATE(762)] = 34012, - [SMALL_STATE(763)] = 34082, - [SMALL_STATE(764)] = 34152, - [SMALL_STATE(765)] = 34190, - [SMALL_STATE(766)] = 34228, - [SMALL_STATE(767)] = 34298, - [SMALL_STATE(768)] = 34346, - [SMALL_STATE(769)] = 34386, - [SMALL_STATE(770)] = 34424, - [SMALL_STATE(771)] = 34464, - [SMALL_STATE(772)] = 34504, - [SMALL_STATE(773)] = 34572, - [SMALL_STATE(774)] = 34620, - [SMALL_STATE(775)] = 34690, - [SMALL_STATE(776)] = 34728, - [SMALL_STATE(777)] = 34798, - [SMALL_STATE(778)] = 34868, - [SMALL_STATE(779)] = 34938, - [SMALL_STATE(780)] = 35008, - [SMALL_STATE(781)] = 35078, - [SMALL_STATE(782)] = 35138, - [SMALL_STATE(783)] = 35188, - [SMALL_STATE(784)] = 35258, - [SMALL_STATE(785)] = 35314, - [SMALL_STATE(786)] = 35384, - [SMALL_STATE(787)] = 35438, - [SMALL_STATE(788)] = 35508, - [SMALL_STATE(789)] = 35578, - [SMALL_STATE(790)] = 35636, - [SMALL_STATE(791)] = 35700, - [SMALL_STATE(792)] = 35770, - [SMALL_STATE(793)] = 35836, - [SMALL_STATE(794)] = 35888, - [SMALL_STATE(795)] = 35958, - [SMALL_STATE(796)] = 36028, - [SMALL_STATE(797)] = 36096, - [SMALL_STATE(798)] = 36166, - [SMALL_STATE(799)] = 36236, - [SMALL_STATE(800)] = 36274, - [SMALL_STATE(801)] = 36344, - [SMALL_STATE(802)] = 36412, - [SMALL_STATE(803)] = 36482, - [SMALL_STATE(804)] = 36542, - [SMALL_STATE(805)] = 36580, - [SMALL_STATE(806)] = 36630, - [SMALL_STATE(807)] = 36700, - [SMALL_STATE(808)] = 36756, - [SMALL_STATE(809)] = 36810, - [SMALL_STATE(810)] = 36880, - [SMALL_STATE(811)] = 36938, - [SMALL_STATE(812)] = 37002, - [SMALL_STATE(813)] = 37072, - [SMALL_STATE(814)] = 37140, - [SMALL_STATE(815)] = 37210, - [SMALL_STATE(816)] = 37276, - [SMALL_STATE(817)] = 37346, - [SMALL_STATE(818)] = 37398, - [SMALL_STATE(819)] = 37468, - [SMALL_STATE(820)] = 37536, - [SMALL_STATE(821)] = 37604, - [SMALL_STATE(822)] = 37674, - [SMALL_STATE(823)] = 37744, - [SMALL_STATE(824)] = 37814, - [SMALL_STATE(825)] = 37884, - [SMALL_STATE(826)] = 37954, - [SMALL_STATE(827)] = 37991, - [SMALL_STATE(828)] = 38028, - [SMALL_STATE(829)] = 38065, - [SMALL_STATE(830)] = 38102, - [SMALL_STATE(831)] = 38139, - [SMALL_STATE(832)] = 38176, - [SMALL_STATE(833)] = 38213, - [SMALL_STATE(834)] = 38250, - [SMALL_STATE(835)] = 38287, - [SMALL_STATE(836)] = 38324, - [SMALL_STATE(837)] = 38361, - [SMALL_STATE(838)] = 38398, - [SMALL_STATE(839)] = 38435, - [SMALL_STATE(840)] = 38472, - [SMALL_STATE(841)] = 38509, - [SMALL_STATE(842)] = 38546, - [SMALL_STATE(843)] = 38583, - [SMALL_STATE(844)] = 38620, - [SMALL_STATE(845)] = 38657, - [SMALL_STATE(846)] = 38694, - [SMALL_STATE(847)] = 38731, - [SMALL_STATE(848)] = 38768, - [SMALL_STATE(849)] = 38805, - [SMALL_STATE(850)] = 38842, - [SMALL_STATE(851)] = 38879, - [SMALL_STATE(852)] = 38934, - [SMALL_STATE(853)] = 38971, - [SMALL_STATE(854)] = 39008, - [SMALL_STATE(855)] = 39045, - [SMALL_STATE(856)] = 39082, - [SMALL_STATE(857)] = 39119, - [SMALL_STATE(858)] = 39156, - [SMALL_STATE(859)] = 39193, - [SMALL_STATE(860)] = 39230, - [SMALL_STATE(861)] = 39267, - [SMALL_STATE(862)] = 39304, - [SMALL_STATE(863)] = 39341, - [SMALL_STATE(864)] = 39378, - [SMALL_STATE(865)] = 39415, - [SMALL_STATE(866)] = 39452, - [SMALL_STATE(867)] = 39489, - [SMALL_STATE(868)] = 39526, - [SMALL_STATE(869)] = 39563, - [SMALL_STATE(870)] = 39600, - [SMALL_STATE(871)] = 39637, - [SMALL_STATE(872)] = 39674, - [SMALL_STATE(873)] = 39711, - [SMALL_STATE(874)] = 39748, - [SMALL_STATE(875)] = 39785, - [SMALL_STATE(876)] = 39822, - [SMALL_STATE(877)] = 39859, - [SMALL_STATE(878)] = 39896, - [SMALL_STATE(879)] = 39933, - [SMALL_STATE(880)] = 39985, - [SMALL_STATE(881)] = 40037, - [SMALL_STATE(882)] = 40086, - [SMALL_STATE(883)] = 40135, - [SMALL_STATE(884)] = 40184, - [SMALL_STATE(885)] = 40233, - [SMALL_STATE(886)] = 40282, - [SMALL_STATE(887)] = 40319, - [SMALL_STATE(888)] = 40350, - [SMALL_STATE(889)] = 40392, - [SMALL_STATE(890)] = 40431, - [SMALL_STATE(891)] = 40470, - [SMALL_STATE(892)] = 40509, - [SMALL_STATE(893)] = 40548, - [SMALL_STATE(894)] = 40587, - [SMALL_STATE(895)] = 40626, - [SMALL_STATE(896)] = 40665, - [SMALL_STATE(897)] = 40704, - [SMALL_STATE(898)] = 40743, - [SMALL_STATE(899)] = 40782, - [SMALL_STATE(900)] = 40821, - [SMALL_STATE(901)] = 40857, - [SMALL_STATE(902)] = 40893, - [SMALL_STATE(903)] = 40928, - [SMALL_STATE(904)] = 40952, - [SMALL_STATE(905)] = 40974, - [SMALL_STATE(906)] = 40998, - [SMALL_STATE(907)] = 41020, - [SMALL_STATE(908)] = 41042, - [SMALL_STATE(909)] = 41064, - [SMALL_STATE(910)] = 41088, - [SMALL_STATE(911)] = 41110, - [SMALL_STATE(912)] = 41132, - [SMALL_STATE(913)] = 41154, - [SMALL_STATE(914)] = 41178, - [SMALL_STATE(915)] = 41200, - [SMALL_STATE(916)] = 41219, - [SMALL_STATE(917)] = 41238, - [SMALL_STATE(918)] = 41257, - [SMALL_STATE(919)] = 41276, - [SMALL_STATE(920)] = 41295, - [SMALL_STATE(921)] = 41314, - [SMALL_STATE(922)] = 41343, - [SMALL_STATE(923)] = 41362, - [SMALL_STATE(924)] = 41382, - [SMALL_STATE(925)] = 41400, - [SMALL_STATE(926)] = 41420, - [SMALL_STATE(927)] = 41446, - [SMALL_STATE(928)] = 41466, - [SMALL_STATE(929)] = 41484, - [SMALL_STATE(930)] = 41524, - [SMALL_STATE(931)] = 41542, - [SMALL_STATE(932)] = 41582, - [SMALL_STATE(933)] = 41600, - [SMALL_STATE(934)] = 41617, - [SMALL_STATE(935)] = 41648, - [SMALL_STATE(936)] = 41679, - [SMALL_STATE(937)] = 41700, - [SMALL_STATE(938)] = 41717, - [SMALL_STATE(939)] = 41734, - [SMALL_STATE(940)] = 41755, - [SMALL_STATE(941)] = 41772, - [SMALL_STATE(942)] = 41793, - [SMALL_STATE(943)] = 41810, - [SMALL_STATE(944)] = 41827, - [SMALL_STATE(945)] = 41844, - [SMALL_STATE(946)] = 41861, - [SMALL_STATE(947)] = 41882, - [SMALL_STATE(948)] = 41901, - [SMALL_STATE(949)] = 41929, - [SMALL_STATE(950)] = 41957, - [SMALL_STATE(951)] = 41977, - [SMALL_STATE(952)] = 42009, - [SMALL_STATE(953)] = 42041, - [SMALL_STATE(954)] = 42061, - [SMALL_STATE(955)] = 42077, - [SMALL_STATE(956)] = 42109, - [SMALL_STATE(957)] = 42137, - [SMALL_STATE(958)] = 42169, - [SMALL_STATE(959)] = 42185, - [SMALL_STATE(960)] = 42201, - [SMALL_STATE(961)] = 42217, - [SMALL_STATE(962)] = 42233, - [SMALL_STATE(963)] = 42257, - [SMALL_STATE(964)] = 42273, - [SMALL_STATE(965)] = 42301, - [SMALL_STATE(966)] = 42316, - [SMALL_STATE(967)] = 42335, - [SMALL_STATE(968)] = 42364, - [SMALL_STATE(969)] = 42379, - [SMALL_STATE(970)] = 42394, - [SMALL_STATE(971)] = 42409, - [SMALL_STATE(972)] = 42438, - [SMALL_STATE(973)] = 42453, - [SMALL_STATE(974)] = 42468, - [SMALL_STATE(975)] = 42483, - [SMALL_STATE(976)] = 42512, - [SMALL_STATE(977)] = 42531, - [SMALL_STATE(978)] = 42560, - [SMALL_STATE(979)] = 42575, - [SMALL_STATE(980)] = 42590, - [SMALL_STATE(981)] = 42605, - [SMALL_STATE(982)] = 42620, - [SMALL_STATE(983)] = 42635, - [SMALL_STATE(984)] = 42650, - [SMALL_STATE(985)] = 42669, - [SMALL_STATE(986)] = 42698, - [SMALL_STATE(987)] = 42713, - [SMALL_STATE(988)] = 42736, - [SMALL_STATE(989)] = 42751, - [SMALL_STATE(990)] = 42780, - [SMALL_STATE(991)] = 42795, - [SMALL_STATE(992)] = 42820, - [SMALL_STATE(993)] = 42835, - [SMALL_STATE(994)] = 42862, - [SMALL_STATE(995)] = 42877, - [SMALL_STATE(996)] = 42892, - [SMALL_STATE(997)] = 42921, - [SMALL_STATE(998)] = 42944, - [SMALL_STATE(999)] = 42959, - [SMALL_STATE(1000)] = 42974, - [SMALL_STATE(1001)] = 42989, - [SMALL_STATE(1002)] = 43018, - [SMALL_STATE(1003)] = 43033, - [SMALL_STATE(1004)] = 43062, - [SMALL_STATE(1005)] = 43077, - [SMALL_STATE(1006)] = 43092, - [SMALL_STATE(1007)] = 43107, - [SMALL_STATE(1008)] = 43122, - [SMALL_STATE(1009)] = 43141, - [SMALL_STATE(1010)] = 43156, - [SMALL_STATE(1011)] = 43171, - [SMALL_STATE(1012)] = 43186, - [SMALL_STATE(1013)] = 43212, - [SMALL_STATE(1014)] = 43238, - [SMALL_STATE(1015)] = 43264, - [SMALL_STATE(1016)] = 43290, - [SMALL_STATE(1017)] = 43308, - [SMALL_STATE(1018)] = 43326, - [SMALL_STATE(1019)] = 43352, - [SMALL_STATE(1020)] = 43378, - [SMALL_STATE(1021)] = 43404, - [SMALL_STATE(1022)] = 43430, - [SMALL_STATE(1023)] = 43456, - [SMALL_STATE(1024)] = 43482, - [SMALL_STATE(1025)] = 43500, - [SMALL_STATE(1026)] = 43518, - [SMALL_STATE(1027)] = 43541, - [SMALL_STATE(1028)] = 43566, - [SMALL_STATE(1029)] = 43585, - [SMALL_STATE(1030)] = 43608, - [SMALL_STATE(1031)] = 43631, - [SMALL_STATE(1032)] = 43652, - [SMALL_STATE(1033)] = 43673, - [SMALL_STATE(1034)] = 43698, - [SMALL_STATE(1035)] = 43721, - [SMALL_STATE(1036)] = 43744, - [SMALL_STATE(1037)] = 43769, - [SMALL_STATE(1038)] = 43792, - [SMALL_STATE(1039)] = 43817, - [SMALL_STATE(1040)] = 43838, - [SMALL_STATE(1041)] = 43861, - [SMALL_STATE(1042)] = 43878, - [SMALL_STATE(1043)] = 43900, - [SMALL_STATE(1044)] = 43918, - [SMALL_STATE(1045)] = 43930, - [SMALL_STATE(1046)] = 43950, - [SMALL_STATE(1047)] = 43970, - [SMALL_STATE(1048)] = 43982, - [SMALL_STATE(1049)] = 43994, - [SMALL_STATE(1050)] = 44012, - [SMALL_STATE(1051)] = 44024, - [SMALL_STATE(1052)] = 44044, - [SMALL_STATE(1053)] = 44056, - [SMALL_STATE(1054)] = 44078, - [SMALL_STATE(1055)] = 44098, - [SMALL_STATE(1056)] = 44118, - [SMALL_STATE(1057)] = 44130, - [SMALL_STATE(1058)] = 44148, - [SMALL_STATE(1059)] = 44168, - [SMALL_STATE(1060)] = 44188, - [SMALL_STATE(1061)] = 44208, - [SMALL_STATE(1062)] = 44230, - [SMALL_STATE(1063)] = 44250, - [SMALL_STATE(1064)] = 44262, - [SMALL_STATE(1065)] = 44282, - [SMALL_STATE(1066)] = 44293, - [SMALL_STATE(1067)] = 44304, - [SMALL_STATE(1068)] = 44321, - [SMALL_STATE(1069)] = 44340, - [SMALL_STATE(1070)] = 44357, - [SMALL_STATE(1071)] = 44368, - [SMALL_STATE(1072)] = 44387, - [SMALL_STATE(1073)] = 44406, - [SMALL_STATE(1074)] = 44421, - [SMALL_STATE(1075)] = 44432, - [SMALL_STATE(1076)] = 44449, - [SMALL_STATE(1077)] = 44460, - [SMALL_STATE(1078)] = 44477, - [SMALL_STATE(1079)] = 44496, - [SMALL_STATE(1080)] = 44515, - [SMALL_STATE(1081)] = 44534, - [SMALL_STATE(1082)] = 44553, - [SMALL_STATE(1083)] = 44568, - [SMALL_STATE(1084)] = 44587, - [SMALL_STATE(1085)] = 44598, - [SMALL_STATE(1086)] = 44615, - [SMALL_STATE(1087)] = 44634, - [SMALL_STATE(1088)] = 44653, - [SMALL_STATE(1089)] = 44672, - [SMALL_STATE(1090)] = 44687, - [SMALL_STATE(1091)] = 44702, - [SMALL_STATE(1092)] = 44713, - [SMALL_STATE(1093)] = 44728, - [SMALL_STATE(1094)] = 44743, - [SMALL_STATE(1095)] = 44758, - [SMALL_STATE(1096)] = 44769, - [SMALL_STATE(1097)] = 44786, - [SMALL_STATE(1098)] = 44797, - [SMALL_STATE(1099)] = 44814, - [SMALL_STATE(1100)] = 44825, - [SMALL_STATE(1101)] = 44842, - [SMALL_STATE(1102)] = 44853, - [SMALL_STATE(1103)] = 44872, - [SMALL_STATE(1104)] = 44891, - [SMALL_STATE(1105)] = 44910, - [SMALL_STATE(1106)] = 44921, - [SMALL_STATE(1107)] = 44938, - [SMALL_STATE(1108)] = 44955, - [SMALL_STATE(1109)] = 44974, - [SMALL_STATE(1110)] = 44985, - [SMALL_STATE(1111)] = 44996, - [SMALL_STATE(1112)] = 45007, - [SMALL_STATE(1113)] = 45026, - [SMALL_STATE(1114)] = 45037, - [SMALL_STATE(1115)] = 45054, - [SMALL_STATE(1116)] = 45073, - [SMALL_STATE(1117)] = 45089, - [SMALL_STATE(1118)] = 45103, - [SMALL_STATE(1119)] = 45119, - [SMALL_STATE(1120)] = 45135, - [SMALL_STATE(1121)] = 45151, - [SMALL_STATE(1122)] = 45167, - [SMALL_STATE(1123)] = 45183, - [SMALL_STATE(1124)] = 45199, - [SMALL_STATE(1125)] = 45215, - [SMALL_STATE(1126)] = 45231, - [SMALL_STATE(1127)] = 45247, - [SMALL_STATE(1128)] = 45263, - [SMALL_STATE(1129)] = 45279, - [SMALL_STATE(1130)] = 45295, - [SMALL_STATE(1131)] = 45311, - [SMALL_STATE(1132)] = 45323, - [SMALL_STATE(1133)] = 45339, - [SMALL_STATE(1134)] = 45355, - [SMALL_STATE(1135)] = 45371, - [SMALL_STATE(1136)] = 45387, - [SMALL_STATE(1137)] = 45403, - [SMALL_STATE(1138)] = 45417, - [SMALL_STATE(1139)] = 45433, - [SMALL_STATE(1140)] = 45449, - [SMALL_STATE(1141)] = 45465, - [SMALL_STATE(1142)] = 45481, - [SMALL_STATE(1143)] = 45493, - [SMALL_STATE(1144)] = 45509, - [SMALL_STATE(1145)] = 45525, - [SMALL_STATE(1146)] = 45541, - [SMALL_STATE(1147)] = 45557, - [SMALL_STATE(1148)] = 45573, - [SMALL_STATE(1149)] = 45589, - [SMALL_STATE(1150)] = 45605, - [SMALL_STATE(1151)] = 45621, - [SMALL_STATE(1152)] = 45633, - [SMALL_STATE(1153)] = 45649, - [SMALL_STATE(1154)] = 45665, - [SMALL_STATE(1155)] = 45681, - [SMALL_STATE(1156)] = 45697, - [SMALL_STATE(1157)] = 45713, - [SMALL_STATE(1158)] = 45729, - [SMALL_STATE(1159)] = 45745, - [SMALL_STATE(1160)] = 45761, - [SMALL_STATE(1161)] = 45777, - [SMALL_STATE(1162)] = 45793, - [SMALL_STATE(1163)] = 45807, - [SMALL_STATE(1164)] = 45821, - [SMALL_STATE(1165)] = 45837, - [SMALL_STATE(1166)] = 45849, - [SMALL_STATE(1167)] = 45863, - [SMALL_STATE(1168)] = 45879, - [SMALL_STATE(1169)] = 45895, - [SMALL_STATE(1170)] = 45911, - [SMALL_STATE(1171)] = 45927, - [SMALL_STATE(1172)] = 45939, - [SMALL_STATE(1173)] = 45955, - [SMALL_STATE(1174)] = 45967, - [SMALL_STATE(1175)] = 45983, - [SMALL_STATE(1176)] = 45999, - [SMALL_STATE(1177)] = 46015, - [SMALL_STATE(1178)] = 46029, - [SMALL_STATE(1179)] = 46043, - [SMALL_STATE(1180)] = 46057, - [SMALL_STATE(1181)] = 46073, - [SMALL_STATE(1182)] = 46087, - [SMALL_STATE(1183)] = 46103, - [SMALL_STATE(1184)] = 46119, - [SMALL_STATE(1185)] = 46135, - [SMALL_STATE(1186)] = 46151, - [SMALL_STATE(1187)] = 46167, - [SMALL_STATE(1188)] = 46183, - [SMALL_STATE(1189)] = 46199, - [SMALL_STATE(1190)] = 46215, - [SMALL_STATE(1191)] = 46231, - [SMALL_STATE(1192)] = 46247, - [SMALL_STATE(1193)] = 46263, - [SMALL_STATE(1194)] = 46279, - [SMALL_STATE(1195)] = 46295, - [SMALL_STATE(1196)] = 46311, - [SMALL_STATE(1197)] = 46327, - [SMALL_STATE(1198)] = 46343, - [SMALL_STATE(1199)] = 46359, - [SMALL_STATE(1200)] = 46375, - [SMALL_STATE(1201)] = 46391, - [SMALL_STATE(1202)] = 46407, - [SMALL_STATE(1203)] = 46423, - [SMALL_STATE(1204)] = 46439, - [SMALL_STATE(1205)] = 46455, - [SMALL_STATE(1206)] = 46469, - [SMALL_STATE(1207)] = 46483, - [SMALL_STATE(1208)] = 46497, - [SMALL_STATE(1209)] = 46511, - [SMALL_STATE(1210)] = 46527, - [SMALL_STATE(1211)] = 46541, - [SMALL_STATE(1212)] = 46557, - [SMALL_STATE(1213)] = 46573, - [SMALL_STATE(1214)] = 46587, - [SMALL_STATE(1215)] = 46603, - [SMALL_STATE(1216)] = 46619, - [SMALL_STATE(1217)] = 46633, - [SMALL_STATE(1218)] = 46645, - [SMALL_STATE(1219)] = 46659, - [SMALL_STATE(1220)] = 46673, - [SMALL_STATE(1221)] = 46682, - [SMALL_STATE(1222)] = 46695, - [SMALL_STATE(1223)] = 46708, - [SMALL_STATE(1224)] = 46719, - [SMALL_STATE(1225)] = 46732, - [SMALL_STATE(1226)] = 46745, - [SMALL_STATE(1227)] = 46754, - [SMALL_STATE(1228)] = 46767, - [SMALL_STATE(1229)] = 46778, - [SMALL_STATE(1230)] = 46787, - [SMALL_STATE(1231)] = 46800, - [SMALL_STATE(1232)] = 46813, - [SMALL_STATE(1233)] = 46822, - [SMALL_STATE(1234)] = 46835, - [SMALL_STATE(1235)] = 46846, - [SMALL_STATE(1236)] = 46859, - [SMALL_STATE(1237)] = 46872, - [SMALL_STATE(1238)] = 46885, - [SMALL_STATE(1239)] = 46898, - [SMALL_STATE(1240)] = 46907, - [SMALL_STATE(1241)] = 46916, - [SMALL_STATE(1242)] = 46929, - [SMALL_STATE(1243)] = 46942, - [SMALL_STATE(1244)] = 46955, - [SMALL_STATE(1245)] = 46968, - [SMALL_STATE(1246)] = 46979, - [SMALL_STATE(1247)] = 46992, - [SMALL_STATE(1248)] = 47003, - [SMALL_STATE(1249)] = 47014, - [SMALL_STATE(1250)] = 47025, - [SMALL_STATE(1251)] = 47036, - [SMALL_STATE(1252)] = 47049, - [SMALL_STATE(1253)] = 47062, - [SMALL_STATE(1254)] = 47075, - [SMALL_STATE(1255)] = 47088, - [SMALL_STATE(1256)] = 47097, - [SMALL_STATE(1257)] = 47110, - [SMALL_STATE(1258)] = 47119, - [SMALL_STATE(1259)] = 47132, - [SMALL_STATE(1260)] = 47141, - [SMALL_STATE(1261)] = 47150, - [SMALL_STATE(1262)] = 47159, - [SMALL_STATE(1263)] = 47172, - [SMALL_STATE(1264)] = 47181, - [SMALL_STATE(1265)] = 47192, - [SMALL_STATE(1266)] = 47205, - [SMALL_STATE(1267)] = 47218, - [SMALL_STATE(1268)] = 47229, - [SMALL_STATE(1269)] = 47238, - [SMALL_STATE(1270)] = 47247, - [SMALL_STATE(1271)] = 47256, - [SMALL_STATE(1272)] = 47265, - [SMALL_STATE(1273)] = 47278, - [SMALL_STATE(1274)] = 47287, - [SMALL_STATE(1275)] = 47296, - [SMALL_STATE(1276)] = 47305, - [SMALL_STATE(1277)] = 47318, - [SMALL_STATE(1278)] = 47327, - [SMALL_STATE(1279)] = 47340, - [SMALL_STATE(1280)] = 47349, - [SMALL_STATE(1281)] = 47362, - [SMALL_STATE(1282)] = 47371, - [SMALL_STATE(1283)] = 47384, - [SMALL_STATE(1284)] = 47397, - [SMALL_STATE(1285)] = 47406, - [SMALL_STATE(1286)] = 47419, - [SMALL_STATE(1287)] = 47428, - [SMALL_STATE(1288)] = 47441, - [SMALL_STATE(1289)] = 47454, - [SMALL_STATE(1290)] = 47463, - [SMALL_STATE(1291)] = 47476, - [SMALL_STATE(1292)] = 47487, - [SMALL_STATE(1293)] = 47500, - [SMALL_STATE(1294)] = 47513, - [SMALL_STATE(1295)] = 47526, - [SMALL_STATE(1296)] = 47535, - [SMALL_STATE(1297)] = 47544, - [SMALL_STATE(1298)] = 47553, - [SMALL_STATE(1299)] = 47564, - [SMALL_STATE(1300)] = 47577, - [SMALL_STATE(1301)] = 47588, - [SMALL_STATE(1302)] = 47597, - [SMALL_STATE(1303)] = 47610, - [SMALL_STATE(1304)] = 47619, - [SMALL_STATE(1305)] = 47628, - [SMALL_STATE(1306)] = 47641, - [SMALL_STATE(1307)] = 47654, - [SMALL_STATE(1308)] = 47663, - [SMALL_STATE(1309)] = 47672, - [SMALL_STATE(1310)] = 47685, - [SMALL_STATE(1311)] = 47698, - [SMALL_STATE(1312)] = 47711, - [SMALL_STATE(1313)] = 47720, - [SMALL_STATE(1314)] = 47729, - [SMALL_STATE(1315)] = 47742, - [SMALL_STATE(1316)] = 47755, - [SMALL_STATE(1317)] = 47768, - [SMALL_STATE(1318)] = 47781, - [SMALL_STATE(1319)] = 47794, - [SMALL_STATE(1320)] = 47805, - [SMALL_STATE(1321)] = 47818, - [SMALL_STATE(1322)] = 47827, - [SMALL_STATE(1323)] = 47836, - [SMALL_STATE(1324)] = 47849, - [SMALL_STATE(1325)] = 47858, - [SMALL_STATE(1326)] = 47871, - [SMALL_STATE(1327)] = 47884, - [SMALL_STATE(1328)] = 47893, - [SMALL_STATE(1329)] = 47902, - [SMALL_STATE(1330)] = 47915, - [SMALL_STATE(1331)] = 47924, - [SMALL_STATE(1332)] = 47933, - [SMALL_STATE(1333)] = 47942, - [SMALL_STATE(1334)] = 47955, - [SMALL_STATE(1335)] = 47968, - [SMALL_STATE(1336)] = 47977, - [SMALL_STATE(1337)] = 47990, - [SMALL_STATE(1338)] = 48003, - [SMALL_STATE(1339)] = 48014, - [SMALL_STATE(1340)] = 48027, - [SMALL_STATE(1341)] = 48040, - [SMALL_STATE(1342)] = 48051, - [SMALL_STATE(1343)] = 48064, - [SMALL_STATE(1344)] = 48077, - [SMALL_STATE(1345)] = 48090, - [SMALL_STATE(1346)] = 48103, - [SMALL_STATE(1347)] = 48114, - [SMALL_STATE(1348)] = 48127, - [SMALL_STATE(1349)] = 48140, - [SMALL_STATE(1350)] = 48149, - [SMALL_STATE(1351)] = 48162, - [SMALL_STATE(1352)] = 48175, - [SMALL_STATE(1353)] = 48184, - [SMALL_STATE(1354)] = 48195, - [SMALL_STATE(1355)] = 48204, - [SMALL_STATE(1356)] = 48217, - [SMALL_STATE(1357)] = 48226, - [SMALL_STATE(1358)] = 48239, - [SMALL_STATE(1359)] = 48252, - [SMALL_STATE(1360)] = 48265, - [SMALL_STATE(1361)] = 48278, - [SMALL_STATE(1362)] = 48287, - [SMALL_STATE(1363)] = 48296, - [SMALL_STATE(1364)] = 48309, - [SMALL_STATE(1365)] = 48322, - [SMALL_STATE(1366)] = 48335, - [SMALL_STATE(1367)] = 48348, - [SMALL_STATE(1368)] = 48361, - [SMALL_STATE(1369)] = 48372, - [SMALL_STATE(1370)] = 48385, - [SMALL_STATE(1371)] = 48396, - [SMALL_STATE(1372)] = 48409, - [SMALL_STATE(1373)] = 48420, - [SMALL_STATE(1374)] = 48433, - [SMALL_STATE(1375)] = 48442, - [SMALL_STATE(1376)] = 48455, - [SMALL_STATE(1377)] = 48468, - [SMALL_STATE(1378)] = 48481, - [SMALL_STATE(1379)] = 48494, - [SMALL_STATE(1380)] = 48507, - [SMALL_STATE(1381)] = 48520, - [SMALL_STATE(1382)] = 48533, - [SMALL_STATE(1383)] = 48546, - [SMALL_STATE(1384)] = 48559, - [SMALL_STATE(1385)] = 48572, - [SMALL_STATE(1386)] = 48585, - [SMALL_STATE(1387)] = 48598, - [SMALL_STATE(1388)] = 48611, - [SMALL_STATE(1389)] = 48624, - [SMALL_STATE(1390)] = 48637, - [SMALL_STATE(1391)] = 48650, - [SMALL_STATE(1392)] = 48663, - [SMALL_STATE(1393)] = 48676, - [SMALL_STATE(1394)] = 48689, - [SMALL_STATE(1395)] = 48702, - [SMALL_STATE(1396)] = 48715, - [SMALL_STATE(1397)] = 48728, - [SMALL_STATE(1398)] = 48741, - [SMALL_STATE(1399)] = 48754, - [SMALL_STATE(1400)] = 48767, - [SMALL_STATE(1401)] = 48780, - [SMALL_STATE(1402)] = 48793, - [SMALL_STATE(1403)] = 48806, - [SMALL_STATE(1404)] = 48819, - [SMALL_STATE(1405)] = 48832, - [SMALL_STATE(1406)] = 48845, - [SMALL_STATE(1407)] = 48858, - [SMALL_STATE(1408)] = 48871, - [SMALL_STATE(1409)] = 48884, - [SMALL_STATE(1410)] = 48897, - [SMALL_STATE(1411)] = 48908, - [SMALL_STATE(1412)] = 48921, - [SMALL_STATE(1413)] = 48934, - [SMALL_STATE(1414)] = 48947, - [SMALL_STATE(1415)] = 48960, - [SMALL_STATE(1416)] = 48973, - [SMALL_STATE(1417)] = 48986, - [SMALL_STATE(1418)] = 48999, - [SMALL_STATE(1419)] = 49012, - [SMALL_STATE(1420)] = 49025, - [SMALL_STATE(1421)] = 49038, - [SMALL_STATE(1422)] = 49051, - [SMALL_STATE(1423)] = 49064, - [SMALL_STATE(1424)] = 49077, - [SMALL_STATE(1425)] = 49090, - [SMALL_STATE(1426)] = 49098, - [SMALL_STATE(1427)] = 49108, - [SMALL_STATE(1428)] = 49118, - [SMALL_STATE(1429)] = 49128, - [SMALL_STATE(1430)] = 49136, - [SMALL_STATE(1431)] = 49146, - [SMALL_STATE(1432)] = 49156, - [SMALL_STATE(1433)] = 49164, - [SMALL_STATE(1434)] = 49174, - [SMALL_STATE(1435)] = 49184, - [SMALL_STATE(1436)] = 49194, - [SMALL_STATE(1437)] = 49204, - [SMALL_STATE(1438)] = 49214, - [SMALL_STATE(1439)] = 49224, - [SMALL_STATE(1440)] = 49232, - [SMALL_STATE(1441)] = 49240, - [SMALL_STATE(1442)] = 49250, - [SMALL_STATE(1443)] = 49260, - [SMALL_STATE(1444)] = 49268, - [SMALL_STATE(1445)] = 49276, - [SMALL_STATE(1446)] = 49286, - [SMALL_STATE(1447)] = 49296, - [SMALL_STATE(1448)] = 49306, - [SMALL_STATE(1449)] = 49316, - [SMALL_STATE(1450)] = 49326, - [SMALL_STATE(1451)] = 49336, - [SMALL_STATE(1452)] = 49346, - [SMALL_STATE(1453)] = 49356, - [SMALL_STATE(1454)] = 49364, - [SMALL_STATE(1455)] = 49374, - [SMALL_STATE(1456)] = 49382, - [SMALL_STATE(1457)] = 49392, - [SMALL_STATE(1458)] = 49400, - [SMALL_STATE(1459)] = 49410, - [SMALL_STATE(1460)] = 49420, - [SMALL_STATE(1461)] = 49430, - [SMALL_STATE(1462)] = 49440, - [SMALL_STATE(1463)] = 49450, - [SMALL_STATE(1464)] = 49460, - [SMALL_STATE(1465)] = 49470, - [SMALL_STATE(1466)] = 49480, - [SMALL_STATE(1467)] = 49490, - [SMALL_STATE(1468)] = 49500, - [SMALL_STATE(1469)] = 49508, - [SMALL_STATE(1470)] = 49516, - [SMALL_STATE(1471)] = 49526, - [SMALL_STATE(1472)] = 49536, - [SMALL_STATE(1473)] = 49546, - [SMALL_STATE(1474)] = 49554, - [SMALL_STATE(1475)] = 49564, - [SMALL_STATE(1476)] = 49574, - [SMALL_STATE(1477)] = 49584, - [SMALL_STATE(1478)] = 49592, - [SMALL_STATE(1479)] = 49602, - [SMALL_STATE(1480)] = 49612, - [SMALL_STATE(1481)] = 49622, - [SMALL_STATE(1482)] = 49630, - [SMALL_STATE(1483)] = 49640, - [SMALL_STATE(1484)] = 49650, - [SMALL_STATE(1485)] = 49660, - [SMALL_STATE(1486)] = 49670, - [SMALL_STATE(1487)] = 49678, - [SMALL_STATE(1488)] = 49688, - [SMALL_STATE(1489)] = 49698, - [SMALL_STATE(1490)] = 49708, - [SMALL_STATE(1491)] = 49718, - [SMALL_STATE(1492)] = 49726, - [SMALL_STATE(1493)] = 49736, - [SMALL_STATE(1494)] = 49746, - [SMALL_STATE(1495)] = 49754, - [SMALL_STATE(1496)] = 49764, - [SMALL_STATE(1497)] = 49772, - [SMALL_STATE(1498)] = 49780, - [SMALL_STATE(1499)] = 49790, - [SMALL_STATE(1500)] = 49800, - [SMALL_STATE(1501)] = 49810, - [SMALL_STATE(1502)] = 49820, - [SMALL_STATE(1503)] = 49830, - [SMALL_STATE(1504)] = 49840, - [SMALL_STATE(1505)] = 49850, - [SMALL_STATE(1506)] = 49860, - [SMALL_STATE(1507)] = 49870, - [SMALL_STATE(1508)] = 49880, - [SMALL_STATE(1509)] = 49888, - [SMALL_STATE(1510)] = 49898, - [SMALL_STATE(1511)] = 49906, - [SMALL_STATE(1512)] = 49916, - [SMALL_STATE(1513)] = 49924, - [SMALL_STATE(1514)] = 49934, - [SMALL_STATE(1515)] = 49944, - [SMALL_STATE(1516)] = 49952, - [SMALL_STATE(1517)] = 49962, - [SMALL_STATE(1518)] = 49972, - [SMALL_STATE(1519)] = 49982, - [SMALL_STATE(1520)] = 49992, - [SMALL_STATE(1521)] = 50000, - [SMALL_STATE(1522)] = 50010, - [SMALL_STATE(1523)] = 50020, - [SMALL_STATE(1524)] = 50030, - [SMALL_STATE(1525)] = 50040, - [SMALL_STATE(1526)] = 50050, - [SMALL_STATE(1527)] = 50060, - [SMALL_STATE(1528)] = 50068, - [SMALL_STATE(1529)] = 50076, - [SMALL_STATE(1530)] = 50086, - [SMALL_STATE(1531)] = 50096, - [SMALL_STATE(1532)] = 50104, - [SMALL_STATE(1533)] = 50114, - [SMALL_STATE(1534)] = 50124, - [SMALL_STATE(1535)] = 50134, - [SMALL_STATE(1536)] = 50142, - [SMALL_STATE(1537)] = 50152, - [SMALL_STATE(1538)] = 50162, - [SMALL_STATE(1539)] = 50172, - [SMALL_STATE(1540)] = 50182, - [SMALL_STATE(1541)] = 50192, - [SMALL_STATE(1542)] = 50202, - [SMALL_STATE(1543)] = 50210, - [SMALL_STATE(1544)] = 50220, - [SMALL_STATE(1545)] = 50228, - [SMALL_STATE(1546)] = 50236, - [SMALL_STATE(1547)] = 50246, - [SMALL_STATE(1548)] = 50256, - [SMALL_STATE(1549)] = 50266, - [SMALL_STATE(1550)] = 50274, - [SMALL_STATE(1551)] = 50282, - [SMALL_STATE(1552)] = 50292, - [SMALL_STATE(1553)] = 50300, - [SMALL_STATE(1554)] = 50310, - [SMALL_STATE(1555)] = 50318, - [SMALL_STATE(1556)] = 50326, - [SMALL_STATE(1557)] = 50336, - [SMALL_STATE(1558)] = 50344, - [SMALL_STATE(1559)] = 50352, - [SMALL_STATE(1560)] = 50362, - [SMALL_STATE(1561)] = 50370, - [SMALL_STATE(1562)] = 50378, - [SMALL_STATE(1563)] = 50388, - [SMALL_STATE(1564)] = 50398, - [SMALL_STATE(1565)] = 50406, - [SMALL_STATE(1566)] = 50416, - [SMALL_STATE(1567)] = 50426, - [SMALL_STATE(1568)] = 50434, - [SMALL_STATE(1569)] = 50444, - [SMALL_STATE(1570)] = 50454, - [SMALL_STATE(1571)] = 50464, - [SMALL_STATE(1572)] = 50472, - [SMALL_STATE(1573)] = 50482, - [SMALL_STATE(1574)] = 50492, - [SMALL_STATE(1575)] = 50500, - [SMALL_STATE(1576)] = 50510, - [SMALL_STATE(1577)] = 50520, - [SMALL_STATE(1578)] = 50528, - [SMALL_STATE(1579)] = 50538, - [SMALL_STATE(1580)] = 50548, - [SMALL_STATE(1581)] = 50558, - [SMALL_STATE(1582)] = 50568, - [SMALL_STATE(1583)] = 50575, - [SMALL_STATE(1584)] = 50582, - [SMALL_STATE(1585)] = 50589, - [SMALL_STATE(1586)] = 50596, - [SMALL_STATE(1587)] = 50603, - [SMALL_STATE(1588)] = 50610, - [SMALL_STATE(1589)] = 50617, - [SMALL_STATE(1590)] = 50624, - [SMALL_STATE(1591)] = 50631, - [SMALL_STATE(1592)] = 50638, - [SMALL_STATE(1593)] = 50645, - [SMALL_STATE(1594)] = 50652, - [SMALL_STATE(1595)] = 50659, - [SMALL_STATE(1596)] = 50666, - [SMALL_STATE(1597)] = 50673, - [SMALL_STATE(1598)] = 50680, - [SMALL_STATE(1599)] = 50687, - [SMALL_STATE(1600)] = 50694, - [SMALL_STATE(1601)] = 50701, - [SMALL_STATE(1602)] = 50708, - [SMALL_STATE(1603)] = 50715, - [SMALL_STATE(1604)] = 50722, - [SMALL_STATE(1605)] = 50729, - [SMALL_STATE(1606)] = 50736, - [SMALL_STATE(1607)] = 50743, - [SMALL_STATE(1608)] = 50750, - [SMALL_STATE(1609)] = 50757, - [SMALL_STATE(1610)] = 50764, - [SMALL_STATE(1611)] = 50771, - [SMALL_STATE(1612)] = 50778, - [SMALL_STATE(1613)] = 50785, - [SMALL_STATE(1614)] = 50792, - [SMALL_STATE(1615)] = 50799, - [SMALL_STATE(1616)] = 50806, - [SMALL_STATE(1617)] = 50813, - [SMALL_STATE(1618)] = 50820, - [SMALL_STATE(1619)] = 50827, - [SMALL_STATE(1620)] = 50834, - [SMALL_STATE(1621)] = 50841, - [SMALL_STATE(1622)] = 50848, - [SMALL_STATE(1623)] = 50855, - [SMALL_STATE(1624)] = 50862, - [SMALL_STATE(1625)] = 50869, - [SMALL_STATE(1626)] = 50876, - [SMALL_STATE(1627)] = 50883, - [SMALL_STATE(1628)] = 50890, - [SMALL_STATE(1629)] = 50897, - [SMALL_STATE(1630)] = 50904, - [SMALL_STATE(1631)] = 50911, - [SMALL_STATE(1632)] = 50918, - [SMALL_STATE(1633)] = 50925, - [SMALL_STATE(1634)] = 50932, - [SMALL_STATE(1635)] = 50939, - [SMALL_STATE(1636)] = 50946, - [SMALL_STATE(1637)] = 50953, - [SMALL_STATE(1638)] = 50960, - [SMALL_STATE(1639)] = 50967, - [SMALL_STATE(1640)] = 50974, - [SMALL_STATE(1641)] = 50981, - [SMALL_STATE(1642)] = 50988, - [SMALL_STATE(1643)] = 50995, - [SMALL_STATE(1644)] = 51002, - [SMALL_STATE(1645)] = 51009, - [SMALL_STATE(1646)] = 51016, - [SMALL_STATE(1647)] = 51023, - [SMALL_STATE(1648)] = 51030, - [SMALL_STATE(1649)] = 51037, - [SMALL_STATE(1650)] = 51044, - [SMALL_STATE(1651)] = 51051, - [SMALL_STATE(1652)] = 51058, - [SMALL_STATE(1653)] = 51065, - [SMALL_STATE(1654)] = 51072, - [SMALL_STATE(1655)] = 51079, - [SMALL_STATE(1656)] = 51086, - [SMALL_STATE(1657)] = 51093, - [SMALL_STATE(1658)] = 51100, - [SMALL_STATE(1659)] = 51107, - [SMALL_STATE(1660)] = 51114, - [SMALL_STATE(1661)] = 51121, - [SMALL_STATE(1662)] = 51128, - [SMALL_STATE(1663)] = 51135, - [SMALL_STATE(1664)] = 51142, - [SMALL_STATE(1665)] = 51149, - [SMALL_STATE(1666)] = 51156, - [SMALL_STATE(1667)] = 51163, - [SMALL_STATE(1668)] = 51170, - [SMALL_STATE(1669)] = 51177, - [SMALL_STATE(1670)] = 51184, - [SMALL_STATE(1671)] = 51191, - [SMALL_STATE(1672)] = 51198, - [SMALL_STATE(1673)] = 51205, - [SMALL_STATE(1674)] = 51212, - [SMALL_STATE(1675)] = 51219, - [SMALL_STATE(1676)] = 51226, - [SMALL_STATE(1677)] = 51233, - [SMALL_STATE(1678)] = 51240, - [SMALL_STATE(1679)] = 51247, - [SMALL_STATE(1680)] = 51254, - [SMALL_STATE(1681)] = 51261, - [SMALL_STATE(1682)] = 51268, - [SMALL_STATE(1683)] = 51275, - [SMALL_STATE(1684)] = 51282, - [SMALL_STATE(1685)] = 51289, - [SMALL_STATE(1686)] = 51296, - [SMALL_STATE(1687)] = 51303, - [SMALL_STATE(1688)] = 51310, - [SMALL_STATE(1689)] = 51317, - [SMALL_STATE(1690)] = 51324, - [SMALL_STATE(1691)] = 51331, - [SMALL_STATE(1692)] = 51338, - [SMALL_STATE(1693)] = 51345, - [SMALL_STATE(1694)] = 51352, - [SMALL_STATE(1695)] = 51359, - [SMALL_STATE(1696)] = 51366, - [SMALL_STATE(1697)] = 51373, - [SMALL_STATE(1698)] = 51380, - [SMALL_STATE(1699)] = 51387, - [SMALL_STATE(1700)] = 51394, - [SMALL_STATE(1701)] = 51401, - [SMALL_STATE(1702)] = 51408, - [SMALL_STATE(1703)] = 51415, - [SMALL_STATE(1704)] = 51422, - [SMALL_STATE(1705)] = 51429, - [SMALL_STATE(1706)] = 51436, - [SMALL_STATE(1707)] = 51443, - [SMALL_STATE(1708)] = 51450, - [SMALL_STATE(1709)] = 51457, - [SMALL_STATE(1710)] = 51464, - [SMALL_STATE(1711)] = 51471, - [SMALL_STATE(1712)] = 51478, - [SMALL_STATE(1713)] = 51485, - [SMALL_STATE(1714)] = 51492, - [SMALL_STATE(1715)] = 51499, - [SMALL_STATE(1716)] = 51506, - [SMALL_STATE(1717)] = 51513, - [SMALL_STATE(1718)] = 51520, - [SMALL_STATE(1719)] = 51527, - [SMALL_STATE(1720)] = 51534, - [SMALL_STATE(1721)] = 51541, - [SMALL_STATE(1722)] = 51548, - [SMALL_STATE(1723)] = 51555, - [SMALL_STATE(1724)] = 51562, - [SMALL_STATE(1725)] = 51569, - [SMALL_STATE(1726)] = 51576, - [SMALL_STATE(1727)] = 51583, - [SMALL_STATE(1728)] = 51590, - [SMALL_STATE(1729)] = 51597, - [SMALL_STATE(1730)] = 51604, - [SMALL_STATE(1731)] = 51611, - [SMALL_STATE(1732)] = 51618, - [SMALL_STATE(1733)] = 51625, - [SMALL_STATE(1734)] = 51632, - [SMALL_STATE(1735)] = 51639, - [SMALL_STATE(1736)] = 51646, - [SMALL_STATE(1737)] = 51653, - [SMALL_STATE(1738)] = 51660, - [SMALL_STATE(1739)] = 51667, - [SMALL_STATE(1740)] = 51674, - [SMALL_STATE(1741)] = 51681, - [SMALL_STATE(1742)] = 51688, - [SMALL_STATE(1743)] = 51695, - [SMALL_STATE(1744)] = 51702, - [SMALL_STATE(1745)] = 51709, - [SMALL_STATE(1746)] = 51716, - [SMALL_STATE(1747)] = 51723, + [SMALL_STATE(245)] = 0, + [SMALL_STATE(246)] = 71, + [SMALL_STATE(247)] = 142, + [SMALL_STATE(248)] = 213, + [SMALL_STATE(249)] = 284, + [SMALL_STATE(250)] = 355, + [SMALL_STATE(251)] = 426, + [SMALL_STATE(252)] = 497, + [SMALL_STATE(253)] = 585, + [SMALL_STATE(254)] = 673, + [SMALL_STATE(255)] = 742, + [SMALL_STATE(256)] = 811, + [SMALL_STATE(257)] = 880, + [SMALL_STATE(258)] = 947, + [SMALL_STATE(259)] = 1014, + [SMALL_STATE(260)] = 1081, + [SMALL_STATE(261)] = 1148, + [SMALL_STATE(262)] = 1215, + [SMALL_STATE(263)] = 1282, + [SMALL_STATE(264)] = 1349, + [SMALL_STATE(265)] = 1416, + [SMALL_STATE(266)] = 1483, + [SMALL_STATE(267)] = 1550, + [SMALL_STATE(268)] = 1617, + [SMALL_STATE(269)] = 1684, + [SMALL_STATE(270)] = 1751, + [SMALL_STATE(271)] = 1818, + [SMALL_STATE(272)] = 1885, + [SMALL_STATE(273)] = 1952, + [SMALL_STATE(274)] = 2019, + [SMALL_STATE(275)] = 2086, + [SMALL_STATE(276)] = 2153, + [SMALL_STATE(277)] = 2220, + [SMALL_STATE(278)] = 2287, + [SMALL_STATE(279)] = 2354, + [SMALL_STATE(280)] = 2421, + [SMALL_STATE(281)] = 2488, + [SMALL_STATE(282)] = 2555, + [SMALL_STATE(283)] = 2622, + [SMALL_STATE(284)] = 2689, + [SMALL_STATE(285)] = 2756, + [SMALL_STATE(286)] = 2823, + [SMALL_STATE(287)] = 2890, + [SMALL_STATE(288)] = 2957, + [SMALL_STATE(289)] = 3024, + [SMALL_STATE(290)] = 3091, + [SMALL_STATE(291)] = 3158, + [SMALL_STATE(292)] = 3225, + [SMALL_STATE(293)] = 3292, + [SMALL_STATE(294)] = 3359, + [SMALL_STATE(295)] = 3426, + [SMALL_STATE(296)] = 3493, + [SMALL_STATE(297)] = 3560, + [SMALL_STATE(298)] = 3627, + [SMALL_STATE(299)] = 3694, + [SMALL_STATE(300)] = 3761, + [SMALL_STATE(301)] = 3828, + [SMALL_STATE(302)] = 3895, + [SMALL_STATE(303)] = 3962, + [SMALL_STATE(304)] = 4029, + [SMALL_STATE(305)] = 4096, + [SMALL_STATE(306)] = 4163, + [SMALL_STATE(307)] = 4230, + [SMALL_STATE(308)] = 4297, + [SMALL_STATE(309)] = 4364, + [SMALL_STATE(310)] = 4431, + [SMALL_STATE(311)] = 4498, + [SMALL_STATE(312)] = 4565, + [SMALL_STATE(313)] = 4632, + [SMALL_STATE(314)] = 4699, + [SMALL_STATE(315)] = 4766, + [SMALL_STATE(316)] = 4833, + [SMALL_STATE(317)] = 4900, + [SMALL_STATE(318)] = 4967, + [SMALL_STATE(319)] = 5034, + [SMALL_STATE(320)] = 5101, + [SMALL_STATE(321)] = 5168, + [SMALL_STATE(322)] = 5235, + [SMALL_STATE(323)] = 5302, + [SMALL_STATE(324)] = 5369, + [SMALL_STATE(325)] = 5436, + [SMALL_STATE(326)] = 5503, + [SMALL_STATE(327)] = 5570, + [SMALL_STATE(328)] = 5637, + [SMALL_STATE(329)] = 5704, + [SMALL_STATE(330)] = 5771, + [SMALL_STATE(331)] = 5838, + [SMALL_STATE(332)] = 5905, + [SMALL_STATE(333)] = 5976, + [SMALL_STATE(334)] = 6043, + [SMALL_STATE(335)] = 6110, + [SMALL_STATE(336)] = 6177, + [SMALL_STATE(337)] = 6244, + [SMALL_STATE(338)] = 6311, + [SMALL_STATE(339)] = 6377, + [SMALL_STATE(340)] = 6491, + [SMALL_STATE(341)] = 6605, + [SMALL_STATE(342)] = 6719, + [SMALL_STATE(343)] = 6785, + [SMALL_STATE(344)] = 6899, + [SMALL_STATE(345)] = 6965, + [SMALL_STATE(346)] = 7079, + [SMALL_STATE(347)] = 7207, + [SMALL_STATE(348)] = 7272, + [SMALL_STATE(349)] = 7337, + [SMALL_STATE(350)] = 7462, + [SMALL_STATE(351)] = 7587, + [SMALL_STATE(352)] = 7652, + [SMALL_STATE(353)] = 7777, + [SMALL_STATE(354)] = 7842, + [SMALL_STATE(355)] = 7907, + [SMALL_STATE(356)] = 7972, + [SMALL_STATE(357)] = 8041, + [SMALL_STATE(358)] = 8106, + [SMALL_STATE(359)] = 8171, + [SMALL_STATE(360)] = 8240, + [SMALL_STATE(361)] = 8305, + [SMALL_STATE(362)] = 8370, + [SMALL_STATE(363)] = 8435, + [SMALL_STATE(364)] = 8500, + [SMALL_STATE(365)] = 8622, + [SMALL_STATE(366)] = 8746, + [SMALL_STATE(367)] = 8870, + [SMALL_STATE(368)] = 8994, + [SMALL_STATE(369)] = 9110, + [SMALL_STATE(370)] = 9226, + [SMALL_STATE(371)] = 9342, + [SMALL_STATE(372)] = 9458, + [SMALL_STATE(373)] = 9574, + [SMALL_STATE(374)] = 9687, + [SMALL_STATE(375)] = 9800, + [SMALL_STATE(376)] = 9913, + [SMALL_STATE(377)] = 10028, + [SMALL_STATE(378)] = 10138, + [SMALL_STATE(379)] = 10244, + [SMALL_STATE(380)] = 10350, + [SMALL_STATE(381)] = 10460, + [SMALL_STATE(382)] = 10570, + [SMALL_STATE(383)] = 10677, + [SMALL_STATE(384)] = 10784, + [SMALL_STATE(385)] = 10845, + [SMALL_STATE(386)] = 10952, + [SMALL_STATE(387)] = 11059, + [SMALL_STATE(388)] = 11163, + [SMALL_STATE(389)] = 11267, + [SMALL_STATE(390)] = 11371, + [SMALL_STATE(391)] = 11475, + [SMALL_STATE(392)] = 11576, + [SMALL_STATE(393)] = 11677, + [SMALL_STATE(394)] = 11778, + [SMALL_STATE(395)] = 11879, + [SMALL_STATE(396)] = 11934, + [SMALL_STATE(397)] = 12035, + [SMALL_STATE(398)] = 12136, + [SMALL_STATE(399)] = 12234, + [SMALL_STATE(400)] = 12332, + [SMALL_STATE(401)] = 12430, + [SMALL_STATE(402)] = 12528, + [SMALL_STATE(403)] = 12626, + [SMALL_STATE(404)] = 12724, + [SMALL_STATE(405)] = 12822, + [SMALL_STATE(406)] = 12920, + [SMALL_STATE(407)] = 13018, + [SMALL_STATE(408)] = 13116, + [SMALL_STATE(409)] = 13214, + [SMALL_STATE(410)] = 13312, + [SMALL_STATE(411)] = 13365, + [SMALL_STATE(412)] = 13460, + [SMALL_STATE(413)] = 13555, + [SMALL_STATE(414)] = 13650, + [SMALL_STATE(415)] = 13745, + [SMALL_STATE(416)] = 13840, + [SMALL_STATE(417)] = 13935, + [SMALL_STATE(418)] = 14030, + [SMALL_STATE(419)] = 14125, + [SMALL_STATE(420)] = 14220, + [SMALL_STATE(421)] = 14315, + [SMALL_STATE(422)] = 14410, + [SMALL_STATE(423)] = 14505, + [SMALL_STATE(424)] = 14600, + [SMALL_STATE(425)] = 14695, + [SMALL_STATE(426)] = 14790, + [SMALL_STATE(427)] = 14885, + [SMALL_STATE(428)] = 14938, + [SMALL_STATE(429)] = 15033, + [SMALL_STATE(430)] = 15128, + [SMALL_STATE(431)] = 15223, + [SMALL_STATE(432)] = 15318, + [SMALL_STATE(433)] = 15413, + [SMALL_STATE(434)] = 15508, + [SMALL_STATE(435)] = 15560, + [SMALL_STATE(436)] = 15652, + [SMALL_STATE(437)] = 15744, + [SMALL_STATE(438)] = 15836, + [SMALL_STATE(439)] = 15928, + [SMALL_STATE(440)] = 16020, + [SMALL_STATE(441)] = 16112, + [SMALL_STATE(442)] = 16201, + [SMALL_STATE(443)] = 16290, + [SMALL_STATE(444)] = 16379, + [SMALL_STATE(445)] = 16468, + [SMALL_STATE(446)] = 16514, + [SMALL_STATE(447)] = 16560, + [SMALL_STATE(448)] = 16606, + [SMALL_STATE(449)] = 16652, + [SMALL_STATE(450)] = 16706, + [SMALL_STATE(451)] = 16752, + [SMALL_STATE(452)] = 16798, + [SMALL_STATE(453)] = 16844, + [SMALL_STATE(454)] = 16891, + [SMALL_STATE(455)] = 16938, + [SMALL_STATE(456)] = 16985, + [SMALL_STATE(457)] = 17032, + [SMALL_STATE(458)] = 17081, + [SMALL_STATE(459)] = 17125, + [SMALL_STATE(460)] = 17173, + [SMALL_STATE(461)] = 17219, + [SMALL_STATE(462)] = 17265, + [SMALL_STATE(463)] = 17309, + [SMALL_STATE(464)] = 17353, + [SMALL_STATE(465)] = 17397, + [SMALL_STATE(466)] = 17445, + [SMALL_STATE(467)] = 17491, + [SMALL_STATE(468)] = 17545, + [SMALL_STATE(469)] = 17593, + [SMALL_STATE(470)] = 17637, + [SMALL_STATE(471)] = 17680, + [SMALL_STATE(472)] = 17723, + [SMALL_STATE(473)] = 17766, + [SMALL_STATE(474)] = 17809, + [SMALL_STATE(475)] = 17852, + [SMALL_STATE(476)] = 17895, + [SMALL_STATE(477)] = 17938, + [SMALL_STATE(478)] = 18011, + [SMALL_STATE(479)] = 18054, + [SMALL_STATE(480)] = 18097, + [SMALL_STATE(481)] = 18140, + [SMALL_STATE(482)] = 18183, + [SMALL_STATE(483)] = 18226, + [SMALL_STATE(484)] = 18269, + [SMALL_STATE(485)] = 18312, + [SMALL_STATE(486)] = 18355, + [SMALL_STATE(487)] = 18398, + [SMALL_STATE(488)] = 18441, + [SMALL_STATE(489)] = 18484, + [SMALL_STATE(490)] = 18527, + [SMALL_STATE(491)] = 18570, + [SMALL_STATE(492)] = 18613, + [SMALL_STATE(493)] = 18658, + [SMALL_STATE(494)] = 18701, + [SMALL_STATE(495)] = 18744, + [SMALL_STATE(496)] = 18787, + [SMALL_STATE(497)] = 18830, + [SMALL_STATE(498)] = 18879, + [SMALL_STATE(499)] = 18922, + [SMALL_STATE(500)] = 18995, + [SMALL_STATE(501)] = 19038, + [SMALL_STATE(502)] = 19087, + [SMALL_STATE(503)] = 19130, + [SMALL_STATE(504)] = 19173, + [SMALL_STATE(505)] = 19216, + [SMALL_STATE(506)] = 19259, + [SMALL_STATE(507)] = 19302, + [SMALL_STATE(508)] = 19351, + [SMALL_STATE(509)] = 19394, + [SMALL_STATE(510)] = 19437, + [SMALL_STATE(511)] = 19486, + [SMALL_STATE(512)] = 19529, + [SMALL_STATE(513)] = 19602, + [SMALL_STATE(514)] = 19645, + [SMALL_STATE(515)] = 19688, + [SMALL_STATE(516)] = 19731, + [SMALL_STATE(517)] = 19774, + [SMALL_STATE(518)] = 19817, + [SMALL_STATE(519)] = 19860, + [SMALL_STATE(520)] = 19933, + [SMALL_STATE(521)] = 20003, + [SMALL_STATE(522)] = 20073, + [SMALL_STATE(523)] = 20133, + [SMALL_STATE(524)] = 20183, + [SMALL_STATE(525)] = 20239, + [SMALL_STATE(526)] = 20293, + [SMALL_STATE(527)] = 20351, + [SMALL_STATE(528)] = 20415, + [SMALL_STATE(529)] = 20481, + [SMALL_STATE(530)] = 20533, + [SMALL_STATE(531)] = 20603, + [SMALL_STATE(532)] = 20673, + [SMALL_STATE(533)] = 20741, + [SMALL_STATE(534)] = 20809, + [SMALL_STATE(535)] = 20881, + [SMALL_STATE(536)] = 20931, + [SMALL_STATE(537)] = 21003, + [SMALL_STATE(538)] = 21044, + [SMALL_STATE(539)] = 21085, + [SMALL_STATE(540)] = 21126, + [SMALL_STATE(541)] = 21167, + [SMALL_STATE(542)] = 21208, + [SMALL_STATE(543)] = 21249, + [SMALL_STATE(544)] = 21290, + [SMALL_STATE(545)] = 21331, + [SMALL_STATE(546)] = 21372, + [SMALL_STATE(547)] = 21413, + [SMALL_STATE(548)] = 21454, + [SMALL_STATE(549)] = 21495, + [SMALL_STATE(550)] = 21536, + [SMALL_STATE(551)] = 21577, + [SMALL_STATE(552)] = 21618, + [SMALL_STATE(553)] = 21659, + [SMALL_STATE(554)] = 21700, + [SMALL_STATE(555)] = 21741, + [SMALL_STATE(556)] = 21782, + [SMALL_STATE(557)] = 21823, + [SMALL_STATE(558)] = 21864, + [SMALL_STATE(559)] = 21905, + [SMALL_STATE(560)] = 21946, + [SMALL_STATE(561)] = 21987, + [SMALL_STATE(562)] = 22028, + [SMALL_STATE(563)] = 22069, + [SMALL_STATE(564)] = 22110, + [SMALL_STATE(565)] = 22151, + [SMALL_STATE(566)] = 22192, + [SMALL_STATE(567)] = 22233, + [SMALL_STATE(568)] = 22276, + [SMALL_STATE(569)] = 22317, + [SMALL_STATE(570)] = 22358, + [SMALL_STATE(571)] = 22399, + [SMALL_STATE(572)] = 22440, + [SMALL_STATE(573)] = 22481, + [SMALL_STATE(574)] = 22522, + [SMALL_STATE(575)] = 22563, + [SMALL_STATE(576)] = 22604, + [SMALL_STATE(577)] = 22645, + [SMALL_STATE(578)] = 22686, + [SMALL_STATE(579)] = 22727, + [SMALL_STATE(580)] = 22768, + [SMALL_STATE(581)] = 22809, + [SMALL_STATE(582)] = 22850, + [SMALL_STATE(583)] = 22895, + [SMALL_STATE(584)] = 22936, + [SMALL_STATE(585)] = 22977, + [SMALL_STATE(586)] = 23018, + [SMALL_STATE(587)] = 23059, + [SMALL_STATE(588)] = 23100, + [SMALL_STATE(589)] = 23143, + [SMALL_STATE(590)] = 23184, + [SMALL_STATE(591)] = 23225, + [SMALL_STATE(592)] = 23266, + [SMALL_STATE(593)] = 23309, + [SMALL_STATE(594)] = 23350, + [SMALL_STATE(595)] = 23391, + [SMALL_STATE(596)] = 23432, + [SMALL_STATE(597)] = 23473, + [SMALL_STATE(598)] = 23514, + [SMALL_STATE(599)] = 23555, + [SMALL_STATE(600)] = 23596, + [SMALL_STATE(601)] = 23637, + [SMALL_STATE(602)] = 23678, + [SMALL_STATE(603)] = 23719, + [SMALL_STATE(604)] = 23760, + [SMALL_STATE(605)] = 23801, + [SMALL_STATE(606)] = 23842, + [SMALL_STATE(607)] = 23883, + [SMALL_STATE(608)] = 23924, + [SMALL_STATE(609)] = 23965, + [SMALL_STATE(610)] = 24006, + [SMALL_STATE(611)] = 24047, + [SMALL_STATE(612)] = 24088, + [SMALL_STATE(613)] = 24129, + [SMALL_STATE(614)] = 24170, + [SMALL_STATE(615)] = 24211, + [SMALL_STATE(616)] = 24252, + [SMALL_STATE(617)] = 24293, + [SMALL_STATE(618)] = 24336, + [SMALL_STATE(619)] = 24377, + [SMALL_STATE(620)] = 24418, + [SMALL_STATE(621)] = 24459, + [SMALL_STATE(622)] = 24506, + [SMALL_STATE(623)] = 24546, + [SMALL_STATE(624)] = 24590, + [SMALL_STATE(625)] = 24634, + [SMALL_STATE(626)] = 24710, + [SMALL_STATE(627)] = 24750, + [SMALL_STATE(628)] = 24790, + [SMALL_STATE(629)] = 24856, + [SMALL_STATE(630)] = 24922, + [SMALL_STATE(631)] = 24962, + [SMALL_STATE(632)] = 25002, + [SMALL_STATE(633)] = 25068, + [SMALL_STATE(634)] = 25134, + [SMALL_STATE(635)] = 25174, + [SMALL_STATE(636)] = 25218, + [SMALL_STATE(637)] = 25262, + [SMALL_STATE(638)] = 25302, + [SMALL_STATE(639)] = 25378, + [SMALL_STATE(640)] = 25418, + [SMALL_STATE(641)] = 25458, + [SMALL_STATE(642)] = 25500, + [SMALL_STATE(643)] = 25566, + [SMALL_STATE(644)] = 25608, + [SMALL_STATE(645)] = 25674, + [SMALL_STATE(646)] = 25750, + [SMALL_STATE(647)] = 25790, + [SMALL_STATE(648)] = 25856, + [SMALL_STATE(649)] = 25896, + [SMALL_STATE(650)] = 25940, + [SMALL_STATE(651)] = 26006, + [SMALL_STATE(652)] = 26072, + [SMALL_STATE(653)] = 26148, + [SMALL_STATE(654)] = 26214, + [SMALL_STATE(655)] = 26287, + [SMALL_STATE(656)] = 26326, + [SMALL_STATE(657)] = 26389, + [SMALL_STATE(658)] = 26428, + [SMALL_STATE(659)] = 26467, + [SMALL_STATE(660)] = 26530, + [SMALL_STATE(661)] = 26593, + [SMALL_STATE(662)] = 26632, + [SMALL_STATE(663)] = 26695, + [SMALL_STATE(664)] = 26768, + [SMALL_STATE(665)] = 26831, + [SMALL_STATE(666)] = 26894, + [SMALL_STATE(667)] = 26957, + [SMALL_STATE(668)] = 27020, + [SMALL_STATE(669)] = 27061, + [SMALL_STATE(670)] = 27134, + [SMALL_STATE(671)] = 27197, + [SMALL_STATE(672)] = 27270, + [SMALL_STATE(673)] = 27333, + [SMALL_STATE(674)] = 27374, + [SMALL_STATE(675)] = 27437, + [SMALL_STATE(676)] = 27480, + [SMALL_STATE(677)] = 27543, + [SMALL_STATE(678)] = 27606, + [SMALL_STATE(679)] = 27669, + [SMALL_STATE(680)] = 27732, + [SMALL_STATE(681)] = 27795, + [SMALL_STATE(682)] = 27858, + [SMALL_STATE(683)] = 27921, + [SMALL_STATE(684)] = 27984, + [SMALL_STATE(685)] = 28047, + [SMALL_STATE(686)] = 28110, + [SMALL_STATE(687)] = 28173, + [SMALL_STATE(688)] = 28236, + [SMALL_STATE(689)] = 28277, + [SMALL_STATE(690)] = 28340, + [SMALL_STATE(691)] = 28403, + [SMALL_STATE(692)] = 28466, + [SMALL_STATE(693)] = 28529, + [SMALL_STATE(694)] = 28592, + [SMALL_STATE(695)] = 28655, + [SMALL_STATE(696)] = 28718, + [SMALL_STATE(697)] = 28781, + [SMALL_STATE(698)] = 28844, + [SMALL_STATE(699)] = 28907, + [SMALL_STATE(700)] = 28970, + [SMALL_STATE(701)] = 29033, + [SMALL_STATE(702)] = 29072, + [SMALL_STATE(703)] = 29135, + [SMALL_STATE(704)] = 29198, + [SMALL_STATE(705)] = 29261, + [SMALL_STATE(706)] = 29302, + [SMALL_STATE(707)] = 29365, + [SMALL_STATE(708)] = 29428, + [SMALL_STATE(709)] = 29469, + [SMALL_STATE(710)] = 29532, + [SMALL_STATE(711)] = 29595, + [SMALL_STATE(712)] = 29636, + [SMALL_STATE(713)] = 29699, + [SMALL_STATE(714)] = 29762, + [SMALL_STATE(715)] = 29825, + [SMALL_STATE(716)] = 29888, + [SMALL_STATE(717)] = 29961, + [SMALL_STATE(718)] = 30002, + [SMALL_STATE(719)] = 30041, + [SMALL_STATE(720)] = 30104, + [SMALL_STATE(721)] = 30167, + [SMALL_STATE(722)] = 30230, + [SMALL_STATE(723)] = 30303, + [SMALL_STATE(724)] = 30366, + [SMALL_STATE(725)] = 30429, + [SMALL_STATE(726)] = 30489, + [SMALL_STATE(727)] = 30533, + [SMALL_STATE(728)] = 30571, + [SMALL_STATE(729)] = 30639, + [SMALL_STATE(730)] = 30677, + [SMALL_STATE(731)] = 30715, + [SMALL_STATE(732)] = 30753, + [SMALL_STATE(733)] = 30791, + [SMALL_STATE(734)] = 30829, + [SMALL_STATE(735)] = 30893, + [SMALL_STATE(736)] = 30963, + [SMALL_STATE(737)] = 31001, + [SMALL_STATE(738)] = 31039, + [SMALL_STATE(739)] = 31077, + [SMALL_STATE(740)] = 31115, + [SMALL_STATE(741)] = 31153, + [SMALL_STATE(742)] = 31191, + [SMALL_STATE(743)] = 31261, + [SMALL_STATE(744)] = 31329, + [SMALL_STATE(745)] = 31367, + [SMALL_STATE(746)] = 31433, + [SMALL_STATE(747)] = 31471, + [SMALL_STATE(748)] = 31541, + [SMALL_STATE(749)] = 31611, + [SMALL_STATE(750)] = 31649, + [SMALL_STATE(751)] = 31719, + [SMALL_STATE(752)] = 31787, + [SMALL_STATE(753)] = 31855, + [SMALL_STATE(754)] = 31893, + [SMALL_STATE(755)] = 31931, + [SMALL_STATE(756)] = 31969, + [SMALL_STATE(757)] = 32007, + [SMALL_STATE(758)] = 32075, + [SMALL_STATE(759)] = 32139, + [SMALL_STATE(760)] = 32207, + [SMALL_STATE(761)] = 32245, + [SMALL_STATE(762)] = 32283, + [SMALL_STATE(763)] = 32321, + [SMALL_STATE(764)] = 32359, + [SMALL_STATE(765)] = 32429, + [SMALL_STATE(766)] = 32499, + [SMALL_STATE(767)] = 32537, + [SMALL_STATE(768)] = 32575, + [SMALL_STATE(769)] = 32613, + [SMALL_STATE(770)] = 32657, + [SMALL_STATE(771)] = 32727, + [SMALL_STATE(772)] = 32797, + [SMALL_STATE(773)] = 32867, + [SMALL_STATE(774)] = 32905, + [SMALL_STATE(775)] = 32971, + [SMALL_STATE(776)] = 33041, + [SMALL_STATE(777)] = 33079, + [SMALL_STATE(778)] = 33149, + [SMALL_STATE(779)] = 33219, + [SMALL_STATE(780)] = 33289, + [SMALL_STATE(781)] = 33355, + [SMALL_STATE(782)] = 33419, + [SMALL_STATE(783)] = 33457, + [SMALL_STATE(784)] = 33527, + [SMALL_STATE(785)] = 33597, + [SMALL_STATE(786)] = 33667, + [SMALL_STATE(787)] = 33705, + [SMALL_STATE(788)] = 33743, + [SMALL_STATE(789)] = 33813, + [SMALL_STATE(790)] = 33851, + [SMALL_STATE(791)] = 33919, + [SMALL_STATE(792)] = 33989, + [SMALL_STATE(793)] = 34033, + [SMALL_STATE(794)] = 34101, + [SMALL_STATE(795)] = 34169, + [SMALL_STATE(796)] = 34237, + [SMALL_STATE(797)] = 34275, + [SMALL_STATE(798)] = 34345, + [SMALL_STATE(799)] = 34415, + [SMALL_STATE(800)] = 34453, + [SMALL_STATE(801)] = 34491, + [SMALL_STATE(802)] = 34529, + [SMALL_STATE(803)] = 34567, + [SMALL_STATE(804)] = 34635, + [SMALL_STATE(805)] = 34673, + [SMALL_STATE(806)] = 34711, + [SMALL_STATE(807)] = 34749, + [SMALL_STATE(808)] = 34787, + [SMALL_STATE(809)] = 34825, + [SMALL_STATE(810)] = 34863, + [SMALL_STATE(811)] = 34931, + [SMALL_STATE(812)] = 34969, + [SMALL_STATE(813)] = 35037, + [SMALL_STATE(814)] = 35075, + [SMALL_STATE(815)] = 35145, + [SMALL_STATE(816)] = 35215, + [SMALL_STATE(817)] = 35253, + [SMALL_STATE(818)] = 35291, + [SMALL_STATE(819)] = 35329, + [SMALL_STATE(820)] = 35399, + [SMALL_STATE(821)] = 35437, + [SMALL_STATE(822)] = 35475, + [SMALL_STATE(823)] = 35545, + [SMALL_STATE(824)] = 35613, + [SMALL_STATE(825)] = 35681, + [SMALL_STATE(826)] = 35747, + [SMALL_STATE(827)] = 35791, + [SMALL_STATE(828)] = 35861, + [SMALL_STATE(829)] = 35931, + [SMALL_STATE(830)] = 36001, + [SMALL_STATE(831)] = 36057, + [SMALL_STATE(832)] = 36125, + [SMALL_STATE(833)] = 36171, + [SMALL_STATE(834)] = 36237, + [SMALL_STATE(835)] = 36275, + [SMALL_STATE(836)] = 36331, + [SMALL_STATE(837)] = 36377, + [SMALL_STATE(838)] = 36429, + [SMALL_STATE(839)] = 36479, + [SMALL_STATE(840)] = 36533, + [SMALL_STATE(841)] = 36603, + [SMALL_STATE(842)] = 36673, + [SMALL_STATE(843)] = 36725, + [SMALL_STATE(844)] = 36775, + [SMALL_STATE(845)] = 36837, + [SMALL_STATE(846)] = 36885, + [SMALL_STATE(847)] = 36951, + [SMALL_STATE(848)] = 36989, + [SMALL_STATE(849)] = 37043, + [SMALL_STATE(850)] = 37103, + [SMALL_STATE(851)] = 37141, + [SMALL_STATE(852)] = 37207, + [SMALL_STATE(853)] = 37277, + [SMALL_STATE(854)] = 37341, + [SMALL_STATE(855)] = 37379, + [SMALL_STATE(856)] = 37445, + [SMALL_STATE(857)] = 37513, + [SMALL_STATE(858)] = 37561, + [SMALL_STATE(859)] = 37631, + [SMALL_STATE(860)] = 37693, + [SMALL_STATE(861)] = 37760, + [SMALL_STATE(862)] = 37827, + [SMALL_STATE(863)] = 37894, + [SMALL_STATE(864)] = 37961, + [SMALL_STATE(865)] = 38028, + [SMALL_STATE(866)] = 38095, + [SMALL_STATE(867)] = 38162, + [SMALL_STATE(868)] = 38229, + [SMALL_STATE(869)] = 38296, + [SMALL_STATE(870)] = 38363, + [SMALL_STATE(871)] = 38430, + [SMALL_STATE(872)] = 38497, + [SMALL_STATE(873)] = 38564, + [SMALL_STATE(874)] = 38631, + [SMALL_STATE(875)] = 38698, + [SMALL_STATE(876)] = 38765, + [SMALL_STATE(877)] = 38832, + [SMALL_STATE(878)] = 38899, + [SMALL_STATE(879)] = 38966, + [SMALL_STATE(880)] = 39033, + [SMALL_STATE(881)] = 39070, + [SMALL_STATE(882)] = 39137, + [SMALL_STATE(883)] = 39204, + [SMALL_STATE(884)] = 39259, + [SMALL_STATE(885)] = 39326, + [SMALL_STATE(886)] = 39393, + [SMALL_STATE(887)] = 39460, + [SMALL_STATE(888)] = 39527, + [SMALL_STATE(889)] = 39594, + [SMALL_STATE(890)] = 39661, + [SMALL_STATE(891)] = 39728, + [SMALL_STATE(892)] = 39795, + [SMALL_STATE(893)] = 39862, + [SMALL_STATE(894)] = 39914, + [SMALL_STATE(895)] = 39966, + [SMALL_STATE(896)] = 40015, + [SMALL_STATE(897)] = 40064, + [SMALL_STATE(898)] = 40113, + [SMALL_STATE(899)] = 40162, + [SMALL_STATE(900)] = 40211, + [SMALL_STATE(901)] = 40248, + [SMALL_STATE(902)] = 40279, + [SMALL_STATE(903)] = 40321, + [SMALL_STATE(904)] = 40360, + [SMALL_STATE(905)] = 40399, + [SMALL_STATE(906)] = 40438, + [SMALL_STATE(907)] = 40477, + [SMALL_STATE(908)] = 40516, + [SMALL_STATE(909)] = 40555, + [SMALL_STATE(910)] = 40594, + [SMALL_STATE(911)] = 40633, + [SMALL_STATE(912)] = 40672, + [SMALL_STATE(913)] = 40711, + [SMALL_STATE(914)] = 40750, + [SMALL_STATE(915)] = 40786, + [SMALL_STATE(916)] = 40822, + [SMALL_STATE(917)] = 40857, + [SMALL_STATE(918)] = 40881, + [SMALL_STATE(919)] = 40903, + [SMALL_STATE(920)] = 40927, + [SMALL_STATE(921)] = 40951, + [SMALL_STATE(922)] = 40973, + [SMALL_STATE(923)] = 40995, + [SMALL_STATE(924)] = 41017, + [SMALL_STATE(925)] = 41039, + [SMALL_STATE(926)] = 41063, + [SMALL_STATE(927)] = 41085, + [SMALL_STATE(928)] = 41107, + [SMALL_STATE(929)] = 41129, + [SMALL_STATE(930)] = 41148, + [SMALL_STATE(931)] = 41167, + [SMALL_STATE(932)] = 41196, + [SMALL_STATE(933)] = 41215, + [SMALL_STATE(934)] = 41234, + [SMALL_STATE(935)] = 41253, + [SMALL_STATE(936)] = 41272, + [SMALL_STATE(937)] = 41291, + [SMALL_STATE(938)] = 41309, + [SMALL_STATE(939)] = 41329, + [SMALL_STATE(940)] = 41355, + [SMALL_STATE(941)] = 41373, + [SMALL_STATE(942)] = 41393, + [SMALL_STATE(943)] = 41413, + [SMALL_STATE(944)] = 41431, + [SMALL_STATE(945)] = 41449, + [SMALL_STATE(946)] = 41489, + [SMALL_STATE(947)] = 41529, + [SMALL_STATE(948)] = 41546, + [SMALL_STATE(949)] = 41563, + [SMALL_STATE(950)] = 41584, + [SMALL_STATE(951)] = 41605, + [SMALL_STATE(952)] = 41626, + [SMALL_STATE(953)] = 41645, + [SMALL_STATE(954)] = 41662, + [SMALL_STATE(955)] = 41693, + [SMALL_STATE(956)] = 41710, + [SMALL_STATE(957)] = 41741, + [SMALL_STATE(958)] = 41758, + [SMALL_STATE(959)] = 41775, + [SMALL_STATE(960)] = 41792, + [SMALL_STATE(961)] = 41809, + [SMALL_STATE(962)] = 41830, + [SMALL_STATE(963)] = 41858, + [SMALL_STATE(964)] = 41890, + [SMALL_STATE(965)] = 41906, + [SMALL_STATE(966)] = 41922, + [SMALL_STATE(967)] = 41954, + [SMALL_STATE(968)] = 41978, + [SMALL_STATE(969)] = 41994, + [SMALL_STATE(970)] = 42022, + [SMALL_STATE(971)] = 42042, + [SMALL_STATE(972)] = 42058, + [SMALL_STATE(973)] = 42078, + [SMALL_STATE(974)] = 42106, + [SMALL_STATE(975)] = 42138, + [SMALL_STATE(976)] = 42154, + [SMALL_STATE(977)] = 42182, + [SMALL_STATE(978)] = 42198, + [SMALL_STATE(979)] = 42230, + [SMALL_STATE(980)] = 42245, + [SMALL_STATE(981)] = 42274, + [SMALL_STATE(982)] = 42303, + [SMALL_STATE(983)] = 42318, + [SMALL_STATE(984)] = 42333, + [SMALL_STATE(985)] = 42348, + [SMALL_STATE(986)] = 42363, + [SMALL_STATE(987)] = 42378, + [SMALL_STATE(988)] = 42393, + [SMALL_STATE(989)] = 42422, + [SMALL_STATE(990)] = 42449, + [SMALL_STATE(991)] = 42472, + [SMALL_STATE(992)] = 42491, + [SMALL_STATE(993)] = 42520, + [SMALL_STATE(994)] = 42539, + [SMALL_STATE(995)] = 42558, + [SMALL_STATE(996)] = 42573, + [SMALL_STATE(997)] = 42588, + [SMALL_STATE(998)] = 42607, + [SMALL_STATE(999)] = 42622, + [SMALL_STATE(1000)] = 42637, + [SMALL_STATE(1001)] = 42652, + [SMALL_STATE(1002)] = 42667, + [SMALL_STATE(1003)] = 42682, + [SMALL_STATE(1004)] = 42697, + [SMALL_STATE(1005)] = 42712, + [SMALL_STATE(1006)] = 42727, + [SMALL_STATE(1007)] = 42742, + [SMALL_STATE(1008)] = 42757, + [SMALL_STATE(1009)] = 42772, + [SMALL_STATE(1010)] = 42787, + [SMALL_STATE(1011)] = 42802, + [SMALL_STATE(1012)] = 42817, + [SMALL_STATE(1013)] = 42832, + [SMALL_STATE(1014)] = 42847, + [SMALL_STATE(1015)] = 42876, + [SMALL_STATE(1016)] = 42891, + [SMALL_STATE(1017)] = 42916, + [SMALL_STATE(1018)] = 42931, + [SMALL_STATE(1019)] = 42960, + [SMALL_STATE(1020)] = 42989, + [SMALL_STATE(1021)] = 43004, + [SMALL_STATE(1022)] = 43027, + [SMALL_STATE(1023)] = 43042, + [SMALL_STATE(1024)] = 43071, + [SMALL_STATE(1025)] = 43086, + [SMALL_STATE(1026)] = 43115, + [SMALL_STATE(1027)] = 43141, + [SMALL_STATE(1028)] = 43167, + [SMALL_STATE(1029)] = 43185, + [SMALL_STATE(1030)] = 43211, + [SMALL_STATE(1031)] = 43229, + [SMALL_STATE(1032)] = 43255, + [SMALL_STATE(1033)] = 43281, + [SMALL_STATE(1034)] = 43307, + [SMALL_STATE(1035)] = 43333, + [SMALL_STATE(1036)] = 43351, + [SMALL_STATE(1037)] = 43377, + [SMALL_STATE(1038)] = 43403, + [SMALL_STATE(1039)] = 43429, + [SMALL_STATE(1040)] = 43447, + [SMALL_STATE(1041)] = 43472, + [SMALL_STATE(1042)] = 43491, + [SMALL_STATE(1043)] = 43512, + [SMALL_STATE(1044)] = 43535, + [SMALL_STATE(1045)] = 43552, + [SMALL_STATE(1046)] = 43575, + [SMALL_STATE(1047)] = 43598, + [SMALL_STATE(1048)] = 43619, + [SMALL_STATE(1049)] = 43642, + [SMALL_STATE(1050)] = 43667, + [SMALL_STATE(1051)] = 43690, + [SMALL_STATE(1052)] = 43713, + [SMALL_STATE(1053)] = 43736, + [SMALL_STATE(1054)] = 43761, + [SMALL_STATE(1055)] = 43782, + [SMALL_STATE(1056)] = 43807, + [SMALL_STATE(1057)] = 43827, + [SMALL_STATE(1058)] = 43849, + [SMALL_STATE(1059)] = 43871, + [SMALL_STATE(1060)] = 43889, + [SMALL_STATE(1061)] = 43901, + [SMALL_STATE(1062)] = 43913, + [SMALL_STATE(1063)] = 43933, + [SMALL_STATE(1064)] = 43945, + [SMALL_STATE(1065)] = 43967, + [SMALL_STATE(1066)] = 43987, + [SMALL_STATE(1067)] = 43999, + [SMALL_STATE(1068)] = 44017, + [SMALL_STATE(1069)] = 44029, + [SMALL_STATE(1070)] = 44049, + [SMALL_STATE(1071)] = 44067, + [SMALL_STATE(1072)] = 44087, + [SMALL_STATE(1073)] = 44099, + [SMALL_STATE(1074)] = 44119, + [SMALL_STATE(1075)] = 44139, + [SMALL_STATE(1076)] = 44159, + [SMALL_STATE(1077)] = 44171, + [SMALL_STATE(1078)] = 44191, + [SMALL_STATE(1079)] = 44211, + [SMALL_STATE(1080)] = 44228, + [SMALL_STATE(1081)] = 44239, + [SMALL_STATE(1082)] = 44250, + [SMALL_STATE(1083)] = 44267, + [SMALL_STATE(1084)] = 44286, + [SMALL_STATE(1085)] = 44297, + [SMALL_STATE(1086)] = 44316, + [SMALL_STATE(1087)] = 44327, + [SMALL_STATE(1088)] = 44342, + [SMALL_STATE(1089)] = 44353, + [SMALL_STATE(1090)] = 44372, + [SMALL_STATE(1091)] = 44389, + [SMALL_STATE(1092)] = 44404, + [SMALL_STATE(1093)] = 44423, + [SMALL_STATE(1094)] = 44434, + [SMALL_STATE(1095)] = 44449, + [SMALL_STATE(1096)] = 44464, + [SMALL_STATE(1097)] = 44483, + [SMALL_STATE(1098)] = 44502, + [SMALL_STATE(1099)] = 44517, + [SMALL_STATE(1100)] = 44532, + [SMALL_STATE(1101)] = 44551, + [SMALL_STATE(1102)] = 44570, + [SMALL_STATE(1103)] = 44589, + [SMALL_STATE(1104)] = 44606, + [SMALL_STATE(1105)] = 44625, + [SMALL_STATE(1106)] = 44636, + [SMALL_STATE(1107)] = 44647, + [SMALL_STATE(1108)] = 44658, + [SMALL_STATE(1109)] = 44677, + [SMALL_STATE(1110)] = 44696, + [SMALL_STATE(1111)] = 44707, + [SMALL_STATE(1112)] = 44718, + [SMALL_STATE(1113)] = 44737, + [SMALL_STATE(1114)] = 44754, + [SMALL_STATE(1115)] = 44765, + [SMALL_STATE(1116)] = 44782, + [SMALL_STATE(1117)] = 44801, + [SMALL_STATE(1118)] = 44818, + [SMALL_STATE(1119)] = 44833, + [SMALL_STATE(1120)] = 44844, + [SMALL_STATE(1121)] = 44855, + [SMALL_STATE(1122)] = 44866, + [SMALL_STATE(1123)] = 44883, + [SMALL_STATE(1124)] = 44902, + [SMALL_STATE(1125)] = 44919, + [SMALL_STATE(1126)] = 44936, + [SMALL_STATE(1127)] = 44947, + [SMALL_STATE(1128)] = 44966, + [SMALL_STATE(1129)] = 44985, + [SMALL_STATE(1130)] = 45002, + [SMALL_STATE(1131)] = 45018, + [SMALL_STATE(1132)] = 45034, + [SMALL_STATE(1133)] = 45050, + [SMALL_STATE(1134)] = 45064, + [SMALL_STATE(1135)] = 45076, + [SMALL_STATE(1136)] = 45092, + [SMALL_STATE(1137)] = 45108, + [SMALL_STATE(1138)] = 45124, + [SMALL_STATE(1139)] = 45140, + [SMALL_STATE(1140)] = 45156, + [SMALL_STATE(1141)] = 45172, + [SMALL_STATE(1142)] = 45188, + [SMALL_STATE(1143)] = 45202, + [SMALL_STATE(1144)] = 45216, + [SMALL_STATE(1145)] = 45232, + [SMALL_STATE(1146)] = 45246, + [SMALL_STATE(1147)] = 45262, + [SMALL_STATE(1148)] = 45278, + [SMALL_STATE(1149)] = 45294, + [SMALL_STATE(1150)] = 45310, + [SMALL_STATE(1151)] = 45326, + [SMALL_STATE(1152)] = 45342, + [SMALL_STATE(1153)] = 45358, + [SMALL_STATE(1154)] = 45374, + [SMALL_STATE(1155)] = 45390, + [SMALL_STATE(1156)] = 45406, + [SMALL_STATE(1157)] = 45422, + [SMALL_STATE(1158)] = 45438, + [SMALL_STATE(1159)] = 45454, + [SMALL_STATE(1160)] = 45468, + [SMALL_STATE(1161)] = 45482, + [SMALL_STATE(1162)] = 45494, + [SMALL_STATE(1163)] = 45510, + [SMALL_STATE(1164)] = 45526, + [SMALL_STATE(1165)] = 45540, + [SMALL_STATE(1166)] = 45552, + [SMALL_STATE(1167)] = 45568, + [SMALL_STATE(1168)] = 45582, + [SMALL_STATE(1169)] = 45598, + [SMALL_STATE(1170)] = 45614, + [SMALL_STATE(1171)] = 45630, + [SMALL_STATE(1172)] = 45646, + [SMALL_STATE(1173)] = 45662, + [SMALL_STATE(1174)] = 45678, + [SMALL_STATE(1175)] = 45690, + [SMALL_STATE(1176)] = 45706, + [SMALL_STATE(1177)] = 45720, + [SMALL_STATE(1178)] = 45736, + [SMALL_STATE(1179)] = 45752, + [SMALL_STATE(1180)] = 45766, + [SMALL_STATE(1181)] = 45782, + [SMALL_STATE(1182)] = 45798, + [SMALL_STATE(1183)] = 45814, + [SMALL_STATE(1184)] = 45830, + [SMALL_STATE(1185)] = 45846, + [SMALL_STATE(1186)] = 45862, + [SMALL_STATE(1187)] = 45878, + [SMALL_STATE(1188)] = 45894, + [SMALL_STATE(1189)] = 45910, + [SMALL_STATE(1190)] = 45926, + [SMALL_STATE(1191)] = 45942, + [SMALL_STATE(1192)] = 45958, + [SMALL_STATE(1193)] = 45974, + [SMALL_STATE(1194)] = 45986, + [SMALL_STATE(1195)] = 46002, + [SMALL_STATE(1196)] = 46018, + [SMALL_STATE(1197)] = 46034, + [SMALL_STATE(1198)] = 46050, + [SMALL_STATE(1199)] = 46066, + [SMALL_STATE(1200)] = 46082, + [SMALL_STATE(1201)] = 46096, + [SMALL_STATE(1202)] = 46112, + [SMALL_STATE(1203)] = 46128, + [SMALL_STATE(1204)] = 46144, + [SMALL_STATE(1205)] = 46160, + [SMALL_STATE(1206)] = 46176, + [SMALL_STATE(1207)] = 46192, + [SMALL_STATE(1208)] = 46208, + [SMALL_STATE(1209)] = 46224, + [SMALL_STATE(1210)] = 46240, + [SMALL_STATE(1211)] = 46254, + [SMALL_STATE(1212)] = 46268, + [SMALL_STATE(1213)] = 46284, + [SMALL_STATE(1214)] = 46300, + [SMALL_STATE(1215)] = 46316, + [SMALL_STATE(1216)] = 46332, + [SMALL_STATE(1217)] = 46348, + [SMALL_STATE(1218)] = 46362, + [SMALL_STATE(1219)] = 46376, + [SMALL_STATE(1220)] = 46392, + [SMALL_STATE(1221)] = 46408, + [SMALL_STATE(1222)] = 46424, + [SMALL_STATE(1223)] = 46440, + [SMALL_STATE(1224)] = 46456, + [SMALL_STATE(1225)] = 46472, + [SMALL_STATE(1226)] = 46488, + [SMALL_STATE(1227)] = 46504, + [SMALL_STATE(1228)] = 46520, + [SMALL_STATE(1229)] = 46534, + [SMALL_STATE(1230)] = 46546, + [SMALL_STATE(1231)] = 46560, + [SMALL_STATE(1232)] = 46576, + [SMALL_STATE(1233)] = 46590, + [SMALL_STATE(1234)] = 46602, + [SMALL_STATE(1235)] = 46615, + [SMALL_STATE(1236)] = 46628, + [SMALL_STATE(1237)] = 46641, + [SMALL_STATE(1238)] = 46652, + [SMALL_STATE(1239)] = 46665, + [SMALL_STATE(1240)] = 46674, + [SMALL_STATE(1241)] = 46683, + [SMALL_STATE(1242)] = 46694, + [SMALL_STATE(1243)] = 46707, + [SMALL_STATE(1244)] = 46716, + [SMALL_STATE(1245)] = 46725, + [SMALL_STATE(1246)] = 46734, + [SMALL_STATE(1247)] = 46743, + [SMALL_STATE(1248)] = 46752, + [SMALL_STATE(1249)] = 46761, + [SMALL_STATE(1250)] = 46770, + [SMALL_STATE(1251)] = 46783, + [SMALL_STATE(1252)] = 46792, + [SMALL_STATE(1253)] = 46805, + [SMALL_STATE(1254)] = 46818, + [SMALL_STATE(1255)] = 46831, + [SMALL_STATE(1256)] = 46840, + [SMALL_STATE(1257)] = 46849, + [SMALL_STATE(1258)] = 46862, + [SMALL_STATE(1259)] = 46871, + [SMALL_STATE(1260)] = 46884, + [SMALL_STATE(1261)] = 46897, + [SMALL_STATE(1262)] = 46910, + [SMALL_STATE(1263)] = 46923, + [SMALL_STATE(1264)] = 46936, + [SMALL_STATE(1265)] = 46945, + [SMALL_STATE(1266)] = 46954, + [SMALL_STATE(1267)] = 46963, + [SMALL_STATE(1268)] = 46972, + [SMALL_STATE(1269)] = 46981, + [SMALL_STATE(1270)] = 46990, + [SMALL_STATE(1271)] = 47003, + [SMALL_STATE(1272)] = 47012, + [SMALL_STATE(1273)] = 47023, + [SMALL_STATE(1274)] = 47032, + [SMALL_STATE(1275)] = 47041, + [SMALL_STATE(1276)] = 47052, + [SMALL_STATE(1277)] = 47065, + [SMALL_STATE(1278)] = 47078, + [SMALL_STATE(1279)] = 47087, + [SMALL_STATE(1280)] = 47096, + [SMALL_STATE(1281)] = 47109, + [SMALL_STATE(1282)] = 47118, + [SMALL_STATE(1283)] = 47127, + [SMALL_STATE(1284)] = 47140, + [SMALL_STATE(1285)] = 47149, + [SMALL_STATE(1286)] = 47158, + [SMALL_STATE(1287)] = 47167, + [SMALL_STATE(1288)] = 47176, + [SMALL_STATE(1289)] = 47189, + [SMALL_STATE(1290)] = 47202, + [SMALL_STATE(1291)] = 47215, + [SMALL_STATE(1292)] = 47228, + [SMALL_STATE(1293)] = 47241, + [SMALL_STATE(1294)] = 47254, + [SMALL_STATE(1295)] = 47267, + [SMALL_STATE(1296)] = 47280, + [SMALL_STATE(1297)] = 47289, + [SMALL_STATE(1298)] = 47302, + [SMALL_STATE(1299)] = 47313, + [SMALL_STATE(1300)] = 47326, + [SMALL_STATE(1301)] = 47339, + [SMALL_STATE(1302)] = 47352, + [SMALL_STATE(1303)] = 47365, + [SMALL_STATE(1304)] = 47376, + [SMALL_STATE(1305)] = 47389, + [SMALL_STATE(1306)] = 47398, + [SMALL_STATE(1307)] = 47411, + [SMALL_STATE(1308)] = 47422, + [SMALL_STATE(1309)] = 47433, + [SMALL_STATE(1310)] = 47446, + [SMALL_STATE(1311)] = 47459, + [SMALL_STATE(1312)] = 47472, + [SMALL_STATE(1313)] = 47485, + [SMALL_STATE(1314)] = 47498, + [SMALL_STATE(1315)] = 47509, + [SMALL_STATE(1316)] = 47522, + [SMALL_STATE(1317)] = 47531, + [SMALL_STATE(1318)] = 47544, + [SMALL_STATE(1319)] = 47555, + [SMALL_STATE(1320)] = 47568, + [SMALL_STATE(1321)] = 47577, + [SMALL_STATE(1322)] = 47590, + [SMALL_STATE(1323)] = 47603, + [SMALL_STATE(1324)] = 47612, + [SMALL_STATE(1325)] = 47625, + [SMALL_STATE(1326)] = 47636, + [SMALL_STATE(1327)] = 47647, + [SMALL_STATE(1328)] = 47656, + [SMALL_STATE(1329)] = 47669, + [SMALL_STATE(1330)] = 47678, + [SMALL_STATE(1331)] = 47691, + [SMALL_STATE(1332)] = 47704, + [SMALL_STATE(1333)] = 47715, + [SMALL_STATE(1334)] = 47724, + [SMALL_STATE(1335)] = 47737, + [SMALL_STATE(1336)] = 47750, + [SMALL_STATE(1337)] = 47759, + [SMALL_STATE(1338)] = 47772, + [SMALL_STATE(1339)] = 47785, + [SMALL_STATE(1340)] = 47798, + [SMALL_STATE(1341)] = 47811, + [SMALL_STATE(1342)] = 47822, + [SMALL_STATE(1343)] = 47835, + [SMALL_STATE(1344)] = 47848, + [SMALL_STATE(1345)] = 47861, + [SMALL_STATE(1346)] = 47874, + [SMALL_STATE(1347)] = 47887, + [SMALL_STATE(1348)] = 47900, + [SMALL_STATE(1349)] = 47911, + [SMALL_STATE(1350)] = 47924, + [SMALL_STATE(1351)] = 47937, + [SMALL_STATE(1352)] = 47950, + [SMALL_STATE(1353)] = 47963, + [SMALL_STATE(1354)] = 47972, + [SMALL_STATE(1355)] = 47985, + [SMALL_STATE(1356)] = 47998, + [SMALL_STATE(1357)] = 48011, + [SMALL_STATE(1358)] = 48020, + [SMALL_STATE(1359)] = 48031, + [SMALL_STATE(1360)] = 48044, + [SMALL_STATE(1361)] = 48055, + [SMALL_STATE(1362)] = 48064, + [SMALL_STATE(1363)] = 48073, + [SMALL_STATE(1364)] = 48086, + [SMALL_STATE(1365)] = 48095, + [SMALL_STATE(1366)] = 48108, + [SMALL_STATE(1367)] = 48117, + [SMALL_STATE(1368)] = 48130, + [SMALL_STATE(1369)] = 48143, + [SMALL_STATE(1370)] = 48152, + [SMALL_STATE(1371)] = 48165, + [SMALL_STATE(1372)] = 48178, + [SMALL_STATE(1373)] = 48191, + [SMALL_STATE(1374)] = 48204, + [SMALL_STATE(1375)] = 48217, + [SMALL_STATE(1376)] = 48230, + [SMALL_STATE(1377)] = 48239, + [SMALL_STATE(1378)] = 48250, + [SMALL_STATE(1379)] = 48263, + [SMALL_STATE(1380)] = 48272, + [SMALL_STATE(1381)] = 48285, + [SMALL_STATE(1382)] = 48298, + [SMALL_STATE(1383)] = 48307, + [SMALL_STATE(1384)] = 48320, + [SMALL_STATE(1385)] = 48329, + [SMALL_STATE(1386)] = 48338, + [SMALL_STATE(1387)] = 48351, + [SMALL_STATE(1388)] = 48364, + [SMALL_STATE(1389)] = 48377, + [SMALL_STATE(1390)] = 48390, + [SMALL_STATE(1391)] = 48403, + [SMALL_STATE(1392)] = 48414, + [SMALL_STATE(1393)] = 48427, + [SMALL_STATE(1394)] = 48440, + [SMALL_STATE(1395)] = 48453, + [SMALL_STATE(1396)] = 48466, + [SMALL_STATE(1397)] = 48479, + [SMALL_STATE(1398)] = 48492, + [SMALL_STATE(1399)] = 48505, + [SMALL_STATE(1400)] = 48518, + [SMALL_STATE(1401)] = 48531, + [SMALL_STATE(1402)] = 48544, + [SMALL_STATE(1403)] = 48557, + [SMALL_STATE(1404)] = 48570, + [SMALL_STATE(1405)] = 48583, + [SMALL_STATE(1406)] = 48596, + [SMALL_STATE(1407)] = 48609, + [SMALL_STATE(1408)] = 48622, + [SMALL_STATE(1409)] = 48635, + [SMALL_STATE(1410)] = 48648, + [SMALL_STATE(1411)] = 48661, + [SMALL_STATE(1412)] = 48672, + [SMALL_STATE(1413)] = 48685, + [SMALL_STATE(1414)] = 48698, + [SMALL_STATE(1415)] = 48711, + [SMALL_STATE(1416)] = 48722, + [SMALL_STATE(1417)] = 48735, + [SMALL_STATE(1418)] = 48748, + [SMALL_STATE(1419)] = 48761, + [SMALL_STATE(1420)] = 48774, + [SMALL_STATE(1421)] = 48787, + [SMALL_STATE(1422)] = 48800, + [SMALL_STATE(1423)] = 48813, + [SMALL_STATE(1424)] = 48826, + [SMALL_STATE(1425)] = 48839, + [SMALL_STATE(1426)] = 48852, + [SMALL_STATE(1427)] = 48865, + [SMALL_STATE(1428)] = 48878, + [SMALL_STATE(1429)] = 48891, + [SMALL_STATE(1430)] = 48904, + [SMALL_STATE(1431)] = 48915, + [SMALL_STATE(1432)] = 48928, + [SMALL_STATE(1433)] = 48941, + [SMALL_STATE(1434)] = 48954, + [SMALL_STATE(1435)] = 48967, + [SMALL_STATE(1436)] = 48980, + [SMALL_STATE(1437)] = 48990, + [SMALL_STATE(1438)] = 49000, + [SMALL_STATE(1439)] = 49010, + [SMALL_STATE(1440)] = 49020, + [SMALL_STATE(1441)] = 49030, + [SMALL_STATE(1442)] = 49040, + [SMALL_STATE(1443)] = 49048, + [SMALL_STATE(1444)] = 49058, + [SMALL_STATE(1445)] = 49068, + [SMALL_STATE(1446)] = 49078, + [SMALL_STATE(1447)] = 49088, + [SMALL_STATE(1448)] = 49098, + [SMALL_STATE(1449)] = 49108, + [SMALL_STATE(1450)] = 49118, + [SMALL_STATE(1451)] = 49126, + [SMALL_STATE(1452)] = 49136, + [SMALL_STATE(1453)] = 49146, + [SMALL_STATE(1454)] = 49154, + [SMALL_STATE(1455)] = 49162, + [SMALL_STATE(1456)] = 49172, + [SMALL_STATE(1457)] = 49182, + [SMALL_STATE(1458)] = 49192, + [SMALL_STATE(1459)] = 49202, + [SMALL_STATE(1460)] = 49212, + [SMALL_STATE(1461)] = 49220, + [SMALL_STATE(1462)] = 49230, + [SMALL_STATE(1463)] = 49240, + [SMALL_STATE(1464)] = 49250, + [SMALL_STATE(1465)] = 49258, + [SMALL_STATE(1466)] = 49268, + [SMALL_STATE(1467)] = 49276, + [SMALL_STATE(1468)] = 49286, + [SMALL_STATE(1469)] = 49296, + [SMALL_STATE(1470)] = 49306, + [SMALL_STATE(1471)] = 49316, + [SMALL_STATE(1472)] = 49326, + [SMALL_STATE(1473)] = 49334, + [SMALL_STATE(1474)] = 49344, + [SMALL_STATE(1475)] = 49352, + [SMALL_STATE(1476)] = 49360, + [SMALL_STATE(1477)] = 49368, + [SMALL_STATE(1478)] = 49376, + [SMALL_STATE(1479)] = 49386, + [SMALL_STATE(1480)] = 49394, + [SMALL_STATE(1481)] = 49404, + [SMALL_STATE(1482)] = 49412, + [SMALL_STATE(1483)] = 49422, + [SMALL_STATE(1484)] = 49430, + [SMALL_STATE(1485)] = 49438, + [SMALL_STATE(1486)] = 49448, + [SMALL_STATE(1487)] = 49458, + [SMALL_STATE(1488)] = 49468, + [SMALL_STATE(1489)] = 49478, + [SMALL_STATE(1490)] = 49488, + [SMALL_STATE(1491)] = 49496, + [SMALL_STATE(1492)] = 49506, + [SMALL_STATE(1493)] = 49516, + [SMALL_STATE(1494)] = 49524, + [SMALL_STATE(1495)] = 49532, + [SMALL_STATE(1496)] = 49540, + [SMALL_STATE(1497)] = 49550, + [SMALL_STATE(1498)] = 49558, + [SMALL_STATE(1499)] = 49568, + [SMALL_STATE(1500)] = 49578, + [SMALL_STATE(1501)] = 49588, + [SMALL_STATE(1502)] = 49598, + [SMALL_STATE(1503)] = 49608, + [SMALL_STATE(1504)] = 49618, + [SMALL_STATE(1505)] = 49628, + [SMALL_STATE(1506)] = 49636, + [SMALL_STATE(1507)] = 49646, + [SMALL_STATE(1508)] = 49656, + [SMALL_STATE(1509)] = 49666, + [SMALL_STATE(1510)] = 49674, + [SMALL_STATE(1511)] = 49684, + [SMALL_STATE(1512)] = 49692, + [SMALL_STATE(1513)] = 49702, + [SMALL_STATE(1514)] = 49710, + [SMALL_STATE(1515)] = 49718, + [SMALL_STATE(1516)] = 49728, + [SMALL_STATE(1517)] = 49738, + [SMALL_STATE(1518)] = 49748, + [SMALL_STATE(1519)] = 49756, + [SMALL_STATE(1520)] = 49766, + [SMALL_STATE(1521)] = 49776, + [SMALL_STATE(1522)] = 49784, + [SMALL_STATE(1523)] = 49794, + [SMALL_STATE(1524)] = 49804, + [SMALL_STATE(1525)] = 49814, + [SMALL_STATE(1526)] = 49824, + [SMALL_STATE(1527)] = 49834, + [SMALL_STATE(1528)] = 49844, + [SMALL_STATE(1529)] = 49852, + [SMALL_STATE(1530)] = 49862, + [SMALL_STATE(1531)] = 49872, + [SMALL_STATE(1532)] = 49882, + [SMALL_STATE(1533)] = 49890, + [SMALL_STATE(1534)] = 49898, + [SMALL_STATE(1535)] = 49908, + [SMALL_STATE(1536)] = 49918, + [SMALL_STATE(1537)] = 49928, + [SMALL_STATE(1538)] = 49938, + [SMALL_STATE(1539)] = 49948, + [SMALL_STATE(1540)] = 49956, + [SMALL_STATE(1541)] = 49964, + [SMALL_STATE(1542)] = 49972, + [SMALL_STATE(1543)] = 49982, + [SMALL_STATE(1544)] = 49990, + [SMALL_STATE(1545)] = 50000, + [SMALL_STATE(1546)] = 50010, + [SMALL_STATE(1547)] = 50020, + [SMALL_STATE(1548)] = 50028, + [SMALL_STATE(1549)] = 50038, + [SMALL_STATE(1550)] = 50048, + [SMALL_STATE(1551)] = 50058, + [SMALL_STATE(1552)] = 50068, + [SMALL_STATE(1553)] = 50078, + [SMALL_STATE(1554)] = 50086, + [SMALL_STATE(1555)] = 50096, + [SMALL_STATE(1556)] = 50106, + [SMALL_STATE(1557)] = 50116, + [SMALL_STATE(1558)] = 50126, + [SMALL_STATE(1559)] = 50136, + [SMALL_STATE(1560)] = 50146, + [SMALL_STATE(1561)] = 50156, + [SMALL_STATE(1562)] = 50166, + [SMALL_STATE(1563)] = 50174, + [SMALL_STATE(1564)] = 50184, + [SMALL_STATE(1565)] = 50194, + [SMALL_STATE(1566)] = 50204, + [SMALL_STATE(1567)] = 50212, + [SMALL_STATE(1568)] = 50222, + [SMALL_STATE(1569)] = 50230, + [SMALL_STATE(1570)] = 50240, + [SMALL_STATE(1571)] = 50250, + [SMALL_STATE(1572)] = 50260, + [SMALL_STATE(1573)] = 50270, + [SMALL_STATE(1574)] = 50280, + [SMALL_STATE(1575)] = 50290, + [SMALL_STATE(1576)] = 50298, + [SMALL_STATE(1577)] = 50308, + [SMALL_STATE(1578)] = 50318, + [SMALL_STATE(1579)] = 50328, + [SMALL_STATE(1580)] = 50338, + [SMALL_STATE(1581)] = 50348, + [SMALL_STATE(1582)] = 50358, + [SMALL_STATE(1583)] = 50366, + [SMALL_STATE(1584)] = 50376, + [SMALL_STATE(1585)] = 50384, + [SMALL_STATE(1586)] = 50392, + [SMALL_STATE(1587)] = 50400, + [SMALL_STATE(1588)] = 50408, + [SMALL_STATE(1589)] = 50418, + [SMALL_STATE(1590)] = 50425, + [SMALL_STATE(1591)] = 50432, + [SMALL_STATE(1592)] = 50439, + [SMALL_STATE(1593)] = 50446, + [SMALL_STATE(1594)] = 50453, + [SMALL_STATE(1595)] = 50460, + [SMALL_STATE(1596)] = 50467, + [SMALL_STATE(1597)] = 50474, + [SMALL_STATE(1598)] = 50481, + [SMALL_STATE(1599)] = 50488, + [SMALL_STATE(1600)] = 50495, + [SMALL_STATE(1601)] = 50502, + [SMALL_STATE(1602)] = 50509, + [SMALL_STATE(1603)] = 50516, + [SMALL_STATE(1604)] = 50523, + [SMALL_STATE(1605)] = 50530, + [SMALL_STATE(1606)] = 50537, + [SMALL_STATE(1607)] = 50544, + [SMALL_STATE(1608)] = 50551, + [SMALL_STATE(1609)] = 50558, + [SMALL_STATE(1610)] = 50565, + [SMALL_STATE(1611)] = 50572, + [SMALL_STATE(1612)] = 50579, + [SMALL_STATE(1613)] = 50586, + [SMALL_STATE(1614)] = 50593, + [SMALL_STATE(1615)] = 50600, + [SMALL_STATE(1616)] = 50607, + [SMALL_STATE(1617)] = 50614, + [SMALL_STATE(1618)] = 50621, + [SMALL_STATE(1619)] = 50628, + [SMALL_STATE(1620)] = 50635, + [SMALL_STATE(1621)] = 50642, + [SMALL_STATE(1622)] = 50649, + [SMALL_STATE(1623)] = 50656, + [SMALL_STATE(1624)] = 50663, + [SMALL_STATE(1625)] = 50670, + [SMALL_STATE(1626)] = 50677, + [SMALL_STATE(1627)] = 50684, + [SMALL_STATE(1628)] = 50691, + [SMALL_STATE(1629)] = 50698, + [SMALL_STATE(1630)] = 50705, + [SMALL_STATE(1631)] = 50712, + [SMALL_STATE(1632)] = 50719, + [SMALL_STATE(1633)] = 50726, + [SMALL_STATE(1634)] = 50733, + [SMALL_STATE(1635)] = 50740, + [SMALL_STATE(1636)] = 50747, + [SMALL_STATE(1637)] = 50754, + [SMALL_STATE(1638)] = 50761, + [SMALL_STATE(1639)] = 50768, + [SMALL_STATE(1640)] = 50775, + [SMALL_STATE(1641)] = 50782, + [SMALL_STATE(1642)] = 50789, + [SMALL_STATE(1643)] = 50796, + [SMALL_STATE(1644)] = 50803, + [SMALL_STATE(1645)] = 50810, + [SMALL_STATE(1646)] = 50817, + [SMALL_STATE(1647)] = 50824, + [SMALL_STATE(1648)] = 50831, + [SMALL_STATE(1649)] = 50838, + [SMALL_STATE(1650)] = 50845, + [SMALL_STATE(1651)] = 50852, + [SMALL_STATE(1652)] = 50859, + [SMALL_STATE(1653)] = 50866, + [SMALL_STATE(1654)] = 50873, + [SMALL_STATE(1655)] = 50880, + [SMALL_STATE(1656)] = 50887, + [SMALL_STATE(1657)] = 50894, + [SMALL_STATE(1658)] = 50901, + [SMALL_STATE(1659)] = 50908, + [SMALL_STATE(1660)] = 50915, + [SMALL_STATE(1661)] = 50922, + [SMALL_STATE(1662)] = 50929, + [SMALL_STATE(1663)] = 50936, + [SMALL_STATE(1664)] = 50943, + [SMALL_STATE(1665)] = 50950, + [SMALL_STATE(1666)] = 50957, + [SMALL_STATE(1667)] = 50964, + [SMALL_STATE(1668)] = 50971, + [SMALL_STATE(1669)] = 50978, + [SMALL_STATE(1670)] = 50985, + [SMALL_STATE(1671)] = 50992, + [SMALL_STATE(1672)] = 50999, + [SMALL_STATE(1673)] = 51006, + [SMALL_STATE(1674)] = 51013, + [SMALL_STATE(1675)] = 51020, + [SMALL_STATE(1676)] = 51027, + [SMALL_STATE(1677)] = 51034, + [SMALL_STATE(1678)] = 51041, + [SMALL_STATE(1679)] = 51048, + [SMALL_STATE(1680)] = 51055, + [SMALL_STATE(1681)] = 51062, + [SMALL_STATE(1682)] = 51069, + [SMALL_STATE(1683)] = 51076, + [SMALL_STATE(1684)] = 51083, + [SMALL_STATE(1685)] = 51090, + [SMALL_STATE(1686)] = 51097, + [SMALL_STATE(1687)] = 51104, + [SMALL_STATE(1688)] = 51111, + [SMALL_STATE(1689)] = 51118, + [SMALL_STATE(1690)] = 51125, + [SMALL_STATE(1691)] = 51132, + [SMALL_STATE(1692)] = 51139, + [SMALL_STATE(1693)] = 51146, + [SMALL_STATE(1694)] = 51153, + [SMALL_STATE(1695)] = 51160, + [SMALL_STATE(1696)] = 51167, + [SMALL_STATE(1697)] = 51174, + [SMALL_STATE(1698)] = 51181, + [SMALL_STATE(1699)] = 51188, + [SMALL_STATE(1700)] = 51195, + [SMALL_STATE(1701)] = 51202, + [SMALL_STATE(1702)] = 51209, + [SMALL_STATE(1703)] = 51216, + [SMALL_STATE(1704)] = 51223, + [SMALL_STATE(1705)] = 51230, + [SMALL_STATE(1706)] = 51237, + [SMALL_STATE(1707)] = 51244, + [SMALL_STATE(1708)] = 51251, + [SMALL_STATE(1709)] = 51258, + [SMALL_STATE(1710)] = 51265, + [SMALL_STATE(1711)] = 51272, + [SMALL_STATE(1712)] = 51279, + [SMALL_STATE(1713)] = 51286, + [SMALL_STATE(1714)] = 51293, + [SMALL_STATE(1715)] = 51300, + [SMALL_STATE(1716)] = 51307, + [SMALL_STATE(1717)] = 51314, + [SMALL_STATE(1718)] = 51321, + [SMALL_STATE(1719)] = 51328, + [SMALL_STATE(1720)] = 51335, + [SMALL_STATE(1721)] = 51342, + [SMALL_STATE(1722)] = 51349, + [SMALL_STATE(1723)] = 51356, + [SMALL_STATE(1724)] = 51363, + [SMALL_STATE(1725)] = 51370, + [SMALL_STATE(1726)] = 51377, + [SMALL_STATE(1727)] = 51384, + [SMALL_STATE(1728)] = 51391, + [SMALL_STATE(1729)] = 51398, + [SMALL_STATE(1730)] = 51405, + [SMALL_STATE(1731)] = 51412, + [SMALL_STATE(1732)] = 51419, + [SMALL_STATE(1733)] = 51426, + [SMALL_STATE(1734)] = 51433, + [SMALL_STATE(1735)] = 51440, + [SMALL_STATE(1736)] = 51447, + [SMALL_STATE(1737)] = 51454, + [SMALL_STATE(1738)] = 51461, + [SMALL_STATE(1739)] = 51468, + [SMALL_STATE(1740)] = 51475, + [SMALL_STATE(1741)] = 51482, + [SMALL_STATE(1742)] = 51489, + [SMALL_STATE(1743)] = 51496, + [SMALL_STATE(1744)] = 51503, + [SMALL_STATE(1745)] = 51510, + [SMALL_STATE(1746)] = 51517, + [SMALL_STATE(1747)] = 51524, + [SMALL_STATE(1748)] = 51531, + [SMALL_STATE(1749)] = 51538, + [SMALL_STATE(1750)] = 51545, + [SMALL_STATE(1751)] = 51552, + [SMALL_STATE(1752)] = 51559, + [SMALL_STATE(1753)] = 51566, + [SMALL_STATE(1754)] = 51573, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -74723,1838 +76286,1845 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), - [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1743), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(883), - [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(508), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1445), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(947), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(520), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(520), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(522), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(52), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), SHIFT(67), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 40), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 40), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 84), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 84), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 4), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 4), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 26), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 26), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 28), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 28), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 21), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 21), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 30), - [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 30), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 60), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 60), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(8), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(165), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(99), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1442), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(107), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(505), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(206), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(379), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(22), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(508), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(455), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(116), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1445), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(232), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(21), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1236), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(123), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(399), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(520), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1704), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(520), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(522), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1451), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(151), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(435), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1702), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 25), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 25), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), - [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(508), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1445), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(520), - [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(520), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(522), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(283), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1673), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(898), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(387), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(136), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(952), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(449), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 40), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 40), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), SHIFT(77), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(17), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(173), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), + [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(96), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1449), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(119), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(492), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(199), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(387), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(21), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(22), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(491), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(465), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(124), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1451), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(212), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(25), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(128), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(422), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(481), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1710), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(481), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(479), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1452), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(159), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(449), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1707), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 27), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 27), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 60), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 60), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 21), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 21), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 82), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 82), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 26), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 26), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 30), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 30), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 4), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 4), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 25), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 25), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(387), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(449), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_except_range, 1, 0, 0), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_except_range, 1, 0, 0), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 0), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 0), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 1, 0, 0), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 1, 0, 0), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 89), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 89), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 66), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 66), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 88), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 88), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 67), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 67), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 64), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 64), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 15), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 15), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 72), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 72), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 18), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 18), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 102), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 102), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 65), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 65), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 89), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 89), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 65), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 65), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 114), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 114), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 89), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 89), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 68), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 68), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 53), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 53), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 90), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 90), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 88), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 88), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 120), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 120), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 10), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 10), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 10), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 10), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 3), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 3), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 11), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 11), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 2), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 2), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 43), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 43), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 44), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 44), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 92), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 92), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 93), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 93), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 94), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 94), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 43), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 43), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 4, 0, 0), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 4, 0, 0), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 3), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 3), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 10), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 10), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 3), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 3), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 43), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 43), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 3, 0, 0), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 3, 0, 0), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 81), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 81), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 4, 0, 64), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 4, 0, 64), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 0), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 0), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 69), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 69), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_impl, 5, 0, 2), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_impl, 5, 0, 2), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 80), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 80), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 6, 0, 112), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 6, 0, 112), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 128), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 128), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 70), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 70), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 111), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 111), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 110), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 110), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 109), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 109), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 64), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 64), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 88), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 88), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 127), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 127), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 3, 0, 0), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 3, 0, 0), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 103), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 103), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 44), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 44), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 124), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 124), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 3, 0, 42), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 3, 0, 42), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 65), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 65), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 44), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 44), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 123), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 123), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 122), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 122), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 2, 0, 4), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 2, 0, 4), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 2, 0, 0), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 2, 0, 0), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [1314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), - [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), - [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), - [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1441), - [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1606), - [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1607), - [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), - [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), - [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(412), - [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(947), - [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 105), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 105), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 81), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 81), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1171), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1295), - [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), - [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1295), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(993), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 91), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 91), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 44), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 44), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 44), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 44), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 102), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 102), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 80), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 80), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 18), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 18), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 44), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 44), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 43), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 43), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 69), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 69), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_impl, 5, 0, 2), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_impl, 5, 0, 2), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 68), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 68), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 3), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 3), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 0), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 0), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 4, 0, 63), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 4, 0, 63), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 4, 0, 0), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 4, 0, 0), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 67), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 67), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 0), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 107), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 107), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 64), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 64), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 64), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 64), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 63), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 63), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 10), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 10), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 109), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 109), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 66), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 66), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 3), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 3), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 79), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 79), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 65), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 65), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 71), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 71), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 2, 0, 4), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 2, 0, 4), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 64), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 64), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 63), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 63), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 6, 0, 110), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 6, 0, 110), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 108), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 108), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 43), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 43), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 89), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 89), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 43), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 43), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 87), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 87), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 15), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 15), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 112), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 112), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 2), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 2), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 101), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 101), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 11), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 11), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 3), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 3), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 10), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 10), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 88), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 88), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 10), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 10), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 3, 0, 42), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 3, 0, 42), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 1, 0, 0), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 1, 0, 0), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 87), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 87), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 88), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 88), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 118), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 118), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 126), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 126), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 88), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 88), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 120), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 120), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 121), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 121), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 53), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 53), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 122), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 122), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 93), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 93), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 125), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 125), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 92), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 92), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 87), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 87), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1612), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1747), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), + [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1614), + [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), + [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), + [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(431), + [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(897), + [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), + [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), + [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), + [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(952), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 104), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 104), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 80), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 80), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1440), + [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1134), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), + [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(428), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1054), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(989), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(433), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1719), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 33), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 33), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 19), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 19), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 2), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 22), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 22), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 19), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 19), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 22), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 22), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 3), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 34), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 20), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 33), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 33), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 2), [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 23), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 78), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 37), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 37), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 48), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 20), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 3), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 34), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 35), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 32), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 32), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 39), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 39), [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 38), [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 38), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 29), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 29), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 39), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 39), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 1), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 1), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 35), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 32), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 32), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 31), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 117), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 97), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 63), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 63), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 27), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 36), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 36), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 83), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 83), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 27), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 37), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 37), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 95), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 95), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 9), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 9), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 7), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 7), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 6), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 6), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 74), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 74), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 106), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 106), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), - [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 61), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 61), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 81), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 105), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 105), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 105), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 108), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 107), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 85), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 86), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 105), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 0), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 81), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 81), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 81), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2, 0, 0), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 81), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 73), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 29), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_specifier, 1, 0, 0), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_specifier, 1, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 34), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 3), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 23), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 20), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 24), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 13), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 16), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 14), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 87), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 19), REDUCE(sym_scoped_type_identifier, 3, 0, 20), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 22), REDUCE(sym_scoped_type_identifier, 3, 0, 23), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snapshot_type, 2, 0, 62), - [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), REDUCE(sym_scoped_type_identifier, 2, 0, 3), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 121), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 33), REDUCE(sym_scoped_type_identifier, 3, 0, 34), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 41), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 41), REDUCE(sym__pattern, 1, 0, 0), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 82), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 52), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 50), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 52), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 50), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 52), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 54), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 50), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 52), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 54), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 52), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 52), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 50), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 54), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 52), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 52), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 54), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 12), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 118), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 77), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 49), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 116), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 125), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 126), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 98), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 100), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 129), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 91), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 71), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 76), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), REDUCE(sym__pattern, 1, 0, 0), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 71), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 71), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), - [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 71), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 71), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 91), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 99), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 91), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 91), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_unit_type, 2, 0, 0), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(126), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 75), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 79), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 0), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 58), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 57), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 56), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 55), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 80), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 119), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 17), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [3188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(991), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 51), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 101), - [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(1023), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1030), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 47), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(353), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 96), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern, 1, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 12), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 76), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 77), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 125), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nopanic, 1, 0, 0), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 129), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 126), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 4, 0, 113), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 49), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 72), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 78), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 48), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_except_range, 1, 0, 1), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_except_range, 1, 0, 1), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 31), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 28), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 28), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 77), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 94), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 94), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 73), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 73), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 9), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 9), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 62), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 62), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 29), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 29), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 96), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 37), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 37), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 48), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 83), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 83), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 115), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 36), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 36), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 37), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 37), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1440), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 80), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 80), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 80), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 104), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 104), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 104), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 84), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 85), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 104), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 105), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 106), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2, 0, 0), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 80), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 29), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 80), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 72), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 20), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 3), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 34), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 23), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 24), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 14), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 16), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 13), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 33), REDUCE(sym_scoped_type_identifier, 3, 0, 34), + [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), REDUCE(sym_scoped_type_identifier, 2, 0, 3), + [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 22), REDUCE(sym_scoped_type_identifier, 3, 0, 23), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 119), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 86), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snapshot_type, 2, 0, 61), + [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 19), REDUCE(sym_scoped_type_identifier, 3, 0, 20), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 41), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 81), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 41), REDUCE(sym__pattern, 1, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 50), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 52), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 54), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 52), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 54), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 52), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 54), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 52), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 50), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 50), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 52), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 54), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 52), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 52), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 50), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 52), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 76), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 127), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 116), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 124), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 123), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 12), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 97), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 114), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 99), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 49), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 98), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 90), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 70), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 70), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 90), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 70), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 70), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 90), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 70), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 90), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 75), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), REDUCE(sym__pattern, 1, 0, 0), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(429), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_unit_type, 2, 0, 0), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 58), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 57), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 55), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(1036), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 51), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 79), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(895), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 117), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 100), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 47), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 78), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 56), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 74), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 17), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 0), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern, 1, 0, 0), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 75), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 95), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 76), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 12), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 96), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nopanic, 1, 0, 0), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 71), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 127), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 124), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 123), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 116), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 115), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 114), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 77), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 99), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 98), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 97), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 4, 0, 111), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 115), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 118), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 117), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 116), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 97), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 98), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 99), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 100), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 104), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 46), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 45), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3781] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 113), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 48), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 49), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 46), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 103), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3789] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 45), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), }; #ifdef __cplusplus