diff --git a/grammar.js b/grammar.js index 25f6eb7..bfb8d08 100644 --- a/grammar.js +++ b/grammar.js @@ -14,10 +14,62 @@ const PREC = { or: 2, assign: 0, }; -const TOKEN_TREE_NON_SPECIAL_PUNCTUATION = ['+', '-', '*', '/', '%', '^', '!', '~', '&', '|', '&&', '||', '<<', '>>', '+=', '-=', '*=', '/=', '%=', '^=', '&=', '|=', '=', '==', '!=', '>', '<', '>=', '<=', '@', '..', '_', '.', ',', ';', ':', '::', '->', '=>', '#', '?', +const TOKEN_TREE_NON_SPECIAL_PUNCTUATION = [ + '+', + '-', + '*', + '/', + '%', + '^', + '!', + '~', + '&', + '|', + '&&', + '||', + '<<', + '>>', + '+=', + '-=', + '*=', + '/=', + '%=', + '^=', + '&=', + '|=', + '=', + '==', + '!=', + '>', + '<', + '>=', + '<=', + '@', + '..', + '_', + '.', + ',', + ';', + ':', + '::', + '->', + '=>', + '#', + '?', ]; -const integerTypes = ['u8', 'i8', 'u16', 'i16', 'u32', 'i32', 'u64', 'i64', 'u128', 'i128', 'usize', +const integerTypes = [ + 'u8', + 'i8', + 'u16', + 'i16', + 'u32', + 'i32', + 'u64', + 'i64', + 'u128', + 'i128', + 'usize', ]; const primitiveTypes = integerTypes.concat(['bool', 'ByteArray', 'felt252']); module.exports = grammar({ @@ -72,6 +124,7 @@ module.exports = grammar({ $.let_declaration, $.use_declaration, $.associated_type, + $.associated_impl, ), // Declaration section @@ -110,6 +163,7 @@ module.exports = grammar({ field('type_parameters', optional($.type_parameters)), choice(field('body', $.declaration_list), ';'), ), + // trait A { // type B; // } @@ -121,6 +175,12 @@ module.exports = grammar({ ';', ), + // trait A { + // impl B: A; + // } + associated_impl: ($) => + seq('impl', field('name', $.identifier), ':', $._type, ';'), + // const FOO: felt252 = 1; const_item: ($) => seq( @@ -508,6 +568,7 @@ module.exports = grammar({ 'type', 'use', 'while', + 'for', ), // Section - Patterns @@ -560,7 +621,14 @@ module.exports = grammar({ field_initializer_list: ($) => seq( '{', - sepBy(',', choice($.shorthand_field_initializer, $.field_initializer, $.base_field_initializer)), + sepBy( + ',', + choice( + $.shorthand_field_initializer, + $.field_initializer, + $.base_field_initializer, + ), + ), optional(','), '}', ), @@ -621,7 +689,11 @@ module.exports = grammar({ token( seq( choice(/[0-9_]+/, /0x[0-9a-fA-F_]+/, /0b[01_]+/, /0o[0-7_]+/), - optional(token.immediate(seq('_', choice(...integerTypes, 'u256', 'felt252')))), + optional( + token.immediate( + seq('_', choice(...integerTypes, 'u256', 'felt252')), + ), + ), ), ), @@ -836,6 +908,7 @@ module.exports = grammar({ $.if_expression, $.match_expression, $.while_expression, + $.for_expression, $.loop_expression, ), @@ -962,6 +1035,13 @@ module.exports = grammar({ while_expression: ($) => seq('while', field('condition', $._condition), field('body', $.block)), + for_expression: $ => seq( + 'for', + field('pattern', $._pattern), + 'in', + field('value', $.expression), + field('body', $.block), + ), // loop {} loop_expression: ($) => seq('loop', field('body', $.block)), diff --git a/queries/highlights.scm b/queries/highlights.scm index b13572b..d2cabd1 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -95,11 +95,6 @@ ; ------- ; Keywords ; ------- - -((identifier) @keyword.control - (#match? @keyword.control "^yield$")) - - [ "match" "if" @@ -311,7 +306,6 @@ "@" "&&" "|" - "|=" "||" "^" "*" diff --git a/src/grammar.json b/src/grammar.json index 16fbb79..54b0013 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -91,6 +91,10 @@ { "type": "SYMBOL", "name": "associated_type" + }, + { + "type": "SYMBOL", + "name": "associated_impl" } ] }, @@ -279,6 +283,35 @@ } ] }, + "associated_impl": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "impl" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, "const_item": { "type": "SEQ", "members": [ @@ -2686,6 +2719,10 @@ { "type": "STRING", "value": "while" + }, + { + "type": "STRING", + "value": "for" } ] }, @@ -4531,6 +4568,10 @@ "type": "SYMBOL", "name": "while_expression" }, + { + "type": "SYMBOL", + "name": "for_expression" + }, { "type": "SYMBOL", "name": "loop_expression" @@ -5109,6 +5150,43 @@ } ] }, + "for_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "_pattern" + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "block" + } + } + ] + }, "loop_expression": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index ee785d3..5ee0c9e 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3,6 +3,10 @@ "type": "_declaration_statement", "named": true, "subtypes": [ + { + "type": "associated_impl", + "named": true + }, { "type": "associated_type", "named": true @@ -265,6 +269,10 @@ "type": "field_expression", "named": true }, + { + "type": "for_expression", + "named": true + }, { "type": "generic_function", "named": true @@ -440,6 +448,32 @@ } } }, + { + "type": "associated_impl", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type", + "named": true + } + ] + } + }, { "type": "associated_type", "named": true, @@ -1299,6 +1333,42 @@ ] } }, + { + "type": "for_expression", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "pattern": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, { "type": "function", "named": true, @@ -3133,6 +3203,10 @@ "type": "fn", "named": false }, + { + "type": "for", + "named": false + }, { "type": "identifier", "named": true diff --git a/src/parser.c b/src/parser.c index ce3d3ae..e60ef02 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1633 -#define LARGE_STATE_COUNT 221 -#define SYMBOL_COUNT 231 +#define STATE_COUNT 1654 +#define LARGE_STATE_COUNT 225 +#define SYMBOL_COUNT 234 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 104 +#define TOKEN_COUNT 105 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 123 +#define PRODUCTION_ID_COUNT 124 enum ts_symbol_identifiers { anon_sym_LBRACE = 1, @@ -31,8 +31,8 @@ enum ts_symbol_identifiers { anon_sym_SEMI = 5, anon_sym_trait = 6, anon_sym_type = 7, - anon_sym_const = 8, - anon_sym_COLON = 9, + anon_sym_COLON = 8, + anon_sym_const = 9, anon_sym_EQ = 10, anon_sym_BANG = 11, anon_sym_POUND = 12, @@ -110,154 +110,157 @@ enum ts_symbol_identifiers { anon_sym_return = 84, anon_sym_static = 85, anon_sym_while = 86, - sym_numeric_literal = 87, - aux_sym_string_literal_token1 = 88, - aux_sym_string_literal_token2 = 89, - anon_sym_DQUOTE = 90, - sym_shortstring_literal = 91, - anon_sym_true = 92, - anon_sym_false = 93, - anon_sym_DOLLAR = 94, - anon_sym_LT2 = 95, - anon_sym_else = 96, - anon_sym_ref = 97, - sym_identifier = 98, - anon_sym_in = 99, - sym_mutable_specifier = 100, - sym_super = 101, - sym_crate = 102, - sym_line_comment = 103, - sym_source_file = 104, - sym__statement = 105, - sym_declaration_list = 106, - sym_impl_item = 107, - sym_trait_item = 108, - sym_associated_type = 109, - sym_const_item = 110, - sym_macro_invocation = 111, - sym_empty_statement = 112, - sym_attribute_item = 113, - sym_inner_attribute_item = 114, - sym_attribute = 115, - sym_mod_item = 116, - sym_struct_item = 117, - sym_enum_item = 118, - sym_enum_variant_list = 119, - sym_enum_variant = 120, - sym_field_declaration_list = 121, - sym_field_declaration = 122, - sym_type_item = 123, - sym_extern_type = 124, - sym_external_function_item = 125, - sym_function_item = 126, - sym_function_signature_item = 127, - sym_function = 128, - sym_let_declaration = 129, - sym_use_declaration = 130, - sym__use_clause = 131, - sym_scoped_use_list = 132, - sym_use_list = 133, - sym_use_as_clause = 134, - sym_use_wildcard = 135, - sym_parameters = 136, - sym_parameter = 137, - sym__type = 138, - sym_type_parameters = 139, - sym_const_parameter = 140, - sym_constrained_type_parameter = 141, - sym_generic_type = 142, - sym_generic_type_with_turbofish = 143, - sym_array_type = 144, - sym_delim_token_tree = 145, - sym__delim_tokens = 146, - sym__pattern = 147, - sym_tuple_pattern = 148, - sym_slice_pattern = 149, - sym_struct_pattern = 150, - sym_field_pattern = 151, - sym_field_initializer_list = 152, - sym_shorthand_field_initializer = 153, - sym_field_initializer = 154, - sym_base_field_initializer = 155, - sym_mut_pattern = 156, - sym_or_pattern = 157, - sym__literal = 158, - sym__literal_pattern = 159, - sym_negative_literal = 160, - sym_string_literal = 161, - sym_boolean_literal = 162, - sym__non_delim_token = 163, - sym_scoped_identifier = 164, - sym_scoped_type_identifier_in_expression_position = 165, - sym_scoped_type_identifier = 166, - sym_tuple_type = 167, - sym_unit_type = 168, - sym_type_arguments = 169, - sym_expression_statement = 170, - sym_expression = 171, - sym_generic_function = 172, - sym_tuple_expression = 173, - sym_return_expression = 174, - sym_struct_expression = 175, - sym_assignment_expression = 176, - sym_break_expression = 177, - sym_continue_expression = 178, - sym_index_expression = 179, - sym_array_expression = 180, - sym_parenthesized_expression = 181, - sym_unit_expression = 182, - sym_compound_assignment_expr = 183, - sym__expression_ending_with_block = 184, - sym_unary_expression = 185, - sym_try_expression = 186, - sym_field_expression = 187, - sym_block = 188, - sym_if_expression = 189, - sym__condition = 190, - sym_let_condition = 191, - sym_else_clause = 192, - sym_match_expression = 193, - sym_match_block = 194, - sym_match_arm = 195, - sym_last_match_arm = 196, - sym_tuple_enum_pattern = 197, - sym_match_pattern = 198, - sym_while_expression = 199, - sym_loop_expression = 200, - sym_binary_expression = 201, - sym_snapshot_type = 202, - sym_call_expression = 203, - sym_arguments = 204, - sym_named_argument = 205, - sym_reference_expression = 206, - sym_visibility_modifier = 207, - sym_extern = 208, - sym_nopanic = 209, - sym_ref_specifier = 210, - aux_sym_source_file_repeat1 = 211, - aux_sym_declaration_list_repeat1 = 212, - aux_sym_enum_variant_list_repeat1 = 213, - aux_sym_enum_variant_list_repeat2 = 214, - aux_sym_field_declaration_list_repeat1 = 215, - aux_sym_function_repeat1 = 216, - aux_sym_use_list_repeat1 = 217, - aux_sym_parameters_repeat1 = 218, - aux_sym_type_parameters_repeat1 = 219, - aux_sym_delim_token_tree_repeat1 = 220, - aux_sym__non_special_token_repeat1 = 221, - aux_sym_tuple_pattern_repeat1 = 222, - aux_sym_struct_pattern_repeat1 = 223, - aux_sym_field_initializer_list_repeat1 = 224, - aux_sym_type_arguments_repeat1 = 225, - aux_sym_tuple_expression_repeat1 = 226, - aux_sym_array_expression_repeat1 = 227, - aux_sym_match_block_repeat1 = 228, - aux_sym_match_arm_repeat1 = 229, - aux_sym_arguments_repeat1 = 230, - alias_sym_field_identifier = 231, - alias_sym_primitive_type = 232, - alias_sym_shorthand_field_identifier = 233, - alias_sym_type_identifier = 234, + anon_sym_for = 87, + sym_numeric_literal = 88, + aux_sym_string_literal_token1 = 89, + aux_sym_string_literal_token2 = 90, + anon_sym_DQUOTE = 91, + sym_shortstring_literal = 92, + anon_sym_true = 93, + anon_sym_false = 94, + anon_sym_DOLLAR = 95, + anon_sym_LT2 = 96, + anon_sym_else = 97, + anon_sym_in = 98, + anon_sym_ref = 99, + sym_identifier = 100, + sym_mutable_specifier = 101, + sym_super = 102, + sym_crate = 103, + sym_line_comment = 104, + sym_source_file = 105, + sym__statement = 106, + sym_declaration_list = 107, + sym_impl_item = 108, + sym_trait_item = 109, + sym_associated_type = 110, + sym_associated_impl = 111, + sym_const_item = 112, + sym_macro_invocation = 113, + sym_empty_statement = 114, + sym_attribute_item = 115, + sym_inner_attribute_item = 116, + sym_attribute = 117, + sym_mod_item = 118, + sym_struct_item = 119, + sym_enum_item = 120, + sym_enum_variant_list = 121, + sym_enum_variant = 122, + sym_field_declaration_list = 123, + sym_field_declaration = 124, + sym_type_item = 125, + sym_extern_type = 126, + sym_external_function_item = 127, + sym_function_item = 128, + sym_function_signature_item = 129, + sym_function = 130, + sym_let_declaration = 131, + sym_use_declaration = 132, + sym__use_clause = 133, + sym_scoped_use_list = 134, + sym_use_list = 135, + sym_use_as_clause = 136, + sym_use_wildcard = 137, + sym_parameters = 138, + sym_parameter = 139, + sym__type = 140, + sym_type_parameters = 141, + sym_const_parameter = 142, + sym_constrained_type_parameter = 143, + sym_generic_type = 144, + sym_generic_type_with_turbofish = 145, + sym_array_type = 146, + sym_delim_token_tree = 147, + sym__delim_tokens = 148, + sym__pattern = 149, + sym_tuple_pattern = 150, + sym_slice_pattern = 151, + sym_struct_pattern = 152, + sym_field_pattern = 153, + sym_field_initializer_list = 154, + sym_shorthand_field_initializer = 155, + sym_field_initializer = 156, + sym_base_field_initializer = 157, + sym_mut_pattern = 158, + sym_or_pattern = 159, + sym__literal = 160, + sym__literal_pattern = 161, + sym_negative_literal = 162, + sym_string_literal = 163, + sym_boolean_literal = 164, + sym__non_delim_token = 165, + sym_scoped_identifier = 166, + sym_scoped_type_identifier_in_expression_position = 167, + sym_scoped_type_identifier = 168, + sym_tuple_type = 169, + sym_unit_type = 170, + sym_type_arguments = 171, + sym_expression_statement = 172, + sym_expression = 173, + sym_generic_function = 174, + sym_tuple_expression = 175, + sym_return_expression = 176, + sym_struct_expression = 177, + sym_assignment_expression = 178, + sym_break_expression = 179, + sym_continue_expression = 180, + sym_index_expression = 181, + sym_array_expression = 182, + sym_parenthesized_expression = 183, + sym_unit_expression = 184, + sym_compound_assignment_expr = 185, + sym__expression_ending_with_block = 186, + sym_unary_expression = 187, + sym_try_expression = 188, + sym_field_expression = 189, + sym_block = 190, + sym_if_expression = 191, + sym__condition = 192, + sym_let_condition = 193, + sym_else_clause = 194, + sym_match_expression = 195, + sym_match_block = 196, + sym_match_arm = 197, + sym_last_match_arm = 198, + sym_tuple_enum_pattern = 199, + sym_match_pattern = 200, + sym_while_expression = 201, + sym_for_expression = 202, + sym_loop_expression = 203, + sym_binary_expression = 204, + sym_snapshot_type = 205, + sym_call_expression = 206, + sym_arguments = 207, + sym_named_argument = 208, + sym_reference_expression = 209, + sym_visibility_modifier = 210, + sym_extern = 211, + sym_nopanic = 212, + sym_ref_specifier = 213, + aux_sym_source_file_repeat1 = 214, + aux_sym_declaration_list_repeat1 = 215, + aux_sym_enum_variant_list_repeat1 = 216, + aux_sym_enum_variant_list_repeat2 = 217, + aux_sym_field_declaration_list_repeat1 = 218, + aux_sym_function_repeat1 = 219, + aux_sym_use_list_repeat1 = 220, + aux_sym_parameters_repeat1 = 221, + aux_sym_type_parameters_repeat1 = 222, + aux_sym_delim_token_tree_repeat1 = 223, + aux_sym__non_special_token_repeat1 = 224, + aux_sym_tuple_pattern_repeat1 = 225, + aux_sym_struct_pattern_repeat1 = 226, + aux_sym_field_initializer_list_repeat1 = 227, + aux_sym_type_arguments_repeat1 = 228, + aux_sym_tuple_expression_repeat1 = 229, + aux_sym_array_expression_repeat1 = 230, + aux_sym_match_block_repeat1 = 231, + aux_sym_match_arm_repeat1 = 232, + aux_sym_arguments_repeat1 = 233, + alias_sym_field_identifier = 234, + alias_sym_primitive_type = 235, + alias_sym_shorthand_field_identifier = 236, + alias_sym_type_identifier = 237, }; static const char * const ts_symbol_names[] = { @@ -269,8 +272,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_SEMI] = ";", [anon_sym_trait] = "trait", [anon_sym_type] = "type", - [anon_sym_const] = "const", [anon_sym_COLON] = ":", + [anon_sym_const] = "const", [anon_sym_EQ] = "=", [anon_sym_BANG] = "!", [anon_sym_POUND] = "#", @@ -348,6 +351,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_return] = "return", [anon_sym_static] = "static", [anon_sym_while] = "while", + [anon_sym_for] = "for", [sym_numeric_literal] = "numeric_literal", [aux_sym_string_literal_token1] = "\"", [aux_sym_string_literal_token2] = "string_literal_token2", @@ -358,9 +362,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_DOLLAR] = "$", [anon_sym_LT2] = "<", [anon_sym_else] = "else", + [anon_sym_in] = "in", [anon_sym_ref] = "ref", [sym_identifier] = "identifier", - [anon_sym_in] = "in", [sym_mutable_specifier] = "mutable_specifier", [sym_super] = "super", [sym_crate] = "crate", @@ -371,6 +375,7 @@ static const char * const ts_symbol_names[] = { [sym_impl_item] = "impl_item", [sym_trait_item] = "trait_item", [sym_associated_type] = "associated_type", + [sym_associated_impl] = "associated_impl", [sym_const_item] = "const_item", [sym_macro_invocation] = "macro_invocation", [sym_empty_statement] = "empty_statement", @@ -461,6 +466,7 @@ static const char * const ts_symbol_names[] = { [sym_tuple_enum_pattern] = "tuple_enum_pattern", [sym_match_pattern] = "match_pattern", [sym_while_expression] = "while_expression", + [sym_for_expression] = "for_expression", [sym_loop_expression] = "loop_expression", [sym_binary_expression] = "binary_expression", [sym_snapshot_type] = "snapshot_type", @@ -507,8 +513,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_trait] = anon_sym_trait, [anon_sym_type] = anon_sym_type, - [anon_sym_const] = anon_sym_const, [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_const] = anon_sym_const, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_BANG] = anon_sym_BANG, [anon_sym_POUND] = anon_sym_POUND, @@ -586,6 +592,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_return] = anon_sym_return, [anon_sym_static] = anon_sym_static, [anon_sym_while] = anon_sym_while, + [anon_sym_for] = anon_sym_for, [sym_numeric_literal] = sym_numeric_literal, [aux_sym_string_literal_token1] = anon_sym_DQUOTE, [aux_sym_string_literal_token2] = aux_sym_string_literal_token2, @@ -596,9 +603,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DOLLAR] = anon_sym_DOLLAR, [anon_sym_LT2] = anon_sym_LT, [anon_sym_else] = anon_sym_else, + [anon_sym_in] = anon_sym_in, [anon_sym_ref] = anon_sym_ref, [sym_identifier] = sym_identifier, - [anon_sym_in] = anon_sym_in, [sym_mutable_specifier] = sym_mutable_specifier, [sym_super] = sym_super, [sym_crate] = sym_crate, @@ -609,6 +616,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_impl_item] = sym_impl_item, [sym_trait_item] = sym_trait_item, [sym_associated_type] = sym_associated_type, + [sym_associated_impl] = sym_associated_impl, [sym_const_item] = sym_const_item, [sym_macro_invocation] = sym_macro_invocation, [sym_empty_statement] = sym_empty_statement, @@ -699,6 +707,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_tuple_enum_pattern] = sym_tuple_enum_pattern, [sym_match_pattern] = sym_match_pattern, [sym_while_expression] = sym_while_expression, + [sym_for_expression] = sym_for_expression, [sym_loop_expression] = sym_loop_expression, [sym_binary_expression] = sym_binary_expression, [sym_snapshot_type] = sym_snapshot_type, @@ -769,11 +778,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_const] = { + [anon_sym_COLON] = { .visible = true, .named = false, }, - [anon_sym_COLON] = { + [anon_sym_const] = { .visible = true, .named = false, }, @@ -1085,6 +1094,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, [sym_numeric_literal] = { .visible = true, .named = true, @@ -1125,6 +1138,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, [anon_sym_ref] = { .visible = true, .named = false, @@ -1133,10 +1150,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_in] = { - .visible = true, - .named = false, - }, [sym_mutable_specifier] = { .visible = true, .named = true, @@ -1177,6 +1190,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_associated_impl] = { + .visible = true, + .named = true, + }, [sym_const_item] = { .visible = true, .named = true, @@ -1542,6 +1559,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_for_expression] = { + .visible = true, + .named = true, + }, [sym_loop_expression] = { .visible = true, .named = true, @@ -1820,50 +1841,51 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [74] = {.index = 0, .length = 1}, [75] = {.index = 82, .length = 2}, [76] = {.index = 84, .length = 2}, - [78] = {.index = 86, .length = 2}, - [79] = {.index = 86, .length = 2}, - [80] = {.index = 88, .length = 2}, - [81] = {.index = 90, .length = 3}, - [82] = {.index = 93, .length = 1}, - [83] = {.index = 94, .length = 1}, - [85] = {.index = 95, .length = 1}, - [86] = {.index = 96, .length = 2}, - [87] = {.index = 98, .length = 3}, - [88] = {.index = 101, .length = 1}, - [89] = {.index = 102, .length = 2}, - [90] = {.index = 104, .length = 2}, - [91] = {.index = 106, .length = 4}, - [92] = {.index = 110, .length = 5}, - [93] = {.index = 115, .length = 4}, - [94] = {.index = 119, .length = 5}, - [95] = {.index = 124, .length = 2}, - [96] = {.index = 126, .length = 2}, - [97] = {.index = 128, .length = 2}, - [98] = {.index = 130, .length = 1}, - [99] = {.index = 131, .length = 2}, - [100] = {.index = 133, .length = 2}, - [101] = {.index = 133, .length = 2}, - [102] = {.index = 135, .length = 1}, - [103] = {.index = 136, .length = 2}, - [104] = {.index = 136, .length = 2}, - [105] = {.index = 138, .length = 2}, - [106] = {.index = 140, .length = 4}, - [107] = {.index = 144, .length = 3}, - [108] = {.index = 67, .length = 2}, - [109] = {.index = 147, .length = 5}, - [110] = {.index = 152, .length = 5}, - [111] = {.index = 157, .length = 6}, - [112] = {.index = 163, .length = 2}, - [113] = {.index = 165, .length = 3}, - [114] = {.index = 168, .length = 1}, - [115] = {.index = 169, .length = 2}, - [116] = {.index = 171, .length = 3}, - [117] = {.index = 174, .length = 2}, - [118] = {.index = 176, .length = 6}, - [119] = {.index = 182, .length = 6}, - [120] = {.index = 188, .length = 3}, + [78] = {.index = 86, .length = 3}, + [79] = {.index = 89, .length = 2}, + [80] = {.index = 89, .length = 2}, + [81] = {.index = 91, .length = 2}, + [82] = {.index = 93, .length = 3}, + [83] = {.index = 96, .length = 1}, + [84] = {.index = 97, .length = 1}, + [86] = {.index = 98, .length = 1}, + [87] = {.index = 99, .length = 2}, + [88] = {.index = 101, .length = 3}, + [89] = {.index = 104, .length = 1}, + [90] = {.index = 105, .length = 2}, + [91] = {.index = 107, .length = 2}, + [92] = {.index = 109, .length = 4}, + [93] = {.index = 113, .length = 5}, + [94] = {.index = 118, .length = 4}, + [95] = {.index = 122, .length = 5}, + [96] = {.index = 127, .length = 2}, + [97] = {.index = 129, .length = 2}, + [98] = {.index = 131, .length = 2}, + [99] = {.index = 133, .length = 1}, + [100] = {.index = 134, .length = 2}, + [101] = {.index = 136, .length = 2}, + [102] = {.index = 136, .length = 2}, + [103] = {.index = 138, .length = 1}, + [104] = {.index = 139, .length = 2}, + [105] = {.index = 139, .length = 2}, + [106] = {.index = 141, .length = 2}, + [107] = {.index = 143, .length = 4}, + [108] = {.index = 147, .length = 3}, + [109] = {.index = 67, .length = 2}, + [110] = {.index = 150, .length = 5}, + [111] = {.index = 155, .length = 5}, + [112] = {.index = 160, .length = 6}, + [113] = {.index = 166, .length = 2}, + [114] = {.index = 168, .length = 3}, + [115] = {.index = 171, .length = 1}, + [116] = {.index = 172, .length = 2}, + [117] = {.index = 174, .length = 3}, + [118] = {.index = 177, .length = 2}, + [119] = {.index = 179, .length = 6}, + [120] = {.index = 185, .length = 6}, [121] = {.index = 191, .length = 3}, - [122] = {.index = 194, .length = 7}, + [122] = {.index = 194, .length = 3}, + [123] = {.index = 197, .length = 7}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2002,153 +2024,157 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_pattern, 1}, {field_value, 3}, [86] = + {field_body, 4}, + {field_pattern, 1}, + {field_value, 3}, + [89] = {field_field, 0}, {field_value, 2}, - [88] = + [91] = {field_name, 2}, {field_type_parameters, 3}, - [90] = + [93] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [93] = + [96] = {field_name, 3}, - [94] = + [97] = {field_element, 1}, - [95] = + [98] = {field_type_parameters, 2}, - [96] = + [99] = {field_body, 5}, {field_type_parameters, 2}, - [98] = + [101] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [101] = + [104] = {field_length, 4}, - [102] = + [105] = {field_name, 0}, {field_type, 2}, - [104] = + [107] = {field_pattern, 0}, {field_type, 2}, - [106] = + [109] = {field_implicit_arguments, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [110] = + [113] = {field_implicit_arguments, 3}, {field_implicit_arguments, 4}, {field_implicit_arguments, 5}, {field_name, 1}, {field_parameters, 2}, - [115] = + [118] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [119] = + [122] = {field_implicit_arguments, 4}, {field_implicit_arguments, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [124] = + [127] = {field_name, 0}, {field_pattern, 2}, - [126] = + [129] = {field_pattern, 2}, {field_type, 4}, - [128] = + [131] = {field_pattern, 2}, {field_value, 4}, - [130] = + [133] = {field_condition, 2}, - [131] = + [134] = {field_pattern, 0}, {field_value, 2}, - [133] = + [136] = {field_field, 1}, {field_value, 3}, - [135] = + [138] = {field_body, 5}, - [136] = + [139] = {field_name, 2}, {field_type, 4}, - [138] = + [141] = {field_name, 3}, {field_type_parameters, 4}, - [140] = + [143] = {field_bound, 3}, {field_left, 0}, {field_left, 1}, {field_left, 2}, - [144] = + [147] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [147] = + [150] = {field_implicit_arguments, 5}, {field_implicit_arguments, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [152] = + [155] = {field_implicit_arguments, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [157] = + [160] = {field_implicit_arguments, 4}, {field_implicit_arguments, 5}, {field_implicit_arguments, 6}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [163] = + [166] = {field_name, 1}, {field_pattern, 3}, - [165] = + [168] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [168] = + [171] = {field_type_parameters, 3}, - [169] = + [172] = {field_body, 6}, {field_type_parameters, 3}, - [171] = + [174] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [174] = + [177] = {field_element, 1}, {field_length, 3}, - [176] = + [179] = {field_implicit_arguments, 5}, {field_implicit_arguments, 6}, {field_implicit_arguments, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [182] = + [185] = {field_implicit_arguments, 6}, {field_implicit_arguments, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [188] = + [191] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [191] = + [194] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [194] = + [197] = {field_implicit_arguments, 6}, {field_implicit_arguments, 7}, {field_implicit_arguments, 8}, @@ -2258,49 +2284,49 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [77] = { [3] = sym_identifier, }, - [79] = { - [0] = alias_sym_field_identifier, - }, [80] = { - [2] = alias_sym_type_identifier, + [0] = alias_sym_field_identifier, }, [81] = { [2] = alias_sym_type_identifier, }, [82] = { + [2] = alias_sym_type_identifier, + }, + [83] = { [3] = alias_sym_type_identifier, }, - [84] = { + [85] = { [2] = alias_sym_type_identifier, }, - [87] = { + [88] = { [1] = alias_sym_type_identifier, }, - [89] = { + [90] = { [0] = alias_sym_field_identifier, }, - [95] = { + [96] = { [0] = alias_sym_field_identifier, }, - [101] = { + [102] = { [1] = alias_sym_field_identifier, }, - [103] = { + [104] = { [2] = alias_sym_type_identifier, }, - [105] = { + [106] = { [3] = alias_sym_type_identifier, }, - [106] = { + [107] = { [1] = alias_sym_type_identifier, }, - [108] = { + [109] = { [1] = alias_sym_field_identifier, }, - [112] = { + [113] = { [1] = alias_sym_field_identifier, }, - [116] = { + [117] = { [2] = alias_sym_type_identifier, }, }; @@ -2316,24 +2342,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 4, - [5] = 4, - [6] = 4, - [7] = 3, - [8] = 3, - [9] = 3, - [10] = 3, - [11] = 3, - [12] = 4, - [13] = 13, - [14] = 4, - [15] = 3, - [16] = 3, - [17] = 4, - [18] = 4, - [19] = 4, - [20] = 13, + [3] = 2, + [4] = 2, + [5] = 5, + [6] = 5, + [7] = 5, + [8] = 2, + [9] = 5, + [10] = 2, + [11] = 11, + [12] = 12, + [13] = 5, + [14] = 2, + [15] = 5, + [16] = 12, + [17] = 5, + [18] = 2, + [19] = 5, + [20] = 2, [21] = 21, [22] = 22, [23] = 23, @@ -2341,36 +2367,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [25] = 24, [26] = 26, [27] = 27, - [28] = 28, + [28] = 27, [29] = 29, - [30] = 27, - [31] = 28, - [32] = 27, - [33] = 29, - [34] = 34, - [35] = 24, - [36] = 26, - [37] = 28, - [38] = 27, - [39] = 29, - [40] = 27, - [41] = 26, - [42] = 26, - [43] = 34, - [44] = 34, - [45] = 26, - [46] = 34, - [47] = 34, - [48] = 24, - [49] = 29, - [50] = 28, - [51] = 29, - [52] = 24, - [53] = 28, + [30] = 30, + [31] = 26, + [32] = 29, + [33] = 26, + [34] = 27, + [35] = 30, + [36] = 36, + [37] = 24, + [38] = 36, + [39] = 30, + [40] = 26, + [41] = 29, + [42] = 27, + [43] = 24, + [44] = 36, + [45] = 30, + [46] = 36, + [47] = 24, + [48] = 36, + [49] = 30, + [50] = 26, + [51] = 27, + [52] = 29, + [53] = 29, [54] = 21, - [55] = 23, - [56] = 21, - [57] = 23, + [55] = 22, + [56] = 22, + [57] = 21, [58] = 58, [59] = 59, [60] = 60, @@ -2385,10 +2411,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [69] = 69, [70] = 70, [71] = 71, - [72] = 64, - [73] = 73, + [72] = 72, + [73] = 63, [74] = 74, - [75] = 62, + [75] = 75, [76] = 76, [77] = 77, [78] = 78, @@ -2396,188 +2422,188 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [80] = 80, [81] = 81, [82] = 82, - [83] = 83, - [84] = 74, - [85] = 79, - [86] = 81, - [87] = 87, + [83] = 67, + [84] = 84, + [85] = 75, + [86] = 76, + [87] = 81, [88] = 88, - [89] = 89, - [90] = 87, + [89] = 88, + [90] = 90, [91] = 91, - [92] = 91, + [92] = 92, [93] = 93, - [94] = 88, + [94] = 93, [95] = 95, - [96] = 95, - [97] = 93, + [96] = 92, + [97] = 91, [98] = 98, [99] = 99, - [100] = 100, - [101] = 99, - [102] = 102, + [100] = 99, + [101] = 101, + [102] = 95, [103] = 103, - [104] = 98, - [105] = 102, + [104] = 104, + [105] = 101, [106] = 103, [107] = 107, - [108] = 108, - [109] = 108, + [108] = 107, + [109] = 109, [110] = 110, [111] = 111, - [112] = 112, + [112] = 110, [113] = 113, - [114] = 110, - [115] = 113, - [116] = 112, - [117] = 111, - [118] = 118, - [119] = 118, + [114] = 111, + [115] = 115, + [116] = 115, + [117] = 109, + [118] = 113, + [119] = 119, [120] = 120, [121] = 121, - [122] = 118, + [122] = 119, [123] = 123, - [124] = 124, - [125] = 118, + [124] = 121, + [125] = 123, [126] = 126, - [127] = 124, + [127] = 121, [128] = 121, - [129] = 121, - [130] = 130, + [129] = 129, + [130] = 123, [131] = 131, - [132] = 132, - [133] = 131, - [134] = 132, + [132] = 131, + [133] = 133, + [134] = 133, [135] = 135, - [136] = 130, + [136] = 136, [137] = 135, [138] = 138, - [139] = 139, - [140] = 139, - [141] = 139, - [142] = 142, + [139] = 138, + [140] = 140, + [141] = 140, + [142] = 140, [143] = 143, [144] = 144, [145] = 145, [146] = 146, - [147] = 143, + [147] = 147, [148] = 148, [149] = 149, - [150] = 142, - [151] = 145, + [150] = 150, + [151] = 151, [152] = 152, - [153] = 152, + [153] = 153, [154] = 154, - [155] = 154, - [156] = 156, + [155] = 155, + [156] = 147, [157] = 157, [158] = 158, [159] = 159, - [160] = 149, + [160] = 143, [161] = 161, - [162] = 161, + [162] = 162, [163] = 163, [164] = 164, [165] = 148, - [166] = 143, - [167] = 146, - [168] = 168, - [169] = 169, - [170] = 157, + [166] = 166, + [167] = 167, + [168] = 163, + [169] = 145, + [170] = 170, [171] = 171, - [172] = 159, - [173] = 142, + [172] = 153, + [173] = 173, [174] = 174, - [175] = 168, - [176] = 176, + [175] = 175, + [176] = 151, [177] = 177, - [178] = 144, - [179] = 179, + [178] = 154, + [179] = 163, [180] = 180, - [181] = 156, - [182] = 149, - [183] = 183, + [181] = 181, + [182] = 182, + [183] = 152, [184] = 184, - [185] = 148, + [185] = 184, [186] = 186, - [187] = 168, - [188] = 188, - [189] = 189, - [190] = 171, - [191] = 186, - [192] = 183, + [187] = 187, + [188] = 151, + [189] = 155, + [190] = 157, + [191] = 149, + [192] = 167, [193] = 193, - [194] = 159, - [195] = 171, - [196] = 196, - [197] = 197, - [198] = 184, - [199] = 146, - [200] = 200, - [201] = 157, - [202] = 202, - [203] = 177, - [204] = 204, - [205] = 205, - [206] = 156, - [207] = 184, - [208] = 180, - [209] = 179, - [210] = 197, + [194] = 180, + [195] = 147, + [196] = 146, + [197] = 145, + [198] = 167, + [199] = 158, + [200] = 159, + [201] = 173, + [202] = 180, + [203] = 154, + [204] = 181, + [205] = 181, + [206] = 206, + [207] = 206, + [208] = 155, + [209] = 157, + [210] = 210, [211] = 211, - [212] = 183, - [213] = 213, - [214] = 158, - [215] = 154, - [216] = 152, - [217] = 145, + [212] = 162, + [213] = 158, + [214] = 161, + [215] = 152, + [216] = 166, + [217] = 159, [218] = 218, - [219] = 164, - [220] = 196, - [221] = 62, - [222] = 82, - [223] = 76, - [224] = 74, - [225] = 81, - [226] = 79, - [227] = 64, - [228] = 228, - [229] = 83, - [230] = 230, - [231] = 231, + [219] = 143, + [220] = 164, + [221] = 162, + [222] = 146, + [223] = 223, + [224] = 223, + [225] = 77, + [226] = 63, + [227] = 67, + [228] = 76, + [229] = 81, + [230] = 71, + [231] = 75, [232] = 232, - [233] = 74, - [234] = 234, - [235] = 79, - [236] = 236, - [237] = 79, - [238] = 81, - [239] = 74, - [240] = 234, - [241] = 241, - [242] = 81, - [243] = 232, - [244] = 73, + [233] = 232, + [234] = 81, + [235] = 235, + [236] = 75, + [237] = 237, + [238] = 76, + [239] = 235, + [240] = 240, + [241] = 84, + [242] = 75, + [243] = 81, + [244] = 76, [245] = 245, - [246] = 74, - [247] = 81, - [248] = 79, - [249] = 70, - [250] = 77, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, [251] = 251, - [252] = 71, - [253] = 68, - [254] = 69, - [255] = 255, - [256] = 80, - [257] = 78, - [258] = 258, + [252] = 252, + [253] = 253, + [254] = 82, + [255] = 80, + [256] = 256, + [257] = 70, + [258] = 72, [259] = 259, [260] = 260, [261] = 261, [262] = 262, - [263] = 263, - [264] = 264, + [263] = 69, + [264] = 79, [265] = 265, [266] = 266, [267] = 267, @@ -2599,7 +2625,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [283] = 283, [284] = 284, [285] = 285, - [286] = 286, + [286] = 68, [287] = 287, [288] = 288, [289] = 289, @@ -2607,18 +2633,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [291] = 291, [292] = 292, [293] = 293, - [294] = 294, + [294] = 74, [295] = 295, [296] = 296, - [297] = 297, - [298] = 298, + [297] = 78, + [298] = 76, [299] = 299, [300] = 300, [301] = 301, [302] = 302, [303] = 303, - [304] = 304, - [305] = 305, + [304] = 81, + [305] = 75, [306] = 306, [307] = 307, [308] = 308, @@ -2652,111 +2678,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [336] = 336, [337] = 337, [338] = 338, - [339] = 337, + [339] = 339, [340] = 340, - [341] = 337, + [341] = 341, [342] = 342, [343] = 343, - [344] = 342, - [345] = 343, - [346] = 346, - [347] = 342, - [348] = 343, + [344] = 344, + [345] = 345, + [346] = 344, + [347] = 344, + [348] = 348, [349] = 349, [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 352, + [351] = 348, + [352] = 348, + [353] = 349, + [354] = 349, + [355] = 355, [356] = 356, - [357] = 354, - [358] = 353, - [359] = 356, + [357] = 357, + [358] = 358, + [359] = 359, [360] = 360, - [361] = 361, - [362] = 362, + [361] = 358, + [362] = 360, [363] = 363, - [364] = 362, - [365] = 365, + [364] = 363, + [365] = 359, [366] = 366, [367] = 367, - [368] = 366, + [368] = 368, [369] = 369, - [370] = 360, - [371] = 361, - [372] = 363, - [373] = 365, - [374] = 369, - [375] = 367, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 378, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 377, + [370] = 370, + [371] = 367, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 366, + [377] = 374, + [378] = 372, + [379] = 370, + [380] = 369, + [381] = 375, + [382] = 368, + [383] = 383, [384] = 384, [385] = 385, [386] = 386, [387] = 387, - [388] = 376, + [388] = 388, [389] = 389, - [390] = 386, - [391] = 384, - [392] = 389, + [390] = 385, + [391] = 391, + [392] = 392, [393] = 393, - [394] = 394, - [395] = 395, - [396] = 395, - [397] = 395, - [398] = 394, - [399] = 394, - [400] = 320, - [401] = 401, - [402] = 402, - [403] = 401, - [404] = 401, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, + [394] = 385, + [395] = 384, + [396] = 393, + [397] = 386, + [398] = 398, + [399] = 388, + [400] = 400, + [401] = 391, + [402] = 400, + [403] = 403, + [404] = 404, + [405] = 403, + [406] = 404, + [407] = 404, + [408] = 403, + [409] = 327, [410] = 410, - [411] = 411, - [412] = 412, + [411] = 410, + [412] = 410, [413] = 413, [414] = 414, - [415] = 83, + [415] = 415, [416] = 416, [417] = 417, [418] = 418, [419] = 419, [420] = 420, - [421] = 79, + [421] = 421, [422] = 422, - [423] = 423, - [424] = 81, + [423] = 84, + [424] = 424, [425] = 425, [426] = 426, [427] = 427, [428] = 428, [429] = 429, - [430] = 74, - [431] = 431, + [430] = 430, + [431] = 75, [432] = 432, [433] = 433, [434] = 434, [435] = 435, [436] = 436, - [437] = 437, + [437] = 76, [438] = 438, [439] = 439, [440] = 440, [441] = 441, [442] = 442, - [443] = 443, + [443] = 81, [444] = 444, [445] = 445, [446] = 446, @@ -2772,7 +2798,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [456] = 456, [457] = 457, [458] = 458, - [459] = 66, + [459] = 459, [460] = 460, [461] = 461, [462] = 462, @@ -2786,12 +2812,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [470] = 470, [471] = 471, [472] = 472, - [473] = 60, - [474] = 474, + [473] = 473, + [474] = 60, [475] = 475, [476] = 476, [477] = 477, - [478] = 63, + [478] = 478, [479] = 479, [480] = 480, [481] = 481, @@ -2800,122 +2826,122 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [484] = 484, [485] = 485, [486] = 486, - [487] = 314, - [488] = 264, - [489] = 304, - [490] = 270, - [491] = 301, - [492] = 408, - [493] = 493, - [494] = 320, - [495] = 263, - [496] = 272, - [497] = 306, - [498] = 334, - [499] = 303, - [500] = 283, - [501] = 330, - [502] = 312, - [503] = 315, - [504] = 276, - [505] = 299, - [506] = 295, - [507] = 311, - [508] = 285, - [509] = 307, - [510] = 284, - [511] = 325, - [512] = 278, - [513] = 329, - [514] = 261, - [515] = 313, - [516] = 516, - [517] = 287, - [518] = 281, - [519] = 333, - [520] = 328, - [521] = 288, - [522] = 318, - [523] = 316, - [524] = 286, - [525] = 297, - [526] = 259, - [527] = 260, - [528] = 528, - [529] = 298, - [530] = 331, - [531] = 290, - [532] = 305, - [533] = 321, - [534] = 528, - [535] = 332, - [536] = 296, - [537] = 317, - [538] = 302, - [539] = 294, - [540] = 268, - [541] = 309, - [542] = 336, - [543] = 310, - [544] = 493, - [545] = 280, - [546] = 322, - [547] = 319, - [548] = 308, - [549] = 300, - [550] = 323, - [551] = 293, - [552] = 258, - [553] = 289, - [554] = 279, - [555] = 277, - [556] = 275, - [557] = 326, - [558] = 274, - [559] = 273, - [560] = 271, - [561] = 269, - [562] = 327, - [563] = 282, - [564] = 335, - [565] = 262, - [566] = 291, - [567] = 265, - [568] = 292, - [569] = 266, - [570] = 267, - [571] = 408, - [572] = 572, - [573] = 418, - [574] = 574, - [575] = 575, - [576] = 417, - [577] = 577, - [578] = 416, - [579] = 579, - [580] = 580, - [581] = 577, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 64, + [494] = 65, + [495] = 495, + [496] = 290, + [497] = 251, + [498] = 327, + [499] = 499, + [500] = 308, + [501] = 309, + [502] = 252, + [503] = 313, + [504] = 248, + [505] = 334, + [506] = 333, + [507] = 331, + [508] = 270, + [509] = 289, + [510] = 271, + [511] = 273, + [512] = 274, + [513] = 253, + [514] = 262, + [515] = 420, + [516] = 259, + [517] = 311, + [518] = 340, + [519] = 312, + [520] = 249, + [521] = 323, + [522] = 324, + [523] = 329, + [524] = 337, + [525] = 338, + [526] = 299, + [527] = 306, + [528] = 275, + [529] = 332, + [530] = 318, + [531] = 287, + [532] = 277, + [533] = 315, + [534] = 272, + [535] = 261, + [536] = 317, + [537] = 281, + [538] = 307, + [539] = 303, + [540] = 330, + [541] = 302, + [542] = 542, + [543] = 336, + [544] = 542, + [545] = 300, + [546] = 278, + [547] = 342, + [548] = 301, + [549] = 269, + [550] = 310, + [551] = 499, + [552] = 335, + [553] = 296, + [554] = 295, + [555] = 293, + [556] = 292, + [557] = 322, + [558] = 321, + [559] = 326, + [560] = 328, + [561] = 325, + [562] = 341, + [563] = 319, + [564] = 291, + [565] = 314, + [566] = 285, + [567] = 283, + [568] = 250, + [569] = 288, + [570] = 256, + [571] = 265, + [572] = 266, + [573] = 267, + [574] = 284, + [575] = 280, + [576] = 268, + [577] = 282, + [578] = 578, + [579] = 279, + [580] = 276, + [581] = 581, [582] = 582, [583] = 583, - [584] = 584, + [584] = 426, [585] = 585, [586] = 586, [587] = 587, - [588] = 575, - [589] = 574, - [590] = 414, + [588] = 588, + [589] = 420, + [590] = 590, [591] = 591, [592] = 592, - [593] = 593, - [594] = 594, + [593] = 427, + [594] = 425, [595] = 595, - [596] = 422, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, + [596] = 596, + [597] = 587, + [598] = 591, + [599] = 424, + [600] = 592, [601] = 601, - [602] = 602, + [602] = 442, [603] = 603, [604] = 604, [605] = 605, @@ -2924,346 +2950,346 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [608] = 608, [609] = 609, [610] = 610, - [611] = 593, + [611] = 608, [612] = 612, - [613] = 595, - [614] = 432, - [615] = 615, - [616] = 414, - [617] = 617, - [618] = 407, + [613] = 613, + [614] = 614, + [615] = 610, + [616] = 616, + [617] = 612, + [618] = 604, [619] = 619, - [620] = 620, + [620] = 610, [621] = 621, [622] = 622, - [623] = 432, - [624] = 422, - [625] = 625, - [626] = 626, + [623] = 604, + [624] = 624, + [625] = 609, + [626] = 610, [627] = 627, - [628] = 601, - [629] = 602, - [630] = 603, + [628] = 628, + [629] = 629, + [630] = 630, [631] = 631, - [632] = 600, - [633] = 633, + [632] = 632, + [633] = 416, [634] = 634, [635] = 635, [636] = 636, - [637] = 626, - [638] = 600, - [639] = 598, - [640] = 597, - [641] = 626, - [642] = 83, - [643] = 626, - [644] = 600, - [645] = 436, - [646] = 419, - [647] = 626, - [648] = 620, - [649] = 619, - [650] = 607, - [651] = 651, - [652] = 617, - [653] = 626, - [654] = 600, - [655] = 655, - [656] = 656, - [657] = 626, - [658] = 627, - [659] = 600, + [637] = 637, + [638] = 327, + [639] = 639, + [640] = 640, + [641] = 610, + [642] = 604, + [643] = 422, + [644] = 613, + [645] = 415, + [646] = 646, + [647] = 624, + [648] = 640, + [649] = 649, + [650] = 603, + [651] = 636, + [652] = 652, + [653] = 653, + [654] = 604, + [655] = 628, + [656] = 652, + [657] = 610, + [658] = 604, + [659] = 659, [660] = 660, [661] = 661, - [662] = 662, + [662] = 610, [663] = 663, - [664] = 411, - [665] = 409, - [666] = 666, - [667] = 412, - [668] = 668, - [669] = 669, - [670] = 413, + [664] = 664, + [665] = 665, + [666] = 653, + [667] = 616, + [668] = 433, + [669] = 616, + [670] = 670, [671] = 671, - [672] = 406, - [673] = 410, - [674] = 615, - [675] = 604, - [676] = 676, - [677] = 660, - [678] = 600, + [672] = 418, + [673] = 417, + [674] = 674, + [675] = 425, + [676] = 607, + [677] = 677, + [678] = 619, [679] = 679, - [680] = 680, - [681] = 595, - [682] = 626, - [683] = 627, - [684] = 684, - [685] = 625, - [686] = 320, - [687] = 635, - [688] = 688, - [689] = 417, - [690] = 600, - [691] = 416, - [692] = 608, - [693] = 671, - [694] = 418, - [695] = 476, - [696] = 466, - [697] = 447, - [698] = 454, - [699] = 464, - [700] = 466, - [701] = 483, - [702] = 486, - [703] = 440, - [704] = 74, - [705] = 441, + [680] = 419, + [681] = 604, + [682] = 441, + [683] = 683, + [684] = 677, + [685] = 622, + [686] = 424, + [687] = 687, + [688] = 610, + [689] = 621, + [690] = 614, + [691] = 687, + [692] = 692, + [693] = 434, + [694] = 604, + [695] = 695, + [696] = 696, + [697] = 697, + [698] = 698, + [699] = 635, + [700] = 426, + [701] = 434, + [702] = 607, + [703] = 605, + [704] = 442, + [705] = 421, [706] = 706, - [707] = 428, - [708] = 451, - [709] = 320, - [710] = 419, - [711] = 436, - [712] = 712, - [713] = 434, - [714] = 714, - [715] = 715, - [716] = 716, - [717] = 429, - [718] = 718, - [719] = 477, - [720] = 446, + [707] = 427, + [708] = 84, + [709] = 619, + [710] = 710, + [711] = 453, + [712] = 461, + [713] = 471, + [714] = 475, + [715] = 477, + [716] = 478, + [717] = 479, + [718] = 480, + [719] = 481, + [720] = 482, [721] = 461, - [722] = 476, - [723] = 427, - [724] = 431, - [725] = 425, + [722] = 436, + [723] = 492, + [724] = 433, + [725] = 441, [726] = 726, - [727] = 727, - [728] = 726, - [729] = 729, + [727] = 444, + [728] = 728, + [729] = 432, [730] = 730, - [731] = 727, - [732] = 732, - [733] = 81, - [734] = 732, - [735] = 735, - [736] = 79, - [737] = 712, - [738] = 477, + [731] = 731, + [732] = 429, + [733] = 733, + [734] = 734, + [735] = 445, + [736] = 439, + [737] = 737, + [738] = 738, [739] = 739, [740] = 740, - [741] = 741, + [741] = 472, [742] = 742, - [743] = 741, - [744] = 729, - [745] = 461, - [746] = 423, - [747] = 739, - [748] = 290, - [749] = 446, - [750] = 716, - [751] = 751, - [752] = 447, - [753] = 753, - [754] = 454, - [755] = 464, - [756] = 751, - [757] = 757, - [758] = 483, - [759] = 486, - [760] = 440, + [743] = 743, + [744] = 76, + [745] = 269, + [746] = 81, + [747] = 75, + [748] = 748, + [749] = 749, + [750] = 750, + [751] = 742, + [752] = 453, + [753] = 471, + [754] = 754, + [755] = 462, + [756] = 749, + [757] = 462, + [758] = 492, + [759] = 475, + [760] = 472, [761] = 761, - [762] = 441, - [763] = 740, - [764] = 764, - [765] = 706, - [766] = 451, - [767] = 730, - [768] = 439, - [769] = 482, - [770] = 448, - [771] = 71, - [772] = 463, - [773] = 73, - [774] = 462, - [775] = 69, - [776] = 453, - [777] = 456, - [778] = 60, - [779] = 63, - [780] = 68, - [781] = 472, - [782] = 479, - [783] = 450, - [784] = 784, - [785] = 442, - [786] = 786, - [787] = 455, - [788] = 452, - [789] = 70, - [790] = 485, - [791] = 481, - [792] = 469, - [793] = 66, - [794] = 471, - [795] = 438, - [796] = 474, - [797] = 460, - [798] = 77, - [799] = 457, - [800] = 445, - [801] = 467, - [802] = 484, - [803] = 468, - [804] = 470, - [805] = 80, - [806] = 465, - [807] = 78, - [808] = 458, - [809] = 449, - [810] = 443, - [811] = 444, - [812] = 480, - [813] = 475, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 817, - [818] = 818, - [819] = 818, - [820] = 817, - [821] = 385, - [822] = 320, - [823] = 823, - [824] = 824, - [825] = 824, - [826] = 826, - [827] = 826, - [828] = 824, - [829] = 824, - [830] = 824, - [831] = 824, - [832] = 826, - [833] = 824, - [834] = 824, - [835] = 835, - [836] = 835, - [837] = 837, - [838] = 838, + [762] = 477, + [763] = 478, + [764] = 446, + [765] = 765, + [766] = 482, + [767] = 738, + [768] = 479, + [769] = 769, + [770] = 726, + [771] = 710, + [772] = 750, + [773] = 754, + [774] = 480, + [775] = 327, + [776] = 481, + [777] = 777, + [778] = 765, + [779] = 748, + [780] = 733, + [781] = 737, + [782] = 777, + [783] = 470, + [784] = 79, + [785] = 459, + [786] = 448, + [787] = 469, + [788] = 460, + [789] = 68, + [790] = 487, + [791] = 74, + [792] = 70, + [793] = 60, + [794] = 72, + [795] = 64, + [796] = 457, + [797] = 485, + [798] = 69, + [799] = 451, + [800] = 456, + [801] = 455, + [802] = 447, + [803] = 452, + [804] = 449, + [805] = 486, + [806] = 484, + [807] = 489, + [808] = 463, + [809] = 809, + [810] = 476, + [811] = 80, + [812] = 78, + [813] = 490, + [814] = 82, + [815] = 464, + [816] = 450, + [817] = 466, + [818] = 465, + [819] = 495, + [820] = 454, + [821] = 467, + [822] = 491, + [823] = 468, + [824] = 488, + [825] = 473, + [826] = 458, + [827] = 65, + [828] = 828, + [829] = 483, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 833, + [836] = 832, + [837] = 373, + [838] = 327, [839] = 839, [840] = 840, [841] = 841, - [842] = 839, - [843] = 413, - [844] = 838, - [845] = 837, - [846] = 407, + [842] = 841, + [843] = 840, + [844] = 840, + [845] = 841, + [846] = 840, [847] = 840, - [848] = 410, - [849] = 406, - [850] = 850, - [851] = 62, - [852] = 852, - [853] = 64, - [854] = 76, + [848] = 840, + [849] = 840, + [850] = 840, + [851] = 851, + [852] = 851, + [853] = 853, + [854] = 854, [855] = 855, [856] = 856, - [857] = 82, - [858] = 855, - [859] = 859, - [860] = 837, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 838, - [868] = 868, - [869] = 869, - [870] = 864, + [857] = 857, + [858] = 856, + [859] = 422, + [860] = 855, + [861] = 853, + [862] = 854, + [863] = 419, + [864] = 418, + [865] = 421, + [866] = 67, + [867] = 63, + [868] = 77, + [869] = 71, + [870] = 870, [871] = 871, - [872] = 839, - [873] = 840, + [872] = 872, + [873] = 873, [874] = 874, [875] = 875, - [876] = 876, + [876] = 875, [877] = 877, [878] = 878, [879] = 879, - [880] = 880, + [880] = 854, [881] = 881, [882] = 882, [883] = 883, [884] = 884, - [885] = 880, - [886] = 886, - [887] = 878, - [888] = 888, - [889] = 889, - [890] = 890, - [891] = 891, - [892] = 891, - [893] = 889, + [885] = 885, + [886] = 856, + [887] = 887, + [888] = 855, + [889] = 853, + [890] = 883, + [891] = 64, + [892] = 892, + [893] = 893, [894] = 894, [895] = 895, - [896] = 841, - [897] = 889, - [898] = 66, + [896] = 894, + [897] = 897, + [898] = 898, [899] = 899, - [900] = 60, - [901] = 882, + [900] = 900, + [901] = 901, [902] = 902, - [903] = 903, - [904] = 903, - [905] = 899, - [906] = 906, - [907] = 906, - [908] = 61, + [903] = 61, + [904] = 904, + [905] = 905, + [906] = 60, + [907] = 907, + [908] = 908, [909] = 909, [910] = 910, - [911] = 902, - [912] = 912, - [913] = 913, - [914] = 914, + [911] = 911, + [912] = 895, + [913] = 904, + [914] = 893, [915] = 915, [916] = 916, - [917] = 917, + [917] = 857, [918] = 918, [919] = 919, - [920] = 913, - [921] = 839, + [920] = 920, + [921] = 921, [922] = 922, [923] = 923, - [924] = 838, + [924] = 924, [925] = 925, - [926] = 840, + [926] = 926, [927] = 927, - [928] = 928, + [928] = 922, [929] = 929, - [930] = 837, + [930] = 930, [931] = 931, [932] = 932, [933] = 933, [934] = 934, [935] = 935, - [936] = 936, + [936] = 933, [937] = 937, - [938] = 919, + [938] = 938, [939] = 939, [940] = 940, [941] = 941, [942] = 942, - [943] = 936, - [944] = 944, - [945] = 945, + [943] = 943, + [944] = 900, + [945] = 894, [946] = 946, [947] = 947, - [948] = 928, - [949] = 882, - [950] = 950, + [948] = 948, + [949] = 919, + [950] = 918, [951] = 951, [952] = 952, [953] = 953, @@ -3272,276 +3298,276 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [956] = 956, [957] = 957, [958] = 958, - [959] = 852, - [960] = 852, + [959] = 853, + [960] = 960, [961] = 961, - [962] = 852, - [963] = 963, - [964] = 964, - [965] = 965, + [962] = 962, + [963] = 961, + [964] = 900, + [965] = 854, [966] = 966, - [967] = 967, + [967] = 856, [968] = 968, - [969] = 969, - [970] = 970, - [971] = 961, - [972] = 413, + [969] = 960, + [970] = 855, + [971] = 968, + [972] = 966, [973] = 973, - [974] = 866, + [974] = 870, [975] = 975, [976] = 976, - [977] = 866, - [978] = 978, + [977] = 977, + [978] = 976, [979] = 979, [980] = 980, [981] = 981, - [982] = 407, - [983] = 406, - [984] = 894, - [985] = 985, + [982] = 870, + [983] = 983, + [984] = 984, + [985] = 870, [986] = 986, - [987] = 410, - [988] = 866, - [989] = 989, - [990] = 852, - [991] = 991, - [992] = 992, + [987] = 987, + [988] = 874, + [989] = 418, + [990] = 990, + [991] = 870, + [992] = 874, [993] = 993, [994] = 994, - [995] = 385, - [996] = 996, + [995] = 995, + [996] = 897, [997] = 997, [998] = 998, [999] = 999, [1000] = 1000, - [1001] = 996, - [1002] = 1002, + [1001] = 1001, + [1002] = 419, [1003] = 1003, - [1004] = 1004, + [1004] = 874, [1005] = 1005, [1006] = 1006, - [1007] = 999, - [1008] = 1008, + [1007] = 421, + [1008] = 422, [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 1012, - [1013] = 866, + [1012] = 415, + [1013] = 1013, [1014] = 1014, - [1015] = 385, - [1016] = 994, + [1015] = 1015, + [1016] = 1016, [1017] = 1017, - [1018] = 1018, + [1018] = 1011, [1019] = 1019, [1020] = 1020, - [1021] = 1009, - [1022] = 411, + [1021] = 1021, + [1022] = 1022, [1023] = 1023, [1024] = 1024, - [1025] = 1025, + [1025] = 373, [1026] = 1026, - [1027] = 1027, - [1028] = 1027, + [1027] = 1014, + [1028] = 1028, [1029] = 1029, [1030] = 1030, - [1031] = 1019, + [1031] = 417, [1032] = 1032, [1033] = 1033, [1034] = 1034, - [1035] = 1018, - [1036] = 1036, + [1035] = 1035, + [1036] = 1028, [1037] = 1037, - [1038] = 1038, - [1039] = 1039, + [1038] = 874, + [1039] = 1019, [1040] = 1040, - [1041] = 409, - [1042] = 412, + [1041] = 1041, + [1042] = 1042, [1043] = 1043, [1044] = 1044, - [1045] = 1045, + [1045] = 373, [1046] = 1046, [1047] = 1047, - [1048] = 1048, + [1048] = 1026, [1049] = 1049, [1050] = 1050, - [1051] = 1044, + [1051] = 1009, [1052] = 1052, - [1053] = 1049, + [1053] = 1053, [1054] = 1054, - [1055] = 1055, + [1055] = 416, [1056] = 1056, - [1057] = 1054, + [1057] = 1057, [1058] = 1058, - [1059] = 1058, - [1060] = 1060, + [1059] = 1056, + [1060] = 1054, [1061] = 1061, - [1062] = 1054, - [1063] = 1061, + [1062] = 1062, + [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, - [1067] = 1067, + [1067] = 1064, [1068] = 1068, - [1069] = 1061, - [1070] = 1067, + [1069] = 1069, + [1070] = 1070, [1071] = 1071, - [1072] = 1072, + [1072] = 1068, [1073] = 1073, - [1074] = 1074, - [1075] = 1043, - [1076] = 1065, - [1077] = 1077, + [1074] = 1062, + [1075] = 1075, + [1076] = 1076, + [1077] = 1070, [1078] = 1078, - [1079] = 1068, - [1080] = 1067, - [1081] = 1074, - [1082] = 1082, + [1079] = 1079, + [1080] = 1073, + [1081] = 1061, + [1082] = 1071, [1083] = 1083, - [1084] = 1068, + [1084] = 1084, [1085] = 1085, - [1086] = 1078, - [1087] = 1087, - [1088] = 1050, + [1086] = 1086, + [1087] = 1083, + [1088] = 1088, [1089] = 1089, - [1090] = 1090, - [1091] = 1071, - [1092] = 1046, - [1093] = 1093, - [1094] = 1044, + [1090] = 1085, + [1091] = 1091, + [1092] = 1092, + [1093] = 1091, + [1094] = 1094, [1095] = 1095, - [1096] = 1089, - [1097] = 1095, - [1098] = 1093, - [1099] = 1087, - [1100] = 1085, - [1101] = 1101, - [1102] = 1068, - [1103] = 1103, - [1104] = 910, - [1105] = 1067, - [1106] = 1106, - [1107] = 1046, - [1108] = 1103, + [1096] = 1096, + [1097] = 1097, + [1098] = 1091, + [1099] = 1085, + [1100] = 1083, + [1101] = 1097, + [1102] = 1094, + [1103] = 1092, + [1104] = 1095, + [1105] = 1105, + [1106] = 1088, + [1107] = 1096, + [1108] = 1076, [1109] = 1109, - [1110] = 1061, - [1111] = 1090, - [1112] = 1046, - [1113] = 1093, - [1114] = 1089, - [1115] = 1068, - [1116] = 1067, - [1117] = 1061, - [1118] = 1064, - [1119] = 1068, - [1120] = 1066, - [1121] = 1121, - [1122] = 1077, - [1123] = 1056, - [1124] = 1067, - [1125] = 1061, - [1126] = 1048, - [1127] = 1068, - [1128] = 1055, - [1129] = 1067, - [1130] = 1061, - [1131] = 1085, - [1132] = 1052, - [1133] = 1101, - [1134] = 1087, - [1135] = 1089, - [1136] = 1136, - [1137] = 1093, - [1138] = 1083, - [1139] = 1139, - [1140] = 1095, - [1141] = 1018, - [1142] = 1060, - [1143] = 954, + [1110] = 1110, + [1111] = 1111, + [1112] = 1069, + [1113] = 1113, + [1114] = 1114, + [1115] = 1076, + [1116] = 1092, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1119, + [1121] = 1118, + [1122] = 1117, + [1123] = 1091, + [1124] = 1085, + [1125] = 1069, + [1126] = 1083, + [1127] = 1127, + [1128] = 1091, + [1129] = 1085, + [1130] = 1083, + [1131] = 1091, + [1132] = 1065, + [1133] = 1085, + [1134] = 1083, + [1135] = 1097, + [1136] = 1066, + [1137] = 1094, + [1138] = 1009, + [1139] = 1092, + [1140] = 1078, + [1141] = 1088, + [1142] = 1076, + [1143] = 1089, [1144] = 1144, - [1145] = 1145, + [1145] = 1110, [1146] = 1146, - [1147] = 320, - [1148] = 1083, - [1149] = 1149, - [1150] = 1150, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1056, - [1157] = 1145, - [1158] = 1158, + [1147] = 1086, + [1148] = 1148, + [1149] = 1111, + [1150] = 1069, + [1151] = 1113, + [1152] = 1086, + [1153] = 1114, + [1154] = 1091, + [1155] = 1085, + [1156] = 1083, + [1157] = 902, + [1158] = 1070, [1159] = 1159, [1160] = 1160, - [1161] = 1161, + [1161] = 1073, [1162] = 1162, - [1163] = 60, + [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 82, - [1168] = 1151, + [1167] = 1167, + [1168] = 1168, [1169] = 1169, - [1170] = 66, - [1171] = 76, - [1172] = 956, - [1173] = 952, - [1174] = 1174, - [1175] = 951, - [1176] = 1176, - [1177] = 942, - [1178] = 937, - [1179] = 1179, + [1170] = 1170, + [1171] = 64, + [1172] = 1172, + [1173] = 1173, + [1174] = 921, + [1175] = 1175, + [1176] = 327, + [1177] = 925, + [1178] = 77, + [1179] = 927, [1180] = 1180, - [1181] = 1181, - [1182] = 1182, + [1181] = 60, + [1182] = 71, [1183] = 1183, - [1184] = 945, + [1184] = 1114, [1185] = 1185, - [1186] = 62, - [1187] = 64, + [1186] = 1186, + [1187] = 1187, [1188] = 1188, [1189] = 1189, - [1190] = 946, - [1191] = 320, + [1190] = 1190, + [1191] = 1191, [1192] = 1192, - [1193] = 1193, - [1194] = 941, - [1195] = 939, + [1193] = 61, + [1194] = 1194, + [1195] = 1195, [1196] = 1196, - [1197] = 934, - [1198] = 1179, + [1197] = 63, + [1198] = 67, [1199] = 1199, - [1200] = 997, - [1201] = 1201, - [1202] = 1202, + [1200] = 1200, + [1201] = 1021, + [1202] = 327, [1203] = 1203, [1204] = 1204, - [1205] = 1205, + [1205] = 932, [1206] = 1206, [1207] = 1207, - [1208] = 1161, + [1208] = 1208, [1209] = 1209, - [1210] = 1174, - [1211] = 1211, - [1212] = 61, - [1213] = 950, - [1214] = 1153, - [1215] = 1215, + [1210] = 1210, + [1211] = 930, + [1212] = 1212, + [1213] = 937, + [1214] = 1214, + [1215] = 1206, [1216] = 1216, - [1217] = 1217, - [1218] = 933, - [1219] = 1219, + [1217] = 1191, + [1218] = 1166, + [1219] = 1173, [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 929, - [1224] = 953, - [1225] = 1217, + [1221] = 954, + [1222] = 1173, + [1223] = 1214, + [1224] = 1224, + [1225] = 1225, [1226] = 1226, - [1227] = 1227, - [1228] = 1228, + [1227] = 1212, + [1228] = 1194, [1229] = 1229, [1230] = 1230, [1231] = 1231, @@ -3549,121 +3575,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1233] = 1233, [1234] = 1234, [1235] = 1235, - [1236] = 927, + [1236] = 1236, [1237] = 1237, [1238] = 1238, - [1239] = 1160, + [1239] = 1239, [1240] = 1240, - [1241] = 925, - [1242] = 1161, - [1243] = 922, - [1244] = 1185, - [1245] = 935, - [1246] = 914, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, + [1245] = 1245, + [1246] = 923, [1247] = 1247, - [1248] = 1207, - [1249] = 1199, - [1250] = 915, - [1251] = 1209, - [1252] = 917, - [1253] = 1206, - [1254] = 955, - [1255] = 1255, + [1248] = 1248, + [1249] = 1249, + [1250] = 1250, + [1251] = 1251, + [1252] = 926, + [1253] = 946, + [1254] = 1165, + [1255] = 1226, [1256] = 1256, - [1257] = 1211, - [1258] = 1258, - [1259] = 1259, - [1260] = 1260, - [1261] = 1261, + [1257] = 1257, + [1258] = 953, + [1259] = 957, + [1260] = 1232, + [1261] = 956, [1262] = 1262, [1263] = 1263, - [1264] = 1264, - [1265] = 912, + [1264] = 1237, + [1265] = 1265, [1266] = 1266, - [1267] = 916, - [1268] = 1268, - [1269] = 918, + [1267] = 1267, + [1268] = 1245, + [1269] = 1269, [1270] = 1270, - [1271] = 923, - [1272] = 931, - [1273] = 1273, + [1271] = 1271, + [1272] = 1272, + [1273] = 1209, [1274] = 1274, - [1275] = 932, - [1276] = 1276, + [1275] = 948, + [1276] = 943, [1277] = 1277, - [1278] = 1169, - [1279] = 1166, + [1278] = 1278, + [1279] = 942, [1280] = 1280, [1281] = 1281, - [1282] = 1149, - [1283] = 1283, - [1284] = 1284, - [1285] = 1176, - [1286] = 1286, - [1287] = 1287, + [1282] = 1233, + [1283] = 955, + [1284] = 935, + [1285] = 938, + [1286] = 916, + [1287] = 931, [1288] = 1288, [1289] = 1289, - [1290] = 1290, + [1290] = 1236, [1291] = 1291, - [1292] = 1292, - [1293] = 1180, - [1294] = 1277, + [1292] = 929, + [1293] = 1293, + [1294] = 1294, [1295] = 1295, - [1296] = 1183, - [1297] = 1255, + [1296] = 1263, + [1297] = 1265, [1298] = 1298, - [1299] = 1174, + [1299] = 1299, [1300] = 1300, - [1301] = 1298, - [1302] = 1291, - [1303] = 1289, - [1304] = 1192, + [1301] = 1301, + [1302] = 1302, + [1303] = 924, + [1304] = 1272, [1305] = 1305, - [1306] = 1188, - [1307] = 1181, - [1308] = 1308, + [1306] = 1306, + [1307] = 939, + [1308] = 1288, [1309] = 1309, - [1310] = 1158, - [1311] = 1287, - [1312] = 1155, - [1313] = 1153, - [1314] = 1238, - [1315] = 1315, - [1316] = 1316, - [1317] = 1196, - [1318] = 1274, - [1319] = 1283, - [1320] = 1320, - [1321] = 1305, - [1322] = 944, - [1323] = 1323, - [1324] = 1229, - [1325] = 1233, - [1326] = 1270, - [1327] = 1234, - [1328] = 1235, - [1329] = 1237, - [1330] = 1144, - [1331] = 1264, - [1332] = 1268, - [1333] = 1284, - [1334] = 1286, - [1335] = 1335, - [1336] = 1336, - [1337] = 1337, - [1338] = 1338, - [1339] = 1339, - [1340] = 1340, - [1341] = 1341, - [1342] = 1342, - [1343] = 1343, - [1344] = 1337, - [1345] = 1337, - [1346] = 1346, - [1347] = 1347, + [1310] = 1274, + [1311] = 920, + [1312] = 1305, + [1313] = 1302, + [1314] = 1309, + [1315] = 1247, + [1316] = 1247, + [1317] = 1207, + [1318] = 1318, + [1319] = 1319, + [1320] = 1204, + [1321] = 1306, + [1322] = 1196, + [1323] = 940, + [1324] = 1319, + [1325] = 1169, + [1326] = 1300, + [1327] = 1167, + [1328] = 1165, + [1329] = 1301, + [1330] = 1190, + [1331] = 1299, + [1332] = 1332, + [1333] = 1333, + [1334] = 941, + [1335] = 1295, + [1336] = 1251, + [1337] = 1248, + [1338] = 1172, + [1339] = 1163, + [1340] = 947, + [1341] = 951, + [1342] = 1298, + [1343] = 1243, + [1344] = 952, + [1345] = 1318, + [1346] = 1240, + [1347] = 1239, [1348] = 1348, - [1349] = 1349, - [1350] = 1350, + [1349] = 1229, + [1350] = 1294, [1351] = 1351, [1352] = 1352, [1353] = 1353, @@ -3675,37 +3701,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1359] = 1359, [1360] = 1360, [1361] = 1361, - [1362] = 1362, + [1362] = 1356, [1363] = 1363, [1364] = 1364, - [1365] = 863, - [1366] = 1364, + [1365] = 1357, + [1366] = 1357, [1367] = 1367, [1368] = 1368, [1369] = 1369, [1370] = 1370, [1371] = 1371, - [1372] = 63, - [1373] = 1347, - [1374] = 1340, - [1375] = 1338, - [1376] = 1335, + [1372] = 1372, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1376, [1377] = 1377, - [1378] = 1378, - [1379] = 1358, - [1380] = 1339, - [1381] = 1341, + [1378] = 882, + [1379] = 65, + [1380] = 1380, + [1381] = 1381, [1382] = 1382, [1383] = 1383, - [1384] = 1369, + [1384] = 1384, [1385] = 1385, - [1386] = 1386, + [1386] = 1385, [1387] = 1387, [1388] = 1388, - [1389] = 1353, - [1390] = 1336, + [1389] = 1389, + [1390] = 1390, [1391] = 1391, - [1392] = 1391, + [1392] = 1392, [1393] = 1393, [1394] = 1394, [1395] = 1395, @@ -3714,113 +3740,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1398] = 1398, [1399] = 1399, [1400] = 1400, - [1401] = 1401, - [1402] = 1402, - [1403] = 1403, - [1404] = 1364, + [1401] = 1375, + [1402] = 1383, + [1403] = 1385, + [1404] = 1404, [1405] = 1405, - [1406] = 1361, + [1406] = 1390, [1407] = 1407, - [1408] = 1395, - [1409] = 1351, - [1410] = 1356, - [1411] = 1393, - [1412] = 1412, - [1413] = 1382, + [1408] = 1408, + [1409] = 1409, + [1410] = 1382, + [1411] = 1411, + [1412] = 1404, + [1413] = 1413, [1414] = 1414, - [1415] = 1415, - [1416] = 1416, + [1415] = 1363, + [1416] = 1355, [1417] = 1417, [1418] = 1418, - [1419] = 1416, - [1420] = 1420, - [1421] = 1421, - [1422] = 1417, - [1423] = 1412, - [1424] = 1414, + [1419] = 1419, + [1420] = 1354, + [1421] = 1370, + [1422] = 1370, + [1423] = 1376, + [1424] = 1424, [1425] = 1425, - [1426] = 1426, - [1427] = 1393, - [1428] = 1428, - [1429] = 1414, - [1430] = 1391, - [1431] = 1382, + [1426] = 1351, + [1427] = 1427, + [1428] = 1414, + [1429] = 1427, + [1430] = 1430, + [1431] = 1376, [1432] = 1432, - [1433] = 1433, - [1434] = 1417, - [1435] = 1416, + [1433] = 1384, + [1434] = 1434, + [1435] = 1396, [1436] = 1436, [1437] = 1437, - [1438] = 1438, - [1439] = 1439, - [1440] = 1397, - [1441] = 1441, - [1442] = 1412, - [1443] = 1443, - [1444] = 1383, + [1438] = 1430, + [1439] = 1353, + [1440] = 1409, + [1441] = 1432, + [1442] = 1442, + [1443] = 1404, + [1444] = 1356, [1445] = 1445, - [1446] = 1391, - [1447] = 1393, - [1448] = 1382, - [1449] = 1371, - [1450] = 1407, - [1451] = 1382, - [1452] = 1356, - [1453] = 1417, - [1454] = 1377, - [1455] = 1455, - [1456] = 1391, - [1457] = 1393, - [1458] = 1393, + [1446] = 1409, + [1447] = 1447, + [1448] = 1436, + [1449] = 1449, + [1450] = 1450, + [1451] = 1451, + [1452] = 1398, + [1453] = 1451, + [1454] = 1454, + [1455] = 1436, + [1456] = 1404, + [1457] = 1360, + [1458] = 1458, [1459] = 1459, - [1460] = 1351, - [1461] = 1391, - [1462] = 1462, - [1463] = 1363, - [1464] = 1464, - [1465] = 1465, - [1466] = 1441, - [1467] = 1403, - [1468] = 1343, - [1469] = 1382, + [1460] = 1409, + [1461] = 1461, + [1462] = 1419, + [1463] = 1351, + [1464] = 1432, + [1465] = 1351, + [1466] = 1430, + [1467] = 1430, + [1468] = 1468, + [1469] = 1358, [1470] = 1470, - [1471] = 1471, - [1472] = 1472, + [1471] = 1381, + [1472] = 1409, [1473] = 1473, - [1474] = 1474, - [1475] = 1475, - [1476] = 1476, + [1474] = 1424, + [1475] = 1404, + [1476] = 1427, [1477] = 1477, [1478] = 1478, - [1479] = 1475, - [1480] = 1480, + [1479] = 1361, + [1480] = 1404, [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1475, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 1473, + [1484] = 1408, + [1485] = 1442, + [1486] = 1351, + [1487] = 1409, + [1488] = 1351, + [1489] = 1489, [1490] = 1490, [1491] = 1491, - [1492] = 1475, - [1493] = 1493, + [1492] = 1492, + [1493] = 1491, [1494] = 1494, [1495] = 1495, - [1496] = 1480, + [1496] = 1496, [1497] = 1497, [1498] = 1498, [1499] = 1499, [1500] = 1500, [1501] = 1501, - [1502] = 1475, + [1502] = 1491, [1503] = 1503, - [1504] = 1473, - [1505] = 1472, - [1506] = 1506, - [1507] = 1475, + [1504] = 1503, + [1505] = 1505, + [1506] = 1491, + [1507] = 1507, [1508] = 1508, [1509] = 1509, [1510] = 1510, @@ -3829,123 +3855,144 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 1516, + [1516] = 1491, [1517] = 1517, - [1518] = 1518, + [1518] = 1496, [1519] = 1519, [1520] = 1520, - [1521] = 1521, - [1522] = 1519, - [1523] = 1475, + [1521] = 1491, + [1522] = 1508, + [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 1473, - [1527] = 879, - [1528] = 1528, + [1526] = 1526, + [1527] = 1527, + [1528] = 1503, [1529] = 1529, - [1530] = 1473, - [1531] = 1531, - [1532] = 1474, - [1533] = 1518, + [1530] = 1491, + [1531] = 1491, + [1532] = 898, + [1533] = 1533, [1534] = 1534, - [1535] = 1498, - [1536] = 1475, - [1537] = 1487, - [1538] = 1470, - [1539] = 1483, - [1540] = 1482, - [1541] = 1541, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, + [1538] = 1503, + [1539] = 1539, + [1540] = 1499, + [1541] = 1517, [1542] = 1542, [1543] = 1543, - [1544] = 1490, - [1545] = 1493, + [1544] = 1544, + [1545] = 1545, [1546] = 1546, - [1547] = 1515, - [1548] = 1548, - [1549] = 1529, - [1550] = 1524, - [1551] = 1543, - [1552] = 1517, - [1553] = 1553, - [1554] = 1554, - [1555] = 1495, - [1556] = 1556, - [1557] = 1494, + [1547] = 1547, + [1548] = 1547, + [1549] = 1549, + [1550] = 1495, + [1551] = 1512, + [1552] = 1515, + [1553] = 1524, + [1554] = 1500, + [1555] = 1555, + [1556] = 1507, + [1557] = 1497, [1558] = 1558, [1559] = 1559, - [1560] = 1556, + [1560] = 1511, [1561] = 1561, - [1562] = 1498, + [1562] = 1562, [1563] = 1563, [1564] = 1564, - [1565] = 1501, - [1566] = 1566, - [1567] = 1528, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, - [1572] = 1572, + [1565] = 1565, + [1566] = 1564, + [1567] = 1567, + [1568] = 1543, + [1569] = 1510, + [1570] = 1537, + [1571] = 1489, + [1572] = 1503, [1573] = 1573, [1574] = 1574, - [1575] = 1572, - [1576] = 1553, + [1575] = 1575, + [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1499, + [1579] = 1576, [1580] = 1580, - [1581] = 1581, - [1582] = 1582, - [1583] = 1531, + [1581] = 1533, + [1582] = 1536, + [1583] = 1583, [1584] = 1584, - [1585] = 1521, - [1586] = 1520, - [1587] = 1520, - [1588] = 1521, + [1585] = 1519, + [1586] = 1586, + [1587] = 1573, + [1588] = 1588, [1589] = 1589, [1590] = 1590, - [1591] = 1529, - [1592] = 1472, - [1593] = 1499, - [1594] = 1554, - [1595] = 1561, - [1596] = 1580, + [1591] = 1591, + [1592] = 1507, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, [1597] = 1597, - [1598] = 1512, - [1599] = 1520, - [1600] = 1511, - [1601] = 1573, - [1602] = 1529, - [1603] = 1603, - [1604] = 1520, - [1605] = 1510, - [1606] = 1529, - [1607] = 1497, - [1608] = 1529, - [1609] = 1609, - [1610] = 1509, - [1611] = 1546, - [1612] = 875, - [1613] = 1569, - [1614] = 1568, - [1615] = 1566, - [1616] = 1508, + [1598] = 1598, + [1599] = 1546, + [1600] = 1539, + [1601] = 907, + [1602] = 1602, + [1603] = 1534, + [1604] = 1535, + [1605] = 1605, + [1606] = 1517, + [1607] = 1543, + [1608] = 908, + [1609] = 1535, + [1610] = 1534, + [1611] = 1598, + [1612] = 1612, + [1613] = 1593, + [1614] = 1562, + [1615] = 1577, + [1616] = 1534, [1617] = 1617, - [1618] = 876, - [1619] = 1541, - [1620] = 1617, - [1621] = 1558, - [1622] = 1570, - [1623] = 1574, - [1624] = 1568, - [1625] = 1566, - [1626] = 1566, - [1627] = 1566, - [1628] = 1491, - [1629] = 1609, - [1630] = 1488, - [1631] = 1486, - [1632] = 1485, + [1618] = 1618, + [1619] = 1543, + [1620] = 1594, + [1621] = 1534, + [1622] = 1526, + [1623] = 1543, + [1624] = 1525, + [1625] = 1543, + [1626] = 1501, + [1627] = 1602, + [1628] = 1580, + [1629] = 1589, + [1630] = 1588, + [1631] = 1631, + [1632] = 1586, + [1633] = 1633, + [1634] = 1514, + [1635] = 1635, + [1636] = 1597, + [1637] = 1618, + [1638] = 1635, + [1639] = 1583, + [1640] = 1490, + [1641] = 1510, + [1642] = 1573, + [1643] = 1586, + [1644] = 1644, + [1645] = 1586, + [1646] = 1586, + [1647] = 1527, + [1648] = 1633, + [1649] = 1523, + [1650] = 1513, + [1651] = 1505, + [1652] = 1544, + [1653] = 1612, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3953,404 +4000,405 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(248); + if (eof) ADVANCE(250); ADVANCE_MAP( - '!', 267, - '"', 407, - '#', 268, - '$', 414, - '%', 332, - '&', 337, + '!', 269, + '"', 411, + '#', 270, + '$', 418, + '%', 334, + '&', 339, '\'', 24, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 330, - '.', 360, - '/', 331, - '0', 388, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 332, + '.', 362, + '/', 333, + '0', 392, ':', 262, - ';', 254, - '<', 415, - '=', 265, - '>', 325, - '?', 362, - '@', 357, - 'B', 205, - '[', 269, - ']', 270, - '^', 334, - '_', 291, - 'a', 178, + ';', 256, + '<', 419, + '=', 267, + '>', 327, + '?', 364, + '@', 359, + 'B', 207, + '[', 271, + ']', 272, + '^', 336, + '_', 293, + 'a', 180, 'b', 19, 'c', 18, - 'd', 123, + 'd', 122, 'e', 148, 'f', 94, 'i', 63, - 'l', 124, + 'l', 123, 'm', 99, - 'n', 163, + 'n', 164, 'o', 130, - 'p', 199, + 'p', 201, 'r', 110, - 's', 183, - 't', 172, + 's', 185, + 't', 173, 'u', 64, 'w', 134, - '{', 249, - '|', 339, - '}', 250, - '~', 335, + '{', 251, + '|', 341, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(244); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + lookahead == ' ') SKIP(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); case 1: ADVANCE_MAP( - '!', 267, - '"', 402, - '#', 268, - '$', 414, - '%', 332, - '&', 337, + '!', 269, + '"', 406, + '#', 270, + '$', 418, + '%', 334, + '&', 339, '\'', 24, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 330, - '.', 360, - '/', 331, - '0', 388, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 332, + '.', 362, + '/', 333, + '0', 392, ':', 262, - ';', 254, - '<', 323, - '=', 265, - '>', 325, - '?', 362, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '^', 334, - '_', 292, - 'b', 420, - 'c', 422, - 'd', 472, - 'e', 520, - 'f', 453, - 'i', 425, - 'l', 485, - 'm', 459, - 'n', 530, - 'p', 566, - 'r', 492, - 's', 557, - 't', 537, - 'u', 429, - 'w', 497, - '{', 249, - '|', 339, - '}', 250, - '~', 335, + ';', 256, + '<', 325, + '=', 267, + '>', 327, + '?', 364, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '^', 336, + '_', 294, + 'b', 425, + 'c', 427, + 'd', 478, + 'e', 526, + 'f', 458, + 'i', 430, + 'l', 491, + 'm', 465, + 'n', 536, + 'p', 573, + 'r', 498, + 's', 563, + 't', 543, + 'u', 434, + 'w', 503, + '{', 251, + '|', 341, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 2: ADVANCE_MAP( - '!', 267, - '"', 402, - '%', 332, - '&', 336, + '!', 269, + '"', 406, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 262, - ';', 254, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '^', 333, - '_', 400, - 'b', 420, - 'c', 423, - 'd', 472, - 'f', 454, - 'i', 426, - 'l', 527, - 'm', 462, - 'r', 473, - 's', 568, - 't', 545, - 'u', 430, - 'w', 497, - '{', 249, - '|', 340, - '}', 250, - '~', 335, + ';', 256, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '^', 335, + '_', 404, + 'b', 425, + 'c', 428, + 'd', 478, + 'f', 459, + 'i', 431, + 'l', 533, + 'm', 468, + 'r', 479, + 's', 575, + 't', 552, + 'u', 435, + 'w', 503, + '{', 251, + '|', 342, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 3: ADVANCE_MAP( - '!', 267, - '"', 402, - '%', 332, - '&', 336, + '!', 269, + '"', 406, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - '*', 289, - '+', 327, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '(', 292, + '*', 291, + '+', 329, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - '<', 323, - '=', 265, - '>', 325, - '?', 362, - '@', 357, - 'B', 575, - '[', 269, - '^', 333, - '_', 400, - 'b', 420, - 'c', 423, - 'd', 472, - 'f', 454, - 'i', 426, - 'l', 527, - 'm', 462, - 'r', 473, - 's', 568, - 't', 545, - 'u', 430, - 'w', 497, - '{', 249, - '|', 340, - '~', 335, + '<', 325, + '=', 267, + '>', 327, + '?', 364, + '@', 359, + 'B', 582, + '[', 271, + '^', 335, + '_', 404, + 'b', 425, + 'c', 428, + 'd', 478, + 'f', 459, + 'i', 431, + 'l', 533, + 'm', 468, + 'r', 479, + 's', 575, + 't', 552, + 'u', 435, + 'w', 503, + '{', 251, + '|', 342, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 4: ADVANCE_MAP( - '!', 267, - '%', 332, - '&', 336, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '!', 269, + '%', 334, + '&', 338, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - ';', 254, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - '[', 269, - ']', 270, - '^', 333, - 'a', 178, + ';', 256, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + '[', 271, + ']', 272, + '^', 335, + 'a', 180, 'e', 147, 'i', 157, - 'n', 163, - '{', 249, - '|', 340, - '}', 250, + 'n', 164, + '{', 251, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); if (('1' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(390); + lookahead == '_') ADVANCE(394); END_STATE(); case 5: ADVANCE_MAP( - '!', 266, - '"', 402, - '#', 268, + '!', 268, + '"', 406, + '#', 270, '\'', 24, - '(', 290, - ')', 293, - '*', 288, - ',', 277, - '-', 328, + '(', 292, + ')', 295, + '*', 290, + ',', 279, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 262, - ';', 254, - '<', 322, - '=', 263, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '_', 400, - 'b', 420, - 'c', 423, - 'd', 472, - 'f', 454, - 'i', 426, - 'l', 527, - 'm', 462, - 'r', 473, - 's', 568, - 't', 545, - 'u', 430, - 'w', 497, - '{', 249, - '~', 335, + ';', 256, + '<', 324, + '=', 265, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '_', 404, + 'b', 425, + 'c', 428, + 'd', 478, + 'f', 459, + 'i', 431, + 'l', 533, + 'm', 468, + 'r', 479, + 's', 575, + 't', 552, + 'u', 435, + 'w', 503, + '{', 251, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 6: ADVANCE_MAP( - '!', 266, - '"', 402, + '!', 268, + '"', 406, '\'', 24, - '(', 290, - '*', 288, - '-', 328, + '(', 292, + '*', 290, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 89, - '@', 357, - 'B', 575, - '[', 269, - '_', 400, - 'b', 420, - 'c', 423, - 'd', 472, - 'f', 454, - 'i', 426, - 'l', 485, - 'm', 462, - 'r', 473, - 's', 568, - 't', 545, - 'u', 430, - 'w', 497, - '{', 249, - '~', 335, + '@', 359, + 'B', 582, + '[', 271, + '_', 404, + 'b', 425, + 'c', 428, + 'd', 478, + 'f', 459, + 'i', 431, + 'l', 491, + 'm', 468, + 'r', 479, + 's', 575, + 't', 552, + 'u', 435, + 'w', 503, + '{', 251, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 7: ADVANCE_MAP( - '!', 266, - '"', 402, + '!', 268, + '"', 406, '\'', 24, - '(', 290, - '*', 288, - '-', 328, + '(', 292, + '*', 290, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 89, - '@', 357, - 'B', 575, - '[', 269, - '_', 400, - 'b', 420, - 'c', 423, - 'd', 472, - 'f', 454, - 'i', 426, - 'l', 527, - 'm', 461, - 'r', 473, - 's', 568, - 't', 545, - 'u', 430, - 'w', 497, - '{', 249, - '~', 335, + '@', 359, + 'B', 582, + '[', 271, + '_', 404, + 'b', 425, + 'c', 428, + 'd', 478, + 'f', 459, + 'i', 431, + 'l', 533, + 'm', 467, + 'r', 479, + 's', 575, + 't', 552, + 'u', 435, + 'w', 503, + '{', 251, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 8: ADVANCE_MAP( - '!', 266, - '(', 290, - ')', 293, - ',', 277, + '!', 268, + '(', 292, + ')', 295, + ',', 279, '-', 91, '/', 62, ':', 262, - ';', 254, - '<', 415, - '=', 263, - '>', 324, - ']', 270, - 'i', 157, - 'n', 163, + ';', 256, + '<', 419, + '=', 265, + '>', 326, + '[', 271, + ']', 272, + 'i', 158, + 'n', 164, 'o', 130, - '{', 249, - '|', 338, - '}', 250, + '{', 251, + '|', 340, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8); END_STATE(); case 9: ADVANCE_MAP( - '!', 266, - '(', 290, - ',', 277, + '!', 268, + '(', 292, + ',', 279, '/', 62, ':', 89, - ';', 254, - '<', 415, + ';', 256, + '<', 419, '=', 92, - ']', 270, + ']', 272, 'i', 129, - '{', 249, - '|', 338, + '{', 251, + '|', 340, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); @@ -4358,640 +4406,640 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 10: ADVANCE_MAP( '!', 90, - '"', 407, - '#', 268, - '%', 332, - '&', 336, - '(', 290, - '*', 289, - '+', 327, - '-', 329, - '.', 359, - '/', 331, + '"', 411, + '#', 270, + '%', 334, + '&', 338, + '(', 292, + '*', 291, + '+', 329, + '-', 331, + '.', 361, + '/', 333, ':', 89, - ';', 254, - '<', 323, - '=', 265, - '>', 325, - '?', 362, - 'B', 575, - '[', 269, - '^', 333, - 'b', 525, - 'c', 531, - 'd', 472, - 'e', 520, - 'f', 488, - 'i', 427, - 'l', 486, - 'm', 526, - 'p', 566, - 's', 550, - 't', 544, - 'u', 429, - '|', 340, - '}', 250, + ';', 256, + '<', 325, + '=', 267, + '>', 327, + '?', 364, + 'B', 582, + '[', 271, + '^', 335, + 'b', 531, + 'c', 537, + 'd', 478, + 'e', 526, + 'f', 494, + 'i', 432, + 'l', 492, + 'm', 532, + 'p', 573, + 's', 565, + 't', 550, + 'u', 434, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 11: ADVANCE_MAP( '!', 90, - '"', 402, - '#', 268, - '%', 332, - '&', 336, + '"', 406, + '#', 270, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '(', 292, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - 'B', 575, - '[', 269, - '^', 333, - '_', 292, - 'b', 421, - 'c', 424, - 'd', 472, - 'e', 514, - 'f', 454, - 'i', 428, - 'm', 571, - 's', 568, - 't', 545, - 'u', 430, - '|', 340, - '}', 250, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + 'B', 582, + '[', 271, + '^', 335, + '_', 294, + 'b', 426, + 'c', 429, + 'd', 478, + 'e', 520, + 'f', 460, + 'i', 433, + 'm', 579, + 's', 575, + 't', 552, + 'u', 435, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 12: ADVANCE_MAP( '!', 90, - '"', 402, - '#', 268, - '%', 332, - '&', 336, + '"', 406, + '#', 270, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '(', 292, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - 'B', 575, - '[', 269, - '^', 333, - '_', 292, - 'b', 421, - 'c', 424, - 'd', 472, - 'f', 454, - 'i', 428, - 'm', 571, - 's', 568, - 't', 545, - 'u', 430, - '|', 340, - '}', 250, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + 'B', 582, + '[', 271, + '^', 335, + '_', 294, + 'b', 426, + 'c', 429, + 'd', 478, + 'f', 460, + 'i', 433, + 'm', 579, + 's', 575, + 't', 552, + 'u', 435, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 13: ADVANCE_MAP( '!', 90, - '#', 268, - '%', 332, - '&', 336, - '(', 290, - '*', 289, - '+', 327, - '-', 329, - '.', 359, - '/', 331, + '#', 270, + '%', 334, + '&', 338, + '(', 292, + '*', 291, + '+', 329, + '-', 331, + '.', 361, + '/', 333, ':', 89, - ';', 254, - '<', 323, - '=', 265, - '>', 325, - '?', 362, - 'B', 575, - '[', 269, - '^', 333, - 'b', 525, - 'c', 531, - 'd', 472, - 'e', 520, - 'f', 488, - 'i', 427, - 'l', 486, - 'm', 526, - 'p', 566, - 's', 550, - 't', 544, - 'u', 429, - '|', 340, - '}', 250, + ';', 256, + '<', 325, + '=', 267, + '>', 327, + '?', 364, + 'B', 582, + '[', 271, + '^', 335, + 'b', 531, + 'c', 537, + 'd', 478, + 'e', 526, + 'f', 494, + 'i', 432, + 'l', 492, + 'm', 532, + 'p', 573, + 's', 565, + 't', 550, + 'u', 434, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 14: ADVANCE_MAP( '!', 90, - '%', 332, - '&', 336, - '(', 290, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, + '%', 334, + '&', 338, + '(', 292, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, ':', 261, - '<', 323, - '=', 265, - '>', 325, - '?', 362, - '[', 269, - '^', 333, + '<', 325, + '=', 267, + '>', 327, + '?', 364, + '[', 271, + '^', 335, 'e', 147, - '|', 340, - '}', 250, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14); END_STATE(); case 15: ADVANCE_MAP( - '"', 402, - '#', 268, + '"', 406, + '#', 270, '\'', 24, - '(', 290, - ')', 293, - ',', 277, - '-', 328, + '(', 292, + ')', 295, + ',', 279, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 89, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '_', 292, - 'b', 421, - 'c', 424, - 'd', 472, - 'f', 454, - 'i', 428, - 'm', 571, - 's', 568, - 't', 545, - 'u', 430, - '|', 338, - '}', 250, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '_', 294, + 'b', 426, + 'c', 429, + 'd', 478, + 'f', 460, + 'i', 433, + 'm', 579, + 's', 575, + 't', 552, + 'u', 435, + '|', 340, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 16: ADVANCE_MAP( - '"', 402, - '#', 268, + '"', 406, + '#', 270, '\'', 24, - '(', 290, - ')', 293, - ',', 277, - '-', 328, + '(', 292, + ')', 295, + ',', 279, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 89, - '@', 357, - 'B', 575, - '[', 269, - '_', 292, - 'b', 421, - 'c', 424, - 'd', 472, - 'f', 454, - 'i', 428, - 'm', 571, - 'r', 487, - 's', 568, - 't', 545, - 'u', 430, - '|', 338, + '@', 359, + 'B', 582, + '[', 271, + '_', 294, + 'b', 426, + 'c', 429, + 'd', 478, + 'f', 460, + 'i', 433, + 'm', 579, + 'r', 493, + 's', 575, + 't', 552, + 'u', 435, + '|', 340, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(16); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 17: ADVANCE_MAP( - '"', 402, + '"', 406, '\'', 24, - '(', 290, - '-', 328, + '(', 292, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 89, - '>', 324, - '@', 357, - 'B', 575, - '[', 269, - '_', 400, - 'b', 421, - 'c', 424, - 'd', 472, - 'f', 454, - 'i', 428, - 's', 568, - 't', 545, - 'u', 430, - '{', 249, + '>', 326, + '@', 359, + 'B', 582, + '[', 271, + '_', 404, + 'b', 426, + 'c', 429, + 'd', 478, + 'f', 460, + 'i', 433, + 's', 575, + 't', 552, + 'u', 435, + '{', 251, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(158); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(159); if (lookahead == 'r') ADVANCE(102); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(164); - if (lookahead == 'r') ADVANCE(125); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(165); + if (lookahead == 'r') ADVANCE(124); END_STATE(); case 20: ADVANCE_MAP( - '#', 268, - '+', 326, - '-', 328, + '#', 270, + '+', 328, + '-', 330, '/', 62, ':', 89, - '>', 324, - 'B', 575, - 'b', 525, - 'c', 531, - 'd', 472, - 'f', 489, - 'i', 427, - 's', 568, - 'u', 430, + '>', 326, + 'B', 582, + 'b', 531, + 'c', 537, + 'd', 478, + 'f', 495, + 'i', 432, + 's', 575, + 'u', 435, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(20); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 21: - if (lookahead == '#') ADVANCE(268); - if (lookahead == ',') ADVANCE(277); + if (lookahead == '#') ADVANCE(270); + if (lookahead == ',') ADVANCE(279); if (lookahead == '.') ADVANCE(61); if (lookahead == '/') ADVANCE(62); - if (lookahead == '0') ADVANCE(388); - if (lookahead == '_') ADVANCE(400); - if (lookahead == '}') ADVANCE(250); + if (lookahead == '0') ADVANCE(392); + if (lookahead == '_') ADVANCE(404); + if (lookahead == '}') ADVANCE(252); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(21); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 22: - if (lookahead == '#') ADVANCE(268); - if (lookahead == ',') ADVANCE(277); + if (lookahead == '#') ADVANCE(270); + if (lookahead == ',') ADVANCE(279); if (lookahead == '/') ADVANCE(62); - if (lookahead == 'p') ADVANCE(566); - if (lookahead == '}') ADVANCE(250); + if (lookahead == 'p') ADVANCE(573); + if (lookahead == '}') ADVANCE(252); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 23: - if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\'') ADVANCE(413); END_STATE(); case 24: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(243); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(245); if (lookahead != 0) ADVANCE(54); END_STATE(); case 25: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(214); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(216); if (lookahead != 0) ADVANCE(26); END_STATE(); case 26: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(212); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(214); if (lookahead != 0) ADVANCE(23); END_STATE(); case 27: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(215); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(217); if (lookahead != 0) ADVANCE(25); END_STATE(); case 28: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(216); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(218); if (lookahead != 0) ADVANCE(27); END_STATE(); case 29: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(217); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(219); if (lookahead != 0) ADVANCE(28); END_STATE(); case 30: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(218); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(220); if (lookahead != 0) ADVANCE(29); END_STATE(); case 31: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(219); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(221); if (lookahead != 0) ADVANCE(30); END_STATE(); case 32: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(220); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(222); if (lookahead != 0) ADVANCE(31); END_STATE(); case 33: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(221); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(223); if (lookahead != 0) ADVANCE(32); END_STATE(); case 34: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(222); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(224); if (lookahead != 0) ADVANCE(33); END_STATE(); case 35: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(223); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(225); if (lookahead != 0) ADVANCE(34); END_STATE(); case 36: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(224); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(226); if (lookahead != 0) ADVANCE(35); END_STATE(); case 37: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(225); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(227); if (lookahead != 0) ADVANCE(36); END_STATE(); case 38: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(226); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(228); if (lookahead != 0) ADVANCE(37); END_STATE(); case 39: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(227); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(229); if (lookahead != 0) ADVANCE(38); END_STATE(); case 40: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(228); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(230); if (lookahead != 0) ADVANCE(39); END_STATE(); case 41: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(229); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(231); if (lookahead != 0) ADVANCE(40); END_STATE(); case 42: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(230); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(232); if (lookahead != 0) ADVANCE(41); END_STATE(); case 43: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(231); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(233); if (lookahead != 0) ADVANCE(42); END_STATE(); case 44: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(232); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(234); if (lookahead != 0) ADVANCE(43); END_STATE(); case 45: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(233); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(235); if (lookahead != 0) ADVANCE(44); END_STATE(); case 46: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(234); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(236); if (lookahead != 0) ADVANCE(45); END_STATE(); case 47: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(235); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(237); if (lookahead != 0) ADVANCE(46); END_STATE(); case 48: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(236); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(238); if (lookahead != 0) ADVANCE(47); END_STATE(); case 49: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(237); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(239); if (lookahead != 0) ADVANCE(48); END_STATE(); case 50: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(238); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(240); if (lookahead != 0) ADVANCE(49); END_STATE(); case 51: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(239); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(241); if (lookahead != 0) ADVANCE(50); END_STATE(); case 52: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(240); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(242); if (lookahead != 0) ADVANCE(51); END_STATE(); case 53: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(241); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(243); if (lookahead != 0) ADVANCE(52); END_STATE(); case 54: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(242); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(244); if (lookahead != 0) ADVANCE(53); END_STATE(); case 55: ADVANCE_MAP( - '(', 290, - ')', 293, - '*', 288, - ',', 277, + '(', 292, + ')', 295, + '*', 290, + ',', 279, '/', 62, ':', 89, - '@', 357, - 'B', 575, - '[', 269, - 'b', 525, - 'd', 472, - 'f', 489, - 'i', 428, - 's', 568, - 'u', 430, - '{', 249, - '}', 250, + '@', 359, + 'B', 582, + '[', 271, + 'b', 531, + 'd', 478, + 'f', 495, + 'i', 433, + 's', 575, + 'u', 435, + '{', 251, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(55); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 56: ADVANCE_MAP( - '(', 290, + '(', 292, '/', 62, ':', 89, - ';', 254, - '@', 357, - 'B', 575, - '[', 269, - 'b', 525, - 'd', 472, - 'f', 489, - 'i', 428, - 'n', 530, - 's', 568, - 'u', 430, - '{', 249, + ';', 256, + '@', 359, + 'B', 582, + '[', 271, + 'b', 531, + 'd', 478, + 'f', 495, + 'i', 433, + 'n', 536, + 's', 575, + 'u', 435, + '{', 251, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(56); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 57: - if (lookahead == '(') ADVANCE(290); + if (lookahead == '(') ADVANCE(292); if (lookahead == '/') ADVANCE(62); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(57); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 58: ADVANCE_MAP( - ')', 293, - ',', 277, + ')', 295, + ',', 279, '/', 62, ':', 261, - ';', 254, - '<', 322, - '=', 263, - '>', 324, - ']', 270, - 'i', 157, - 'n', 163, + ';', 256, + '<', 324, + '=', 265, + '>', 326, + ']', 272, + 'i', 158, + 'n', 164, 'o', 130, - '{', 249, - '|', 338, - '}', 250, + '{', 251, + '|', 340, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58); END_STATE(); case 59: - if (lookahead == '*') ADVANCE(288); + if (lookahead == '*') ADVANCE(290); if (lookahead == '/') ADVANCE(62); - if (lookahead == '<') ADVANCE(415); - if (lookahead == 's') ADVANCE(568); - if (lookahead == '{') ADVANCE(249); + if (lookahead == '<') ADVANCE(419); + if (lookahead == 's') ADVANCE(575); + if (lookahead == '{') ADVANCE(251); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(59); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 60: - if (lookahead == ',') ADVANCE(277); + if (lookahead == ',') ADVANCE(279); if (lookahead == '/') ADVANCE(62); - if (lookahead == 'm') ADVANCE(571); - if (lookahead == '}') ADVANCE(250); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == '}') ADVANCE(252); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(60); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 61: - if (lookahead == '.') ADVANCE(358); + if (lookahead == '.') ADVANCE(360); END_STATE(); case 62: - if (lookahead == '/') ADVANCE(586); + if (lookahead == '/') ADVANCE(592); END_STATE(); case 63: if (lookahead == '1') ADVANCE(67); if (lookahead == '3') ADVANCE(68); if (lookahead == '6') ADVANCE(78); - if (lookahead == '8') ADVANCE(296); - if (lookahead == 'f') ADVANCE(369); - if (lookahead == 'm') ADVANCE(168); - if (lookahead == 'n') ADVANCE(580); + if (lookahead == '8') ADVANCE(298); + if (lookahead == 'f') ADVANCE(371); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(422); END_STATE(); case 64: if (lookahead == '1') ADVANCE(73); if (lookahead == '3') ADVANCE(69); if (lookahead == '6') ADVANCE(79); - if (lookahead == '8') ADVANCE(294); + if (lookahead == '8') ADVANCE(296); if (lookahead == 's') ADVANCE(111); END_STATE(); case 65: @@ -4999,44 +5047,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '2') ADVANCE(81); if (lookahead == '3') ADVANCE(70); if (lookahead == '6') ADVANCE(80); - if (lookahead == '8') ADVANCE(387); + if (lookahead == '8') ADVANCE(391); if (lookahead == 's') ADVANCE(143); END_STATE(); case 66: if (lookahead == '1') ADVANCE(75); if (lookahead == '3') ADVANCE(70); if (lookahead == '6') ADVANCE(80); - if (lookahead == '8') ADVANCE(387); + if (lookahead == '8') ADVANCE(391); END_STATE(); case 67: if (lookahead == '2') ADVANCE(87); - if (lookahead == '6') ADVANCE(300); + if (lookahead == '6') ADVANCE(302); END_STATE(); case 68: - if (lookahead == '2') ADVANCE(304); + if (lookahead == '2') ADVANCE(306); END_STATE(); case 69: - if (lookahead == '2') ADVANCE(302); + if (lookahead == '2') ADVANCE(304); END_STATE(); case 70: - if (lookahead == '2') ADVANCE(387); + if (lookahead == '2') ADVANCE(391); END_STATE(); case 71: - if (lookahead == '2') ADVANCE(320); + if (lookahead == '2') ADVANCE(322); END_STATE(); case 72: - if (lookahead == '2') ADVANCE(408); + if (lookahead == '2') ADVANCE(412); END_STATE(); case 73: if (lookahead == '2') ADVANCE(88); - if (lookahead == '6') ADVANCE(298); + if (lookahead == '6') ADVANCE(300); END_STATE(); case 74: if (lookahead == '2') ADVANCE(83); END_STATE(); case 75: if (lookahead == '2') ADVANCE(86); - if (lookahead == '6') ADVANCE(387); + if (lookahead == '6') ADVANCE(391); END_STATE(); case 76: if (lookahead == '2') ADVANCE(82); @@ -5045,13 +5093,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '2') ADVANCE(84); END_STATE(); case 78: - if (lookahead == '4') ADVANCE(308); + if (lookahead == '4') ADVANCE(310); END_STATE(); case 79: - if (lookahead == '4') ADVANCE(306); + if (lookahead == '4') ADVANCE(308); END_STATE(); case 80: - if (lookahead == '4') ADVANCE(387); + if (lookahead == '4') ADVANCE(391); END_STATE(); case 81: if (lookahead == '5') ADVANCE(85); @@ -5066,138 +5114,139 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '5') ADVANCE(72); END_STATE(); case 85: - if (lookahead == '6') ADVANCE(387); + if (lookahead == '6') ADVANCE(391); END_STATE(); case 86: - if (lookahead == '8') ADVANCE(387); + if (lookahead == '8') ADVANCE(391); END_STATE(); case 87: - if (lookahead == '8') ADVANCE(312); + if (lookahead == '8') ADVANCE(314); END_STATE(); case 88: - if (lookahead == '8') ADVANCE(310); + if (lookahead == '8') ADVANCE(312); END_STATE(); case 89: - if (lookahead == ':') ADVANCE(286); + if (lookahead == ':') ADVANCE(288); END_STATE(); case 90: - if (lookahead == '=') ADVANCE(354); + if (lookahead == '=') ADVANCE(356); END_STATE(); case 91: - if (lookahead == '>') ADVANCE(280); + if (lookahead == '>') ADVANCE(282); END_STATE(); case 92: - if (lookahead == '>') ADVANCE(361); + if (lookahead == '>') ADVANCE(363); END_STATE(); case 93: - if (lookahead == 'A') ADVANCE(175); + if (lookahead == 'A') ADVANCE(179); END_STATE(); case 94: if (lookahead == 'a') ADVANCE(153); if (lookahead == 'e') ADVANCE(149); - if (lookahead == 'n') ADVANCE(278); + if (lookahead == 'n') ADVANCE(280); + if (lookahead == 'o') ADVANCE(174); END_STATE(); case 95: if (lookahead == 'a') ADVANCE(144); END_STATE(); case 96: - if (lookahead == 'a') ADVANCE(206); + if (lookahead == 'a') ADVANCE(208); END_STATE(); case 97: - if (lookahead == 'a') ADVANCE(162); + if (lookahead == 'a') ADVANCE(163); END_STATE(); case 98: if (lookahead == 'a') ADVANCE(141); - if (lookahead == 'u') ADVANCE(116); + if (lookahead == 'u') ADVANCE(115); END_STATE(); case 99: - if (lookahead == 'a') ADVANCE(185); + if (lookahead == 'a') ADVANCE(187); if (lookahead == 'o') ADVANCE(109); - if (lookahead == 'u') ADVANCE(186); + if (lookahead == 'u') ADVANCE(188); END_STATE(); case 100: - if (lookahead == 'a') ADVANCE(204); + if (lookahead == 'a') ADVANCE(205); END_STATE(); case 101: - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'r') ADVANCE(201); + if (lookahead == 'a') ADVANCE(196); + if (lookahead == 'r') ADVANCE(203); END_STATE(); case 102: - if (lookahead == 'a') ADVANCE(196); + if (lookahead == 'a') ADVANCE(198); END_STATE(); case 103: - if (lookahead == 'b') ADVANCE(379); + if (lookahead == 'b') ADVANCE(381); END_STATE(); case 104: - if (lookahead == 'c') ADVANCE(383); + if (lookahead == 'c') ADVANCE(385); END_STATE(); case 105: - if (lookahead == 'c') ADVANCE(373); + if (lookahead == 'c') ADVANCE(375); END_STATE(); case 106: if (lookahead == 'c') ADVANCE(135); END_STATE(); case 107: - if (lookahead == 'c') ADVANCE(189); + if (lookahead == 'c') ADVANCE(191); END_STATE(); case 108: if (lookahead == 'c') ADVANCE(142); END_STATE(); case 109: - if (lookahead == 'd') ADVANCE(271); + if (lookahead == 'd') ADVANCE(273); END_STATE(); case 110: if (lookahead == 'e') ADVANCE(131); END_STATE(); case 111: - if (lookahead == 'e') ADVANCE(284); - if (lookahead == 'i') ADVANCE(207); + if (lookahead == 'e') ADVANCE(286); + if (lookahead == 'i') ADVANCE(209); END_STATE(); case 112: - if (lookahead == 'e') ADVANCE(387); + if (lookahead == 'e') ADVANCE(391); END_STATE(); case 113: if (lookahead == 'e') ADVANCE(93); END_STATE(); case 114: - if (lookahead == 'e') ADVANCE(416); + if (lookahead == 'e') ADVANCE(420); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'e') ADVANCE(414); END_STATE(); case 116: - if (lookahead == 'e') ADVANCE(410); + if (lookahead == 'e') ADVANCE(259); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(257); + if (lookahead == 'e') ADVANCE(591); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(585); + if (lookahead == 'e') ADVANCE(416); END_STATE(); case 119: - if (lookahead == 'e') ADVANCE(412); + if (lookahead == 'e') ADVANCE(316); END_STATE(); case 120: - if (lookahead == 'e') ADVANCE(314); + if (lookahead == 'e') ADVANCE(387); END_STATE(); case 121: - if (lookahead == 'e') ADVANCE(385); + if (lookahead == 'e') ADVANCE(367); END_STATE(); case 122: - if (lookahead == 'e') ADVANCE(365); + if (lookahead == 'e') ADVANCE(132); END_STATE(); case 123: - if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'o') ADVANCE(166); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(184); - if (lookahead == 'o') ADVANCE(165); + if (lookahead == 'e') ADVANCE(95); END_STATE(); case 125: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == 'e') ADVANCE(176); END_STATE(); case 126: - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'e') ADVANCE(175); END_STATE(); case 127: if (lookahead == 'e') ADVANCE(154); @@ -5206,14 +5255,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(155); END_STATE(); case 129: - if (lookahead == 'f') ADVANCE(369); + if (lookahead == 'f') ADVANCE(371); END_STATE(); case 130: - if (lookahead == 'f') ADVANCE(253); + if (lookahead == 'f') ADVANCE(255); END_STATE(); case 131: - if (lookahead == 'f') ADVANCE(418); - if (lookahead == 't') ADVANCE(203); + if (lookahead == 'f') ADVANCE(423); + if (lookahead == 't') ADVANCE(206); END_STATE(); case 132: if (lookahead == 'f') ADVANCE(100); @@ -5225,10 +5274,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'h') ADVANCE(139); END_STATE(); case 135: - if (lookahead == 'h') ADVANCE(377); + if (lookahead == 'h') ADVANCE(379); END_STATE(); case 136: - if (lookahead == 'i') ADVANCE(161); + if (lookahead == 'i') ADVANCE(162); END_STATE(); case 137: if (lookahead == 'i') ADVANCE(104); @@ -5243,2734 +5292,2770 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(108); END_STATE(); case 141: - if (lookahead == 'i') ADVANCE(188); + if (lookahead == 'i') ADVANCE(190); END_STATE(); case 142: - if (lookahead == 'i') ADVANCE(191); + if (lookahead == 'i') ADVANCE(193); END_STATE(); case 143: - if (lookahead == 'i') ADVANCE(208); + if (lookahead == 'i') ADVANCE(210); END_STATE(); case 144: - if (lookahead == 'k') ADVANCE(363); + if (lookahead == 'k') ADVANCE(365); END_STATE(); case 145: - if (lookahead == 'l') ADVANCE(316); + if (lookahead == 'l') ADVANCE(318); END_STATE(); case 146: - if (lookahead == 'l') ADVANCE(251); + if (lookahead == 'l') ADVANCE(253); END_STATE(); case 147: - if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'l') ADVANCE(182); END_STATE(); case 148: - if (lookahead == 'l') ADVANCE(180); - if (lookahead == 'n') ADVANCE(200); - if (lookahead == 'x') ADVANCE(195); + if (lookahead == 'l') ADVANCE(182); + if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'x') ADVANCE(197); END_STATE(); case 149: - if (lookahead == 'l') ADVANCE(192); + if (lookahead == 'l') ADVANCE(194); END_STATE(); case 150: if (lookahead == 'l') ADVANCE(140); END_STATE(); case 151: - if (lookahead == 'l') ADVANCE(190); + if (lookahead == 'l') ADVANCE(192); END_STATE(); case 152: - if (lookahead == 'l') ADVANCE(121); + if (lookahead == 'l') ADVANCE(120); END_STATE(); case 153: - if (lookahead == 'l') ADVANCE(182); + if (lookahead == 'l') ADVANCE(184); END_STATE(); case 154: - if (lookahead == 'l') ADVANCE(197); + if (lookahead == 'l') ADVANCE(199); END_STATE(); case 155: - if (lookahead == 'l') ADVANCE(198); + if (lookahead == 'l') ADVANCE(200); END_STATE(); case 156: - if (lookahead == 'm') ADVANCE(275); + if (lookahead == 'm') ADVANCE(277); END_STATE(); case 157: - if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'm') ADVANCE(170); END_STATE(); case 158: - if (lookahead == 'n') ADVANCE(181); + if (lookahead == 'm') ADVANCE(170); + if (lookahead == 'n') ADVANCE(422); END_STATE(); case 159: - if (lookahead == 'n') ADVANCE(371); + if (lookahead == 'n') ADVANCE(183); END_STATE(); case 160: - if (lookahead == 'n') ADVANCE(381); + if (lookahead == 'n') ADVANCE(373); END_STATE(); case 161: - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'n') ADVANCE(383); END_STATE(); case 162: - if (lookahead == 'n') ADVANCE(138); + if (lookahead == 'n') ADVANCE(204); END_STATE(); case 163: - if (lookahead == 'o') ADVANCE(167); + if (lookahead == 'n') ADVANCE(138); END_STATE(); case 164: - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'o') ADVANCE(168); END_STATE(); case 165: - if (lookahead == 'o') ADVANCE(166); + if (lookahead == 'o') ADVANCE(145); END_STATE(); case 166: - if (lookahead == 'p') ADVANCE(375); + if (lookahead == 'o') ADVANCE(167); END_STATE(); case 167: - if (lookahead == 'p') ADVANCE(97); + if (lookahead == 'p') ADVANCE(377); END_STATE(); case 168: - if (lookahead == 'p') ADVANCE(146); + if (lookahead == 'p') ADVANCE(97); END_STATE(); case 169: - if (lookahead == 'p') ADVANCE(150); + if (lookahead == 'p') ADVANCE(146); END_STATE(); case 170: - if (lookahead == 'p') ADVANCE(126); + if (lookahead == 'p') ADVANCE(150); END_STATE(); case 171: - if (lookahead == 'p') ADVANCE(117); + if (lookahead == 'p') ADVANCE(126); END_STATE(); case 172: - if (lookahead == 'r') ADVANCE(98); - if (lookahead == 'y') ADVANCE(171); + if (lookahead == 'p') ADVANCE(116); END_STATE(); case 173: - if (lookahead == 'r') ADVANCE(583); + if (lookahead == 'r') ADVANCE(98); + if (lookahead == 'y') ADVANCE(172); END_STATE(); case 174: - if (lookahead == 'r') ADVANCE(159); + if (lookahead == 'r') ADVANCE(389); END_STATE(); case 175: - if (lookahead == 'r') ADVANCE(177); + if (lookahead == 'r') ADVANCE(589); END_STATE(); case 176: if (lookahead == 'r') ADVANCE(160); END_STATE(); case 177: - if (lookahead == 'r') ADVANCE(96); + if (lookahead == 'r') ADVANCE(161); END_STATE(); case 178: - if (lookahead == 's') ADVANCE(287); + if (lookahead == 'r') ADVANCE(96); END_STATE(); case 179: - if (lookahead == 's') ADVANCE(281); + if (lookahead == 'r') ADVANCE(178); END_STATE(); case 180: - if (lookahead == 's') ADVANCE(114); + if (lookahead == 's') ADVANCE(289); END_STATE(); case 181: - if (lookahead == 's') ADVANCE(187); - if (lookahead == 't') ADVANCE(136); + if (lookahead == 's') ADVANCE(283); END_STATE(); case 182: - if (lookahead == 's') ADVANCE(119); + if (lookahead == 's') ADVANCE(114); END_STATE(); case 183: - if (lookahead == 't') ADVANCE(101); - if (lookahead == 'u') ADVANCE(170); + if (lookahead == 's') ADVANCE(189); + if (lookahead == 't') ADVANCE(136); END_STATE(); case 184: - if (lookahead == 't') ADVANCE(282); + if (lookahead == 's') ADVANCE(118); END_STATE(); case 185: - if (lookahead == 't') ADVANCE(106); + if (lookahead == 't') ADVANCE(101); + if (lookahead == 'u') ADVANCE(171); END_STATE(); case 186: - if (lookahead == 't') ADVANCE(581); + if (lookahead == 't') ADVANCE(284); END_STATE(); case 187: - if (lookahead == 't') ADVANCE(259); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 188: - if (lookahead == 't') ADVANCE(255); + if (lookahead == 't') ADVANCE(587); END_STATE(); case 189: - if (lookahead == 't') ADVANCE(273); + if (lookahead == 't') ADVANCE(263); END_STATE(); case 190: - if (lookahead == 't') ADVANCE(367); + if (lookahead == 't') ADVANCE(257); END_STATE(); case 191: - if (lookahead == 't') ADVANCE(179); + if (lookahead == 't') ADVANCE(275); END_STATE(); case 192: - if (lookahead == 't') ADVANCE(74); + if (lookahead == 't') ADVANCE(369); END_STATE(); case 193: - if (lookahead == 't') ADVANCE(113); + if (lookahead == 't') ADVANCE(181); END_STATE(); case 194: - if (lookahead == 't') ADVANCE(137); + if (lookahead == 't') ADVANCE(74); END_STATE(); case 195: - if (lookahead == 't') ADVANCE(115); + if (lookahead == 't') ADVANCE(113); END_STATE(); case 196: - if (lookahead == 't') ADVANCE(118); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 197: - if (lookahead == 't') ADVANCE(76); + if (lookahead == 't') ADVANCE(125); END_STATE(); case 198: - if (lookahead == 't') ADVANCE(77); + if (lookahead == 't') ADVANCE(117); END_STATE(); case 199: - if (lookahead == 'u') ADVANCE(103); + if (lookahead == 't') ADVANCE(76); END_STATE(); case 200: - if (lookahead == 'u') ADVANCE(156); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 201: - if (lookahead == 'u') ADVANCE(107); + if (lookahead == 'u') ADVANCE(103); END_STATE(); case 202: - if (lookahead == 'u') ADVANCE(122); + if (lookahead == 'u') ADVANCE(156); END_STATE(); case 203: - if (lookahead == 'u') ADVANCE(176); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 204: - if (lookahead == 'u') ADVANCE(151); + if (lookahead == 'u') ADVANCE(121); END_STATE(); case 205: - if (lookahead == 'y') ADVANCE(193); + if (lookahead == 'u') ADVANCE(151); END_STATE(); case 206: - if (lookahead == 'y') ADVANCE(318); + if (lookahead == 'u') ADVANCE(177); END_STATE(); case 207: - if (lookahead == 'z') ADVANCE(120); + if (lookahead == 'y') ADVANCE(195); END_STATE(); case 208: - if (lookahead == 'z') ADVANCE(112); + if (lookahead == 'y') ADVANCE(320); END_STATE(); case 209: + if (lookahead == 'z') ADVANCE(119); + END_STATE(); + case 210: + if (lookahead == 'z') ADVANCE(112); + END_STATE(); + case 211: if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(392); + lookahead == '_') ADVANCE(396); END_STATE(); - case 210: + case 212: if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(394); + lookahead == '_') ADVANCE(398); END_STATE(); - case 211: + case 213: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); - case 212: + case 214: if (lookahead != 0 && lookahead != '\n') ADVANCE(23); END_STATE(); - case 213: + case 215: if (lookahead != 0 && - lookahead != '\n') ADVANCE(406); + lookahead != '\n') ADVANCE(410); END_STATE(); - case 214: + case 216: if (lookahead != 0 && lookahead != '\n') ADVANCE(26); END_STATE(); - case 215: + case 217: if (lookahead != 0 && lookahead != '\n') ADVANCE(25); END_STATE(); - case 216: + case 218: if (lookahead != 0 && lookahead != '\n') ADVANCE(27); END_STATE(); - case 217: + case 219: if (lookahead != 0 && lookahead != '\n') ADVANCE(28); END_STATE(); - case 218: + case 220: if (lookahead != 0 && lookahead != '\n') ADVANCE(29); END_STATE(); - case 219: + case 221: if (lookahead != 0 && lookahead != '\n') ADVANCE(30); END_STATE(); - case 220: + case 222: if (lookahead != 0 && lookahead != '\n') ADVANCE(31); END_STATE(); - case 221: + case 223: if (lookahead != 0 && lookahead != '\n') ADVANCE(32); END_STATE(); - case 222: + case 224: if (lookahead != 0 && lookahead != '\n') ADVANCE(33); END_STATE(); - case 223: + case 225: if (lookahead != 0 && lookahead != '\n') ADVANCE(34); END_STATE(); - case 224: + case 226: if (lookahead != 0 && lookahead != '\n') ADVANCE(35); END_STATE(); - case 225: + case 227: if (lookahead != 0 && lookahead != '\n') ADVANCE(36); END_STATE(); - case 226: + case 228: if (lookahead != 0 && lookahead != '\n') ADVANCE(37); END_STATE(); - case 227: + case 229: if (lookahead != 0 && lookahead != '\n') ADVANCE(38); END_STATE(); - case 228: + case 230: if (lookahead != 0 && lookahead != '\n') ADVANCE(39); END_STATE(); - case 229: + case 231: if (lookahead != 0 && lookahead != '\n') ADVANCE(40); END_STATE(); - case 230: + case 232: if (lookahead != 0 && lookahead != '\n') ADVANCE(41); END_STATE(); - case 231: + case 233: if (lookahead != 0 && lookahead != '\n') ADVANCE(42); END_STATE(); - case 232: + case 234: if (lookahead != 0 && lookahead != '\n') ADVANCE(43); END_STATE(); - case 233: + case 235: if (lookahead != 0 && lookahead != '\n') ADVANCE(44); END_STATE(); - case 234: + case 236: if (lookahead != 0 && lookahead != '\n') ADVANCE(45); END_STATE(); - case 235: + case 237: if (lookahead != 0 && lookahead != '\n') ADVANCE(46); END_STATE(); - case 236: + case 238: if (lookahead != 0 && lookahead != '\n') ADVANCE(47); END_STATE(); - case 237: + case 239: if (lookahead != 0 && lookahead != '\n') ADVANCE(48); END_STATE(); - case 238: + case 240: if (lookahead != 0 && lookahead != '\n') ADVANCE(49); END_STATE(); - case 239: + case 241: if (lookahead != 0 && lookahead != '\n') ADVANCE(50); END_STATE(); - case 240: + case 242: if (lookahead != 0 && lookahead != '\n') ADVANCE(51); END_STATE(); - case 241: + case 243: if (lookahead != 0 && lookahead != '\n') ADVANCE(52); END_STATE(); - case 242: + case 244: if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); - case 243: + case 245: if (lookahead != 0 && lookahead != '\n') ADVANCE(54); END_STATE(); - case 244: - if (eof) ADVANCE(248); + case 246: + if (eof) ADVANCE(250); ADVANCE_MAP( - '!', 267, - '"', 402, - '#', 268, - '$', 414, - '%', 332, - '&', 337, + '!', 269, + '"', 406, + '#', 270, + '$', 418, + '%', 334, + '&', 339, '\'', 24, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 330, - '.', 360, - '/', 331, - '0', 388, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 332, + '.', 362, + '/', 333, + '0', 392, ':', 262, - ';', 254, - '<', 415, - '=', 265, - '>', 325, - '?', 362, - '@', 357, - 'B', 205, - '[', 269, - ']', 270, - '^', 334, - '_', 291, - 'a', 178, + ';', 256, + '<', 419, + '=', 267, + '>', 327, + '?', 364, + '@', 359, + 'B', 207, + '[', 271, + ']', 272, + '^', 336, + '_', 293, + 'a', 180, 'b', 19, 'c', 18, - 'd', 123, + 'd', 122, 'e', 148, 'f', 94, 'i', 63, - 'l', 124, + 'l', 123, 'm', 99, - 'n', 163, + 'n', 164, 'o', 130, - 'p', 199, + 'p', 201, 'r', 110, - 's', 183, - 't', 172, + 's', 185, + 't', 173, 'u', 64, 'w', 134, - '{', 249, - '|', 339, - '}', 250, - '~', 335, + '{', 251, + '|', 341, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(244); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + lookahead == ' ') SKIP(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 245: - if (eof) ADVANCE(248); + case 247: + if (eof) ADVANCE(250); ADVANCE_MAP( - '!', 267, - '"', 402, - '#', 268, - '%', 332, - '&', 336, + '!', 269, + '"', 406, + '#', 270, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - ';', 254, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '^', 333, - '_', 400, - 'b', 420, - 'c', 422, - 'd', 472, - 'e', 520, - 'f', 453, - 'i', 425, - 'l', 485, - 'm', 460, - 'p', 566, - 'r', 473, - 's', 550, - 't', 537, - 'u', 429, - 'w', 497, - '{', 249, - '|', 340, - '}', 250, - '~', 335, + ';', 256, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '^', 335, + '_', 404, + 'b', 425, + 'c', 427, + 'd', 478, + 'e', 526, + 'f', 458, + 'i', 430, + 'l', 491, + 'm', 466, + 'p', 573, + 'r', 479, + 's', 565, + 't', 543, + 'u', 434, + 'w', 503, + '{', 251, + '|', 342, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(245); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + lookahead == ' ') SKIP(247); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 246: - if (eof) ADVANCE(248); + case 248: + if (eof) ADVANCE(250); ADVANCE_MAP( - '!', 267, - '"', 402, - '#', 268, - '%', 332, - '&', 336, + '!', 269, + '"', 406, + '#', 270, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - '*', 289, - '+', 327, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '(', 292, + '*', 291, + '+', 329, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - ';', 254, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - '@', 357, - 'B', 575, - '[', 269, - '^', 333, - '_', 400, - 'b', 420, - 'c', 422, - 'd', 472, - 'e', 513, - 'f', 453, - 'i', 425, - 'l', 485, - 'm', 460, - 'p', 566, - 'r', 473, - 's', 550, - 't', 537, - 'u', 429, - 'w', 497, - '{', 249, - '|', 340, - '}', 250, - '~', 335, + ';', 256, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + '@', 359, + 'B', 582, + '[', 271, + '^', 335, + '_', 404, + 'b', 425, + 'c', 427, + 'd', 478, + 'e', 519, + 'f', 458, + 'i', 430, + 'l', 491, + 'm', 466, + 'p', 573, + 'r', 479, + 's', 565, + 't', 543, + 'u', 434, + 'w', 503, + '{', 251, + '|', 342, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(246); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + lookahead == ' ') SKIP(248); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 247: - if (eof) ADVANCE(248); + case 249: + if (eof) ADVANCE(250); ADVANCE_MAP( - '!', 266, - '"', 402, - '#', 268, + '!', 268, + '"', 406, + '#', 270, '\'', 24, - '(', 290, - ')', 293, - '*', 288, - ',', 277, - '-', 328, + '(', 292, + ')', 295, + '*', 290, + ',', 279, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 262, - ';', 254, - '<', 415, - '=', 263, - '>', 324, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '_', 400, - 'b', 420, - 'c', 422, - 'd', 472, - 'e', 520, - 'f', 453, - 'i', 425, - 'l', 485, - 'm', 460, - 'p', 566, - 'r', 473, - 's', 550, - 't', 537, - 'u', 429, - 'w', 497, - '{', 249, - '|', 338, - '}', 250, - '~', 335, + ';', 256, + '<', 419, + '=', 265, + '>', 326, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '_', 404, + 'b', 425, + 'c', 427, + 'd', 478, + 'e', 526, + 'f', 458, + 'i', 430, + 'l', 491, + 'm', 466, + 'p', 573, + 'r', 479, + 's', 565, + 't', 543, + 'u', 434, + 'w', 503, + '{', 251, + '|', 340, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(247); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + lookahead == ' ') SKIP(249); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 248: + case 250: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 249: + case 251: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 250: + case 252: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 251: + case 253: ACCEPT_TOKEN(anon_sym_impl); END_STATE(); - case 252: + case 254: ACCEPT_TOKEN(anon_sym_impl); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); - END_STATE(); - case 253: - ACCEPT_TOKEN(anon_sym_of); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_SEMI); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 255: - ACCEPT_TOKEN(anon_sym_trait); + ACCEPT_TOKEN(anon_sym_of); END_STATE(); case 256: - ACCEPT_TOKEN(anon_sym_trait); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 257: - ACCEPT_TOKEN(anon_sym_type); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 258: - ACCEPT_TOKEN(anon_sym_type); + ACCEPT_TOKEN(anon_sym_trait); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 259: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 260: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_type); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 261: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 262: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(286); + if (lookahead == ':') ADVANCE(288); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(353); + ACCEPT_TOKEN(anon_sym_const); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 265: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(353); - if (lookahead == '>') ADVANCE(361); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(355); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(354); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(355); + if (lookahead == '>') ADVANCE(363); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 269: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(356); END_STATE(); case 270: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 271: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 272: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 273: + ACCEPT_TOKEN(anon_sym_mod); + END_STATE(); + case 274: ACCEPT_TOKEN(anon_sym_mod); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 273: + case 275: ACCEPT_TOKEN(anon_sym_struct); END_STATE(); - case 274: + case 276: ACCEPT_TOKEN(anon_sym_struct); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 275: + case 277: ACCEPT_TOKEN(anon_sym_enum); END_STATE(); - case 276: + case 278: ACCEPT_TOKEN(anon_sym_enum); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 277: + case 279: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 278: + case 280: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); - case 279: + case 281: ACCEPT_TOKEN(anon_sym_fn); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 280: + case 282: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 281: + case 283: ACCEPT_TOKEN(anon_sym_implicits); END_STATE(); - case 282: + case 284: ACCEPT_TOKEN(anon_sym_let); END_STATE(); - case 283: + case 285: ACCEPT_TOKEN(anon_sym_let); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 284: + case 286: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 285: + case 287: ACCEPT_TOKEN(anon_sym_use); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 286: + case 288: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 287: + case 289: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 288: + case 290: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 289: + case 291: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(347); + if (lookahead == '=') ADVANCE(349); END_STATE(); - case 290: + case 292: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 291: + case 293: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (lookahead == '_') ADVANCE(393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 292: + case 294: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); + if (lookahead == '_') ADVANCE(403); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 293: + case 295: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 294: + case 296: ACCEPT_TOKEN(anon_sym_u8); END_STATE(); - case 295: + case 297: ACCEPT_TOKEN(anon_sym_u8); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 296: + case 298: ACCEPT_TOKEN(anon_sym_i8); END_STATE(); - case 297: + case 299: ACCEPT_TOKEN(anon_sym_i8); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 298: + case 300: ACCEPT_TOKEN(anon_sym_u16); END_STATE(); - case 299: + case 301: ACCEPT_TOKEN(anon_sym_u16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 300: + case 302: ACCEPT_TOKEN(anon_sym_i16); END_STATE(); - case 301: + case 303: ACCEPT_TOKEN(anon_sym_i16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 302: + case 304: ACCEPT_TOKEN(anon_sym_u32); END_STATE(); - case 303: + case 305: ACCEPT_TOKEN(anon_sym_u32); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 304: + case 306: ACCEPT_TOKEN(anon_sym_i32); END_STATE(); - case 305: + case 307: ACCEPT_TOKEN(anon_sym_i32); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 306: + case 308: ACCEPT_TOKEN(anon_sym_u64); END_STATE(); - case 307: + case 309: ACCEPT_TOKEN(anon_sym_u64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 308: + case 310: ACCEPT_TOKEN(anon_sym_i64); END_STATE(); - case 309: + case 311: ACCEPT_TOKEN(anon_sym_i64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 310: + case 312: ACCEPT_TOKEN(anon_sym_u128); END_STATE(); - case 311: + case 313: ACCEPT_TOKEN(anon_sym_u128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 312: + case 314: ACCEPT_TOKEN(anon_sym_i128); END_STATE(); - case 313: + case 315: ACCEPT_TOKEN(anon_sym_i128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 314: + case 316: ACCEPT_TOKEN(anon_sym_usize); END_STATE(); - case 315: + case 317: ACCEPT_TOKEN(anon_sym_usize); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 316: + case 318: ACCEPT_TOKEN(anon_sym_bool); END_STATE(); - case 317: + case 319: ACCEPT_TOKEN(anon_sym_bool); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 318: + case 320: ACCEPT_TOKEN(anon_sym_ByteArray); END_STATE(); - case 319: + case 321: ACCEPT_TOKEN(anon_sym_ByteArray); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 320: + case 322: ACCEPT_TOKEN(anon_sym_felt252); END_STATE(); - case 321: + case 323: ACCEPT_TOKEN(anon_sym_felt252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); - END_STATE(); - case 322: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 323: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(343); - if (lookahead == '=') ADVANCE(356); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 324: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 325: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(355); - if (lookahead == '>') ADVANCE(344); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(345); + if (lookahead == '=') ADVANCE(358); END_STATE(); case 326: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 327: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(345); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(357); + if (lookahead == '>') ADVANCE(346); END_STATE(); case 328: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 329: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(346); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(347); END_STATE(); case 330: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(346); - if (lookahead == '>') ADVANCE(280); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(586); + ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '=') ADVANCE(348); END_STATE(); case 332: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(349); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(348); + if (lookahead == '>') ADVANCE(282); END_STATE(); case 333: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(592); + if (lookahead == '=') ADVANCE(350); END_STATE(); case 334: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(350); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(351); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(341); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(352); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '=') ADVANCE(351); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(343); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(352); - if (lookahead == '|') ADVANCE(342); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '=') ADVANCE(353); END_STATE(); case 340: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(342); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(354); + if (lookahead == '|') ADVANCE(344); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(344); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 355: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 356: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 357: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 358: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 359: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 360: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(358); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 361: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 362: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(360); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 364: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 365: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 366: ACCEPT_TOKEN(anon_sym_break); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 365: + case 367: ACCEPT_TOKEN(anon_sym_continue); END_STATE(); - case 366: + case 368: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 367: + case 369: ACCEPT_TOKEN(anon_sym_default); END_STATE(); - case 368: + case 370: ACCEPT_TOKEN(anon_sym_default); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 369: + case 371: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 370: + case 372: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 371: + case 373: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 372: + case 374: ACCEPT_TOKEN(anon_sym_extern); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 373: + case 375: ACCEPT_TOKEN(anon_sym_nopanic); END_STATE(); - case 374: + case 376: ACCEPT_TOKEN(anon_sym_nopanic); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 375: + case 377: ACCEPT_TOKEN(anon_sym_loop); END_STATE(); - case 376: + case 378: ACCEPT_TOKEN(anon_sym_loop); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 377: + case 379: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 378: + case 380: ACCEPT_TOKEN(anon_sym_match); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 379: + case 381: ACCEPT_TOKEN(anon_sym_pub); END_STATE(); - case 380: + case 382: ACCEPT_TOKEN(anon_sym_pub); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 381: + case 383: ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 382: + case 384: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 383: + case 385: ACCEPT_TOKEN(anon_sym_static); END_STATE(); - case 384: + case 386: ACCEPT_TOKEN(anon_sym_static); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 385: + case 387: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 386: + case 388: ACCEPT_TOKEN(anon_sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 387: + case 389: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 390: + ACCEPT_TOKEN(anon_sym_for); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); + END_STATE(); + case 391: ACCEPT_TOKEN(sym_numeric_literal); END_STATE(); - case 388: + case 392: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(389); - if (lookahead == 'b') ADVANCE(209); - if (lookahead == 'o') ADVANCE(210); - if (lookahead == 'x') ADVANCE(211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (lookahead == '_') ADVANCE(393); + if (lookahead == 'b') ADVANCE(211); + if (lookahead == 'o') ADVANCE(212); + if (lookahead == 'x') ADVANCE(213); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 389: + case 393: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(389); + if (lookahead == '_') ADVANCE(393); if (lookahead == 'f') ADVANCE(127); if (lookahead == 'i') ADVANCE(66); if (lookahead == 'u') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 390: + case 394: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (lookahead == '_') ADVANCE(393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 391: + case 395: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(391); + if (lookahead == '_') ADVANCE(395); if (lookahead == 'f') ADVANCE(127); if (lookahead == 'i') ADVANCE(66); if (lookahead == 'u') ADVANCE(65); if (lookahead == '0' || - lookahead == '1') ADVANCE(392); + lookahead == '1') ADVANCE(396); END_STATE(); - case 392: + case 396: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(391); + if (lookahead == '_') ADVANCE(395); if (lookahead == '0' || - lookahead == '1') ADVANCE(392); + lookahead == '1') ADVANCE(396); END_STATE(); - case 393: + case 397: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(393); + if (lookahead == '_') ADVANCE(397); if (lookahead == 'f') ADVANCE(127); if (lookahead == 'i') ADVANCE(66); if (lookahead == 'u') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(398); END_STATE(); - case 394: + case 398: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(393); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); + if (lookahead == '_') ADVANCE(397); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(398); END_STATE(); - case 395: + case 399: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(396); - if (lookahead == 'e') ADVANCE(397); + if (lookahead == '_') ADVANCE(400); + if (lookahead == 'e') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); - case 396: + case 400: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(396); - if (lookahead == 'f') ADVANCE(395); + if (lookahead == '_') ADVANCE(400); + if (lookahead == 'f') ADVANCE(399); if (lookahead == 'i') ADVANCE(66); if (lookahead == 'u') ADVANCE(65); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(398); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(402); END_STATE(); - case 397: + case 401: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(396); - if (lookahead == 'l') ADVANCE(197); + if (lookahead == '_') ADVANCE(400); + if (lookahead == 'l') ADVANCE(199); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); - case 398: + case 402: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(396); + if (lookahead == '_') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); - case 399: + case 403: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(399); - if (lookahead == 'f') ADVANCE(493); - if (lookahead == 'i') ADVANCE(432); - if (lookahead == 'u') ADVANCE(431); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); + if (lookahead == '_') ADVANCE(403); + if (lookahead == 'f') ADVANCE(499); + if (lookahead == 'i') ADVANCE(437); + if (lookahead == 'u') ADVANCE(436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 400: + case 404: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); + if (lookahead == '_') ADVANCE(403); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 401: + case 405: ACCEPT_TOKEN(sym_numeric_literal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 402: + case 406: ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); - case 403: + case 407: ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '\n') ADVANCE(406); - if (lookahead == '"') ADVANCE(586); - if (lookahead == '\\') ADVANCE(587); - if (lookahead != 0) ADVANCE(403); + if (lookahead == '\n') ADVANCE(410); + if (lookahead == '"') ADVANCE(592); + if (lookahead == '\\') ADVANCE(593); + if (lookahead != 0) ADVANCE(407); END_STATE(); - case 404: + case 408: ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '/') ADVANCE(405); - if (lookahead == '\\') ADVANCE(213); + if (lookahead == '/') ADVANCE(409); + if (lookahead == '\\') ADVANCE(215); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(404); + lookahead == ' ') ADVANCE(408); if (lookahead != 0 && - lookahead != '"') ADVANCE(406); + lookahead != '"') ADVANCE(410); END_STATE(); - case 405: + case 409: ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '/') ADVANCE(403); - if (lookahead == '\\') ADVANCE(213); + if (lookahead == '/') ADVANCE(407); + if (lookahead == '\\') ADVANCE(215); if (lookahead != 0 && - lookahead != '"') ADVANCE(406); + lookahead != '"') ADVANCE(410); END_STATE(); - case 406: + case 410: ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '\\') ADVANCE(213); + if (lookahead == '\\') ADVANCE(215); if (lookahead != 0 && - lookahead != '"') ADVANCE(406); + lookahead != '"') ADVANCE(410); END_STATE(); - case 407: + case 411: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 408: + case 412: ACCEPT_TOKEN(sym_shortstring_literal); END_STATE(); - case 409: + case 413: ACCEPT_TOKEN(sym_shortstring_literal); if (lookahead == '_') ADVANCE(133); END_STATE(); - case 410: + case 414: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 411: + case 415: ACCEPT_TOKEN(anon_sym_true); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); - END_STATE(); - case 412: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 413: - ACCEPT_TOKEN(anon_sym_false); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); - END_STATE(); - case 414: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 415: - ACCEPT_TOKEN(anon_sym_LT2); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 416: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 417: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_false); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 418: - ACCEPT_TOKEN(anon_sym_ref); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 419: - ACCEPT_TOKEN(anon_sym_ref); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 420: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(528); - if (lookahead == 'r') ADVANCE(474); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 421: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(528); + ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 422: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(517); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 423: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(524); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 424: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(402); + ACCEPT_TOKEN(anon_sym_ref); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(433); - if (lookahead == '3') ADVANCE(434); - if (lookahead == '6') ADVANCE(442); - if (lookahead == '8') ADVANCE(297); - if (lookahead == 'f') ADVANCE(370); - if (lookahead == 'm') ADVANCE(533); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(534); + if (lookahead == 'r') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(433); - if (lookahead == '3') ADVANCE(434); - if (lookahead == '6') ADVANCE(442); - if (lookahead == '8') ADVANCE(297); - if (lookahead == 'f') ADVANCE(370); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(433); - if (lookahead == '3') ADVANCE(434); - if (lookahead == '6') ADVANCE(442); - if (lookahead == '8') ADVANCE(297); - if (lookahead == 'm') ADVANCE(533); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(433); - if (lookahead == '3') ADVANCE(434); - if (lookahead == '6') ADVANCE(442); - if (lookahead == '8') ADVANCE(297); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 429: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(438); - if (lookahead == '3') ADVANCE(435); - if (lookahead == '6') ADVANCE(443); - if (lookahead == '8') ADVANCE(295); - if (lookahead == 's') ADVANCE(475); + if (lookahead == '"') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 430: ACCEPT_TOKEN(sym_identifier); if (lookahead == '1') ADVANCE(438); - if (lookahead == '3') ADVANCE(435); - if (lookahead == '6') ADVANCE(443); - if (lookahead == '8') ADVANCE(295); - if (lookahead == 's') ADVANCE(499); + if (lookahead == '3') ADVANCE(439); + if (lookahead == '6') ADVANCE(447); + if (lookahead == '8') ADVANCE(299); + if (lookahead == 'f') ADVANCE(372); + if (lookahead == 'm') ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 431: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(440); - if (lookahead == '2') ADVANCE(445); - if (lookahead == '3') ADVANCE(436); - if (lookahead == '6') ADVANCE(444); - if (lookahead == '8') ADVANCE(401); - if (lookahead == 's') ADVANCE(505); + if (lookahead == '1') ADVANCE(438); + if (lookahead == '3') ADVANCE(439); + if (lookahead == '6') ADVANCE(447); + if (lookahead == '8') ADVANCE(299); + if (lookahead == 'f') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 432: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(440); - if (lookahead == '3') ADVANCE(436); - if (lookahead == '6') ADVANCE(444); - if (lookahead == '8') ADVANCE(401); + if (lookahead == '1') ADVANCE(438); + if (lookahead == '3') ADVANCE(439); + if (lookahead == '6') ADVANCE(447); + if (lookahead == '8') ADVANCE(299); + if (lookahead == 'm') ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 433: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(450); - if (lookahead == '6') ADVANCE(301); + if (lookahead == '1') ADVANCE(438); + if (lookahead == '3') ADVANCE(439); + if (lookahead == '6') ADVANCE(447); + if (lookahead == '8') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 434: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(305); + if (lookahead == '1') ADVANCE(443); + if (lookahead == '3') ADVANCE(440); + if (lookahead == '6') ADVANCE(448); + if (lookahead == '8') ADVANCE(297); + if (lookahead == 's') ADVANCE(481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 435: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(303); + if (lookahead == '1') ADVANCE(443); + if (lookahead == '3') ADVANCE(440); + if (lookahead == '6') ADVANCE(448); + if (lookahead == '8') ADVANCE(297); + if (lookahead == 's') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 436: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(401); + if (lookahead == '1') ADVANCE(445); + if (lookahead == '2') ADVANCE(450); + if (lookahead == '3') ADVANCE(441); + if (lookahead == '6') ADVANCE(449); + if (lookahead == '8') ADVANCE(405); + if (lookahead == 's') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 437: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(321); + if (lookahead == '1') ADVANCE(445); + if (lookahead == '3') ADVANCE(441); + if (lookahead == '6') ADVANCE(449); + if (lookahead == '8') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 438: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(451); - if (lookahead == '6') ADVANCE(299); + if (lookahead == '2') ADVANCE(455); + if (lookahead == '6') ADVANCE(303); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 439: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(447); + if (lookahead == '2') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 440: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(449); - if (lookahead == '6') ADVANCE(401); + if (lookahead == '2') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 441: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(446); + if (lookahead == '2') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 442: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(309); + if (lookahead == '2') ADVANCE(323); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 443: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(307); + if (lookahead == '2') ADVANCE(456); + if (lookahead == '6') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 444: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(401); + if (lookahead == '2') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 445: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '5') ADVANCE(448); + if (lookahead == '2') ADVANCE(454); + if (lookahead == '6') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 446: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '5') ADVANCE(436); + if (lookahead == '2') ADVANCE(451); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 447: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '5') ADVANCE(437); + if (lookahead == '4') ADVANCE(311); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 448: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '6') ADVANCE(401); + if (lookahead == '4') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 449: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '8') ADVANCE(401); + if (lookahead == '4') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 450: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '8') ADVANCE(313); + if (lookahead == '5') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 451: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '8') ADVANCE(311); + if (lookahead == '5') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 452: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(543); + if (lookahead == '5') ADVANCE(442); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 453: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(510); - if (lookahead == 'n') ADVANCE(279); + if (lookahead == '6') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 454: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(510); + if (lookahead == '8') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 455: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(506); + if (lookahead == '8') ADVANCE(315); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 456: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(576); + if (lookahead == '8') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 457: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'u') ADVANCE(478); + if (lookahead == 'A') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 458: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(504); + if (lookahead == 'a') ADVANCE(513); + if (lookahead == 'e') ADVANCE(516); + if (lookahead == 'n') ADVANCE(281); + if (lookahead == 'o') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 459: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'o') ADVANCE(471); - if (lookahead == 'u') ADVANCE(558); + if (lookahead == 'a') ADVANCE(513); + if (lookahead == 'e') ADVANCE(516); + if (lookahead == 'o') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 460: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'o') ADVANCE(471); + if (lookahead == 'a') ADVANCE(513); + if (lookahead == 'e') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 461: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'u') ADVANCE(558); + if (lookahead == 'a') ADVANCE(512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 462: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'a') ADVANCE(583); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 463: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(573); + if (lookahead == 'a') ADVANCE(510); + if (lookahead == 'u') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 464: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(523); + if (lookahead == 'a') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 465: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(563); - if (lookahead == 'r') ADVANCE(569); + if (lookahead == 'a') ADVANCE(558); + if (lookahead == 'o') ADVANCE(477); + if (lookahead == 'u') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 466: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(380); + if (lookahead == 'a') ADVANCE(558); + if (lookahead == 'o') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 467: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(384); + if (lookahead == 'a') ADVANCE(558); + if (lookahead == 'u') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 468: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'a') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 469: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(498); + if (lookahead == 'a') ADVANCE(581); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 470: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(555); + if (lookahead == 'a') ADVANCE(529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 471: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'r') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 472: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(496); + if (lookahead == 'b') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 473: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(494); + if (lookahead == 'c') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 474: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(455); + if (lookahead == 'c') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 475: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(285); - if (lookahead == 'i') ADVANCE(577); + if (lookahead == 'c') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 476: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(452); + if (lookahead == 'c') ADVANCE(561); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 477: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(401); + if (lookahead == 'd') ADVANCE(274); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 478: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(411); + if (lookahead == 'e') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 479: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(258); + if (lookahead == 'e') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 480: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(413); + if (lookahead == 'e') ADVANCE(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 481: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'e') ADVANCE(287); + if (lookahead == 'i') ADVANCE(584); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'e') ADVANCE(457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(366); + if (lookahead == 'e') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(417); + if (lookahead == 'e') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'o') ADVANCE(529); + if (lookahead == 'e') ADVANCE(260); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(551); + if (lookahead == 'e') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(495); + if (lookahead == 'e') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(510); - if (lookahead == 'n') ADVANCE(279); + if (lookahead == 'e') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(510); + if (lookahead == 'e') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(539); + if (lookahead == 'e') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(538); + if (lookahead == 'e') ADVANCE(557); + if (lookahead == 'o') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(559); + if (lookahead == 'e') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(515); + if (lookahead == 'e') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(419); - if (lookahead == 't') ADVANCE(574); + if (lookahead == 'e') ADVANCE(516); + if (lookahead == 'n') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(419); + if (lookahead == 'e') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(463); + if (lookahead == 'e') ADVANCE(546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(503); + if (lookahead == 'e') ADVANCE(545); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 498: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(378); + if (lookahead == 'e') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(577); + if (lookahead == 'e') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(522); + if (lookahead == 'f') ADVANCE(424); + if (lookahead == 't') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(467); + if (lookahead == 'f') ADVANCE(424); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(468); + if (lookahead == 'f') ADVANCE(469); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(512); + if (lookahead == 'h') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(554); + if (lookahead == 'h') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 505: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'i') ADVANCE(584); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(364); + if (lookahead == 'i') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 507: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(548); + if (lookahead == 'i') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 508: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(317); + if (lookahead == 'i') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 509: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(252); + if (lookahead == 'i') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 510: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(561); + if (lookahead == 'i') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(556); + if (lookahead == 'i') ADVANCE(585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 512: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(482); + if (lookahead == 'k') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 513: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(549); - if (lookahead == 'n') ADVANCE(567); - if (lookahead == 'x') ADVANCE(564); + if (lookahead == 'l') ADVANCE(555); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 514: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(549); + if (lookahead == 'l') ADVANCE(319); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 515: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(565); + if (lookahead == 'l') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 516: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(276); + if (lookahead == 'l') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(546); + if (lookahead == 'l') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(372); + if (lookahead == 'l') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(382); + if (lookahead == 'l') ADVANCE(556); + if (lookahead == 'n') ADVANCE(574); + if (lookahead == 'x') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(567); - if (lookahead == 'x') ADVANCE(564); + if (lookahead == 'l') ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(547); + if (lookahead == 'l') ADVANCE(572); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(572); + if (lookahead == 'm') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(502); + if (lookahead == 'n') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(562); + if (lookahead == 'n') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(528); + if (lookahead == 'n') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(471); + if (lookahead == 'n') ADVANCE(574); + if (lookahead == 'x') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(529); + if (lookahead == 'n') ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(508); + if (lookahead == 'n') ADVANCE(580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(532); + if (lookahead == 'n') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(534); + if (lookahead == 'n') ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(521); + if (lookahead == 'o') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(376); + if (lookahead == 'o') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(509); + if (lookahead == 'o') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(464); + if (lookahead == 'o') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(491); + if (lookahead == 'o') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(479); + if (lookahead == 'o') ADVANCE(540); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(457); - if (lookahead == 'y') ADVANCE(536); + if (lookahead == 'o') ADVANCE(527); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(584); + if (lookahead == 'p') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(518); + if (lookahead == 'p') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(456); + if (lookahead == 'p') ADVANCE(470); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(569); + if (lookahead == 'p') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(519); + if (lookahead == 'p') ADVANCE(485); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(540); + if (lookahead == 'r') ADVANCE(463); + if (lookahead == 'y') ADVANCE(542); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 544: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(458); - if (lookahead == 'y') ADVANCE(536); + if (lookahead == 'r') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 545: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(570); + if (lookahead == 'r') ADVANCE(590); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 546: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(553); - if (lookahead == 't') ADVANCE(500); + if (lookahead == 'r') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 547: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(553); + if (lookahead == 'r') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 548: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(480); + if (lookahead == 'r') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 549: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(484); + if (lookahead == 'r') ADVANCE(525); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 550: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(541); - if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'r') ADVANCE(464); + if (lookahead == 'y') ADVANCE(542); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 551: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(283); + if (lookahead == 'r') ADVANCE(547); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 552: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(469); + if (lookahead == 'r') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(260); + if (lookahead == 's') ADVANCE(559); + if (lookahead == 't') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(256); + if (lookahead == 's') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(274); + if (lookahead == 's') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(368); + if (lookahead == 's') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(465); - if (lookahead == 'u') ADVANCE(535); + if (lookahead == 't') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(582); + if (lookahead == 't') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(574); + if (lookahead == 't') ADVANCE(264); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(476); + if (lookahead == 't') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(439); + if (lookahead == 't') ADVANCE(276); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(500); + if (lookahead == 't') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(501); + if (lookahead == 't') ADVANCE(471); + if (lookahead == 'u') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(490); + if (lookahead == 't') ADVANCE(588); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(441); + if (lookahead == 't') ADVANCE(548); + if (lookahead == 'u') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(466); + if (lookahead == 't') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(516); + if (lookahead == 't') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(535); + if (lookahead == 't') ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(470); + if (lookahead == 't') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(478); + if (lookahead == 't') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(558); + if (lookahead == 't') ADVANCE(496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(483); + if (lookahead == 't') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(511); + if (lookahead == 'u') ADVANCE(472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'u') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(560); + if (lookahead == 'u') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(319); + if (lookahead == 'u') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'z') ADVANCE(481); + if (lookahead == 'u') ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'z') ADVANCE(477); + if (lookahead == 'u') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 579: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 580: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(489); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 581: - ACCEPT_TOKEN(sym_mutable_specifier); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 582: - ACCEPT_TOKEN(sym_mutable_specifier); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 583: - ACCEPT_TOKEN(sym_super); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 584: - ACCEPT_TOKEN(sym_super); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'z') ADVANCE(487); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(586); END_STATE(); case 585: - ACCEPT_TOKEN(sym_crate); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'z') ADVANCE(483); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(586); END_STATE(); case 586: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); + END_STATE(); + case 587: + ACCEPT_TOKEN(sym_mutable_specifier); + END_STATE(); + case 588: + ACCEPT_TOKEN(sym_mutable_specifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); + END_STATE(); + case 589: + ACCEPT_TOKEN(sym_super); + END_STATE(); + case 590: + ACCEPT_TOKEN(sym_super); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); + END_STATE(); + case 591: + ACCEPT_TOKEN(sym_crate); + END_STATE(); + case 592: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(586); + lookahead != '\n') ADVANCE(592); END_STATE(); - case 587: + case 593: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(403); + lookahead != '\n') ADVANCE(407); END_STATE(); default: return false; @@ -7979,29 +8064,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 247}, - [2] = {.lex_state = 247}, - [3] = {.lex_state = 247}, - [4] = {.lex_state = 247}, - [5] = {.lex_state = 247}, - [6] = {.lex_state = 247}, - [7] = {.lex_state = 247}, - [8] = {.lex_state = 247}, - [9] = {.lex_state = 247}, - [10] = {.lex_state = 247}, - [11] = {.lex_state = 247}, - [12] = {.lex_state = 247}, - [13] = {.lex_state = 247}, - [14] = {.lex_state = 247}, - [15] = {.lex_state = 247}, - [16] = {.lex_state = 247}, - [17] = {.lex_state = 247}, - [18] = {.lex_state = 247}, - [19] = {.lex_state = 247}, - [20] = {.lex_state = 247}, + [1] = {.lex_state = 249}, + [2] = {.lex_state = 249}, + [3] = {.lex_state = 249}, + [4] = {.lex_state = 249}, + [5] = {.lex_state = 249}, + [6] = {.lex_state = 249}, + [7] = {.lex_state = 249}, + [8] = {.lex_state = 249}, + [9] = {.lex_state = 249}, + [10] = {.lex_state = 249}, + [11] = {.lex_state = 249}, + [12] = {.lex_state = 249}, + [13] = {.lex_state = 249}, + [14] = {.lex_state = 249}, + [15] = {.lex_state = 249}, + [16] = {.lex_state = 249}, + [17] = {.lex_state = 249}, + [18] = {.lex_state = 249}, + [19] = {.lex_state = 249}, + [20] = {.lex_state = 249}, [21] = {.lex_state = 2}, - [22] = {.lex_state = 1}, - [23] = {.lex_state = 2}, + [22] = {.lex_state = 2}, + [23] = {.lex_state = 1}, [24] = {.lex_state = 1}, [25] = {.lex_state = 1}, [26] = {.lex_state = 1}, @@ -8046,41 +8131,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [65] = {.lex_state = 1}, [66] = {.lex_state = 1}, [67] = {.lex_state = 1}, - [68] = {.lex_state = 245}, - [69] = {.lex_state = 245}, - [70] = {.lex_state = 245}, - [71] = {.lex_state = 245}, - [72] = {.lex_state = 245}, - [73] = {.lex_state = 245}, - [74] = {.lex_state = 245}, - [75] = {.lex_state = 245}, - [76] = {.lex_state = 245}, - [77] = {.lex_state = 245}, - [78] = {.lex_state = 245}, - [79] = {.lex_state = 245}, - [80] = {.lex_state = 245}, - [81] = {.lex_state = 245}, - [82] = {.lex_state = 245}, - [83] = {.lex_state = 246}, - [84] = {.lex_state = 246}, - [85] = {.lex_state = 246}, - [86] = {.lex_state = 246}, - [87] = {.lex_state = 5}, - [88] = {.lex_state = 245}, - [89] = {.lex_state = 245}, - [90] = {.lex_state = 5}, + [68] = {.lex_state = 247}, + [69] = {.lex_state = 247}, + [70] = {.lex_state = 247}, + [71] = {.lex_state = 247}, + [72] = {.lex_state = 247}, + [73] = {.lex_state = 247}, + [74] = {.lex_state = 247}, + [75] = {.lex_state = 247}, + [76] = {.lex_state = 247}, + [77] = {.lex_state = 247}, + [78] = {.lex_state = 247}, + [79] = {.lex_state = 247}, + [80] = {.lex_state = 247}, + [81] = {.lex_state = 247}, + [82] = {.lex_state = 247}, + [83] = {.lex_state = 247}, + [84] = {.lex_state = 248}, + [85] = {.lex_state = 248}, + [86] = {.lex_state = 248}, + [87] = {.lex_state = 248}, + [88] = {.lex_state = 5}, + [89] = {.lex_state = 5}, + [90] = {.lex_state = 247}, [91] = {.lex_state = 5}, [92] = {.lex_state = 5}, [93] = {.lex_state = 5}, - [94] = {.lex_state = 245}, - [95] = {.lex_state = 5}, + [94] = {.lex_state = 5}, + [95] = {.lex_state = 247}, [96] = {.lex_state = 5}, [97] = {.lex_state = 5}, [98] = {.lex_state = 5}, [99] = {.lex_state = 5}, [100] = {.lex_state = 5}, [101] = {.lex_state = 5}, - [102] = {.lex_state = 5}, + [102] = {.lex_state = 247}, [103] = {.lex_state = 5}, [104] = {.lex_state = 5}, [105] = {.lex_state = 5}, @@ -8096,19 +8181,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [115] = {.lex_state = 5}, [116] = {.lex_state = 5}, [117] = {.lex_state = 5}, - [118] = {.lex_state = 6}, - [119] = {.lex_state = 6}, + [118] = {.lex_state = 5}, + [119] = {.lex_state = 5}, [120] = {.lex_state = 5}, [121] = {.lex_state = 6}, - [122] = {.lex_state = 6}, - [123] = {.lex_state = 5}, - [124] = {.lex_state = 5}, + [122] = {.lex_state = 5}, + [123] = {.lex_state = 6}, + [124] = {.lex_state = 6}, [125] = {.lex_state = 6}, [126] = {.lex_state = 6}, - [127] = {.lex_state = 5}, + [127] = {.lex_state = 6}, [128] = {.lex_state = 6}, - [129] = {.lex_state = 6}, - [130] = {.lex_state = 5}, + [129] = {.lex_state = 5}, + [130] = {.lex_state = 6}, [131] = {.lex_state = 5}, [132] = {.lex_state = 5}, [133] = {.lex_state = 5}, @@ -8117,10 +8202,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [136] = {.lex_state = 5}, [137] = {.lex_state = 5}, [138] = {.lex_state = 5}, - [139] = {.lex_state = 7}, + [139] = {.lex_state = 5}, [140] = {.lex_state = 7}, [141] = {.lex_state = 7}, - [142] = {.lex_state = 5}, + [142] = {.lex_state = 7}, [143] = {.lex_state = 5}, [144] = {.lex_state = 5}, [145] = {.lex_state = 5}, @@ -8199,131 +8284,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [218] = {.lex_state = 5}, [219] = {.lex_state = 5}, [220] = {.lex_state = 5}, - [221] = {.lex_state = 10}, - [222] = {.lex_state = 10}, - [223] = {.lex_state = 10}, - [224] = {.lex_state = 10}, + [221] = {.lex_state = 5}, + [222] = {.lex_state = 5}, + [223] = {.lex_state = 5}, + [224] = {.lex_state = 5}, [225] = {.lex_state = 10}, [226] = {.lex_state = 10}, [227] = {.lex_state = 10}, - [228] = {.lex_state = 16}, - [229] = {.lex_state = 11}, + [228] = {.lex_state = 10}, + [229] = {.lex_state = 10}, [230] = {.lex_state = 10}, - [231] = {.lex_state = 16}, + [231] = {.lex_state = 10}, [232] = {.lex_state = 10}, - [233] = {.lex_state = 247}, - [234] = {.lex_state = 10}, - [235] = {.lex_state = 247}, - [236] = {.lex_state = 16}, - [237] = {.lex_state = 11}, - [238] = {.lex_state = 11}, - [239] = {.lex_state = 11}, + [233] = {.lex_state = 10}, + [234] = {.lex_state = 249}, + [235] = {.lex_state = 10}, + [236] = {.lex_state = 249}, + [237] = {.lex_state = 16}, + [238] = {.lex_state = 249}, + [239] = {.lex_state = 10}, [240] = {.lex_state = 10}, - [241] = {.lex_state = 16}, - [242] = {.lex_state = 247}, - [243] = {.lex_state = 10}, - [244] = {.lex_state = 12}, + [241] = {.lex_state = 11}, + [242] = {.lex_state = 11}, + [243] = {.lex_state = 11}, + [244] = {.lex_state = 11}, [245] = {.lex_state = 16}, - [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 = 12}, - [253] = {.lex_state = 12}, + [246] = {.lex_state = 16}, + [247] = {.lex_state = 16}, + [248] = {.lex_state = 249}, + [249] = {.lex_state = 249}, + [250] = {.lex_state = 249}, + [251] = {.lex_state = 249}, + [252] = {.lex_state = 249}, + [253] = {.lex_state = 249}, [254] = {.lex_state = 12}, [255] = {.lex_state = 12}, - [256] = {.lex_state = 12}, + [256] = {.lex_state = 249}, [257] = {.lex_state = 12}, - [258] = {.lex_state = 247}, - [259] = {.lex_state = 247}, - [260] = {.lex_state = 247}, - [261] = {.lex_state = 247}, - [262] = {.lex_state = 247}, - [263] = {.lex_state = 247}, - [264] = {.lex_state = 247}, - [265] = {.lex_state = 247}, - [266] = {.lex_state = 247}, - [267] = {.lex_state = 247}, - [268] = {.lex_state = 247}, - [269] = {.lex_state = 247}, - [270] = {.lex_state = 247}, - [271] = {.lex_state = 247}, - [272] = {.lex_state = 247}, - [273] = {.lex_state = 247}, - [274] = {.lex_state = 247}, - [275] = {.lex_state = 247}, - [276] = {.lex_state = 247}, - [277] = {.lex_state = 247}, - [278] = {.lex_state = 247}, - [279] = {.lex_state = 247}, - [280] = {.lex_state = 247}, - [281] = {.lex_state = 247}, - [282] = {.lex_state = 247}, - [283] = {.lex_state = 247}, - [284] = {.lex_state = 247}, - [285] = {.lex_state = 247}, - [286] = {.lex_state = 247}, - [287] = {.lex_state = 247}, - [288] = {.lex_state = 247}, - [289] = {.lex_state = 247}, - [290] = {.lex_state = 247}, - [291] = {.lex_state = 247}, - [292] = {.lex_state = 247}, - [293] = {.lex_state = 247}, - [294] = {.lex_state = 247}, - [295] = {.lex_state = 247}, - [296] = {.lex_state = 247}, - [297] = {.lex_state = 247}, - [298] = {.lex_state = 247}, - [299] = {.lex_state = 247}, - [300] = {.lex_state = 247}, - [301] = {.lex_state = 247}, - [302] = {.lex_state = 247}, - [303] = {.lex_state = 247}, - [304] = {.lex_state = 247}, - [305] = {.lex_state = 247}, - [306] = {.lex_state = 247}, - [307] = {.lex_state = 247}, - [308] = {.lex_state = 247}, - [309] = {.lex_state = 247}, - [310] = {.lex_state = 247}, - [311] = {.lex_state = 247}, - [312] = {.lex_state = 247}, - [313] = {.lex_state = 247}, - [314] = {.lex_state = 247}, - [315] = {.lex_state = 247}, - [316] = {.lex_state = 247}, - [317] = {.lex_state = 247}, - [318] = {.lex_state = 247}, - [319] = {.lex_state = 247}, - [320] = {.lex_state = 247}, - [321] = {.lex_state = 247}, - [322] = {.lex_state = 247}, - [323] = {.lex_state = 247}, - [324] = {.lex_state = 247}, - [325] = {.lex_state = 247}, - [326] = {.lex_state = 247}, - [327] = {.lex_state = 247}, - [328] = {.lex_state = 247}, - [329] = {.lex_state = 247}, - [330] = {.lex_state = 247}, - [331] = {.lex_state = 247}, - [332] = {.lex_state = 247}, - [333] = {.lex_state = 247}, - [334] = {.lex_state = 247}, - [335] = {.lex_state = 247}, - [336] = {.lex_state = 247}, - [337] = {.lex_state = 15}, - [338] = {.lex_state = 16}, - [339] = {.lex_state = 15}, - [340] = {.lex_state = 16}, - [341] = {.lex_state = 15}, - [342] = {.lex_state = 15}, - [343] = {.lex_state = 15}, + [258] = {.lex_state = 12}, + [259] = {.lex_state = 249}, + [260] = {.lex_state = 249}, + [261] = {.lex_state = 249}, + [262] = {.lex_state = 249}, + [263] = {.lex_state = 12}, + [264] = {.lex_state = 12}, + [265] = {.lex_state = 249}, + [266] = {.lex_state = 249}, + [267] = {.lex_state = 249}, + [268] = {.lex_state = 249}, + [269] = {.lex_state = 249}, + [270] = {.lex_state = 249}, + [271] = {.lex_state = 249}, + [272] = {.lex_state = 249}, + [273] = {.lex_state = 249}, + [274] = {.lex_state = 249}, + [275] = {.lex_state = 249}, + [276] = {.lex_state = 249}, + [277] = {.lex_state = 249}, + [278] = {.lex_state = 249}, + [279] = {.lex_state = 249}, + [280] = {.lex_state = 249}, + [281] = {.lex_state = 249}, + [282] = {.lex_state = 249}, + [283] = {.lex_state = 249}, + [284] = {.lex_state = 249}, + [285] = {.lex_state = 249}, + [286] = {.lex_state = 12}, + [287] = {.lex_state = 249}, + [288] = {.lex_state = 249}, + [289] = {.lex_state = 249}, + [290] = {.lex_state = 249}, + [291] = {.lex_state = 249}, + [292] = {.lex_state = 249}, + [293] = {.lex_state = 249}, + [294] = {.lex_state = 12}, + [295] = {.lex_state = 249}, + [296] = {.lex_state = 249}, + [297] = {.lex_state = 12}, + [298] = {.lex_state = 12}, + [299] = {.lex_state = 249}, + [300] = {.lex_state = 249}, + [301] = {.lex_state = 249}, + [302] = {.lex_state = 249}, + [303] = {.lex_state = 249}, + [304] = {.lex_state = 12}, + [305] = {.lex_state = 12}, + [306] = {.lex_state = 249}, + [307] = {.lex_state = 249}, + [308] = {.lex_state = 249}, + [309] = {.lex_state = 249}, + [310] = {.lex_state = 249}, + [311] = {.lex_state = 249}, + [312] = {.lex_state = 249}, + [313] = {.lex_state = 249}, + [314] = {.lex_state = 249}, + [315] = {.lex_state = 249}, + [316] = {.lex_state = 12}, + [317] = {.lex_state = 249}, + [318] = {.lex_state = 249}, + [319] = {.lex_state = 249}, + [320] = {.lex_state = 16}, + [321] = {.lex_state = 249}, + [322] = {.lex_state = 249}, + [323] = {.lex_state = 249}, + [324] = {.lex_state = 249}, + [325] = {.lex_state = 249}, + [326] = {.lex_state = 249}, + [327] = {.lex_state = 249}, + [328] = {.lex_state = 249}, + [329] = {.lex_state = 249}, + [330] = {.lex_state = 249}, + [331] = {.lex_state = 249}, + [332] = {.lex_state = 249}, + [333] = {.lex_state = 249}, + [334] = {.lex_state = 249}, + [335] = {.lex_state = 249}, + [336] = {.lex_state = 249}, + [337] = {.lex_state = 249}, + [338] = {.lex_state = 249}, + [339] = {.lex_state = 12}, + [340] = {.lex_state = 249}, + [341] = {.lex_state = 249}, + [342] = {.lex_state = 249}, + [343] = {.lex_state = 16}, [344] = {.lex_state = 15}, - [345] = {.lex_state = 15}, + [345] = {.lex_state = 16}, [346] = {.lex_state = 15}, [347] = {.lex_state = 15}, [348] = {.lex_state = 15}, @@ -8351,7 +8436,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [370] = {.lex_state = 15}, [371] = {.lex_state = 15}, [372] = {.lex_state = 15}, - [373] = {.lex_state = 15}, + [373] = {.lex_state = 5}, [374] = {.lex_state = 15}, [375] = {.lex_state = 15}, [376] = {.lex_state = 15}, @@ -8363,7 +8448,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [382] = {.lex_state = 15}, [383] = {.lex_state = 15}, [384] = {.lex_state = 15}, - [385] = {.lex_state = 5}, + [385] = {.lex_state = 15}, [386] = {.lex_state = 15}, [387] = {.lex_state = 15}, [388] = {.lex_state = 15}, @@ -8372,56 +8457,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [391] = {.lex_state = 15}, [392] = {.lex_state = 15}, [393] = {.lex_state = 15}, - [394] = {.lex_state = 17}, - [395] = {.lex_state = 17}, - [396] = {.lex_state = 17}, - [397] = {.lex_state = 17}, - [398] = {.lex_state = 17}, - [399] = {.lex_state = 17}, - [400] = {.lex_state = 5}, - [401] = {.lex_state = 17}, - [402] = {.lex_state = 17}, + [394] = {.lex_state = 15}, + [395] = {.lex_state = 15}, + [396] = {.lex_state = 15}, + [397] = {.lex_state = 15}, + [398] = {.lex_state = 15}, + [399] = {.lex_state = 15}, + [400] = {.lex_state = 15}, + [401] = {.lex_state = 15}, + [402] = {.lex_state = 15}, [403] = {.lex_state = 17}, [404] = {.lex_state = 17}, - [405] = {.lex_state = 5}, - [406] = {.lex_state = 4}, - [407] = {.lex_state = 4}, - [408] = {.lex_state = 2}, - [409] = {.lex_state = 4}, - [410] = {.lex_state = 4}, - [411] = {.lex_state = 4}, - [412] = {.lex_state = 4}, - [413] = {.lex_state = 4}, - [414] = {.lex_state = 2}, + [405] = {.lex_state = 17}, + [406] = {.lex_state = 17}, + [407] = {.lex_state = 17}, + [408] = {.lex_state = 17}, + [409] = {.lex_state = 5}, + [410] = {.lex_state = 17}, + [411] = {.lex_state = 17}, + [412] = {.lex_state = 17}, + [413] = {.lex_state = 17}, + [414] = {.lex_state = 5}, [415] = {.lex_state = 4}, - [416] = {.lex_state = 2}, - [417] = {.lex_state = 2}, - [418] = {.lex_state = 2}, - [419] = {.lex_state = 2}, - [420] = {.lex_state = 56}, + [416] = {.lex_state = 4}, + [417] = {.lex_state = 4}, + [418] = {.lex_state = 4}, + [419] = {.lex_state = 4}, + [420] = {.lex_state = 2}, [421] = {.lex_state = 4}, - [422] = {.lex_state = 2}, - [423] = {.lex_state = 2}, - [424] = {.lex_state = 4}, + [422] = {.lex_state = 4}, + [423] = {.lex_state = 4}, + [424] = {.lex_state = 2}, [425] = {.lex_state = 2}, [426] = {.lex_state = 2}, [427] = {.lex_state = 2}, - [428] = {.lex_state = 2}, + [428] = {.lex_state = 56}, [429] = {.lex_state = 2}, - [430] = {.lex_state = 4}, - [431] = {.lex_state = 2}, + [430] = {.lex_state = 56}, + [431] = {.lex_state = 4}, [432] = {.lex_state = 2}, - [433] = {.lex_state = 56}, + [433] = {.lex_state = 2}, [434] = {.lex_state = 2}, - [435] = {.lex_state = 56}, + [435] = {.lex_state = 2}, [436] = {.lex_state = 2}, - [437] = {.lex_state = 56}, - [438] = {.lex_state = 2}, + [437] = {.lex_state = 4}, + [438] = {.lex_state = 56}, [439] = {.lex_state = 2}, - [440] = {.lex_state = 2}, + [440] = {.lex_state = 56}, [441] = {.lex_state = 2}, [442] = {.lex_state = 2}, - [443] = {.lex_state = 2}, + [443] = {.lex_state = 4}, [444] = {.lex_state = 2}, [445] = {.lex_state = 2}, [446] = {.lex_state = 2}, @@ -8465,19 +8550,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [484] = {.lex_state = 2}, [485] = {.lex_state = 2}, [486] = {.lex_state = 2}, - [487] = {.lex_state = 10}, - [488] = {.lex_state = 10}, - [489] = {.lex_state = 10}, - [490] = {.lex_state = 10}, - [491] = {.lex_state = 10}, - [492] = {.lex_state = 3}, + [487] = {.lex_state = 2}, + [488] = {.lex_state = 2}, + [489] = {.lex_state = 2}, + [490] = {.lex_state = 2}, + [491] = {.lex_state = 2}, + [492] = {.lex_state = 2}, [493] = {.lex_state = 2}, - [494] = {.lex_state = 10}, - [495] = {.lex_state = 10}, + [494] = {.lex_state = 2}, + [495] = {.lex_state = 2}, [496] = {.lex_state = 10}, [497] = {.lex_state = 10}, [498] = {.lex_state = 10}, - [499] = {.lex_state = 10}, + [499] = {.lex_state = 2}, [500] = {.lex_state = 10}, [501] = {.lex_state = 10}, [502] = {.lex_state = 10}, @@ -8493,8 +8578,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [512] = {.lex_state = 10}, [513] = {.lex_state = 10}, [514] = {.lex_state = 10}, - [515] = {.lex_state = 10}, - [516] = {.lex_state = 15}, + [515] = {.lex_state = 3}, + [516] = {.lex_state = 10}, [517] = {.lex_state = 10}, [518] = {.lex_state = 10}, [519] = {.lex_state = 10}, @@ -8506,13 +8591,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [525] = {.lex_state = 10}, [526] = {.lex_state = 10}, [527] = {.lex_state = 10}, - [528] = {.lex_state = 2}, + [528] = {.lex_state = 10}, [529] = {.lex_state = 10}, [530] = {.lex_state = 10}, [531] = {.lex_state = 10}, [532] = {.lex_state = 10}, [533] = {.lex_state = 10}, - [534] = {.lex_state = 2}, + [534] = {.lex_state = 10}, [535] = {.lex_state = 10}, [536] = {.lex_state = 10}, [537] = {.lex_state = 10}, @@ -8520,7 +8605,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [539] = {.lex_state = 10}, [540] = {.lex_state = 10}, [541] = {.lex_state = 10}, - [542] = {.lex_state = 10}, + [542] = {.lex_state = 2}, [543] = {.lex_state = 10}, [544] = {.lex_state = 2}, [545] = {.lex_state = 10}, @@ -8529,7 +8614,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [548] = {.lex_state = 10}, [549] = {.lex_state = 10}, [550] = {.lex_state = 10}, - [551] = {.lex_state = 10}, + [551] = {.lex_state = 2}, [552] = {.lex_state = 10}, [553] = {.lex_state = 10}, [554] = {.lex_state = 10}, @@ -8549,222 +8634,222 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [568] = {.lex_state = 10}, [569] = {.lex_state = 10}, [570] = {.lex_state = 10}, - [571] = {.lex_state = 2}, - [572] = {.lex_state = 55}, - [573] = {.lex_state = 3}, - [574] = {.lex_state = 2}, - [575] = {.lex_state = 2}, - [576] = {.lex_state = 3}, - [577] = {.lex_state = 2}, - [578] = {.lex_state = 3}, - [579] = {.lex_state = 20}, - [580] = {.lex_state = 20}, - [581] = {.lex_state = 2}, + [571] = {.lex_state = 10}, + [572] = {.lex_state = 10}, + [573] = {.lex_state = 10}, + [574] = {.lex_state = 10}, + [575] = {.lex_state = 10}, + [576] = {.lex_state = 10}, + [577] = {.lex_state = 10}, + [578] = {.lex_state = 15}, + [579] = {.lex_state = 10}, + [580] = {.lex_state = 10}, + [581] = {.lex_state = 55}, [582] = {.lex_state = 20}, [583] = {.lex_state = 20}, - [584] = {.lex_state = 20}, + [584] = {.lex_state = 3}, [585] = {.lex_state = 55}, [586] = {.lex_state = 20}, - [587] = {.lex_state = 20}, - [588] = {.lex_state = 2}, + [587] = {.lex_state = 2}, + [588] = {.lex_state = 20}, [589] = {.lex_state = 2}, - [590] = {.lex_state = 3}, - [591] = {.lex_state = 55}, + [590] = {.lex_state = 20}, + [591] = {.lex_state = 2}, [592] = {.lex_state = 2}, - [593] = {.lex_state = 55}, - [594] = {.lex_state = 15}, - [595] = {.lex_state = 55}, - [596] = {.lex_state = 3}, - [597] = {.lex_state = 55}, - [598] = {.lex_state = 55}, - [599] = {.lex_state = 55}, + [593] = {.lex_state = 3}, + [594] = {.lex_state = 3}, + [595] = {.lex_state = 20}, + [596] = {.lex_state = 20}, + [597] = {.lex_state = 2}, + [598] = {.lex_state = 2}, + [599] = {.lex_state = 3}, [600] = {.lex_state = 2}, [601] = {.lex_state = 55}, - [602] = {.lex_state = 55}, + [602] = {.lex_state = 3}, [603] = {.lex_state = 55}, [604] = {.lex_state = 2}, - [605] = {.lex_state = 2}, - [606] = {.lex_state = 55}, + [605] = {.lex_state = 55}, + [606] = {.lex_state = 20}, [607] = {.lex_state = 55}, - [608] = {.lex_state = 55}, + [608] = {.lex_state = 2}, [609] = {.lex_state = 55}, - [610] = {.lex_state = 15}, - [611] = {.lex_state = 55}, - [612] = {.lex_state = 2}, + [610] = {.lex_state = 2}, + [611] = {.lex_state = 2}, + [612] = {.lex_state = 55}, [613] = {.lex_state = 55}, - [614] = {.lex_state = 3}, - [615] = {.lex_state = 55}, + [614] = {.lex_state = 55}, + [615] = {.lex_state = 2}, [616] = {.lex_state = 2}, [617] = {.lex_state = 55}, - [618] = {.lex_state = 3}, - [619] = {.lex_state = 55}, - [620] = {.lex_state = 55}, - [621] = {.lex_state = 2}, - [622] = {.lex_state = 2}, + [618] = {.lex_state = 2}, + [619] = {.lex_state = 2}, + [620] = {.lex_state = 2}, + [621] = {.lex_state = 55}, + [622] = {.lex_state = 55}, [623] = {.lex_state = 2}, - [624] = {.lex_state = 2}, - [625] = {.lex_state = 2}, + [624] = {.lex_state = 55}, + [625] = {.lex_state = 55}, [626] = {.lex_state = 2}, - [627] = {.lex_state = 2}, + [627] = {.lex_state = 20}, [628] = {.lex_state = 55}, - [629] = {.lex_state = 55}, - [630] = {.lex_state = 55}, + [629] = {.lex_state = 2}, + [630] = {.lex_state = 2}, [631] = {.lex_state = 2}, - [632] = {.lex_state = 2}, - [633] = {.lex_state = 2}, - [634] = {.lex_state = 2}, + [632] = {.lex_state = 55}, + [633] = {.lex_state = 3}, + [634] = {.lex_state = 55}, [635] = {.lex_state = 2}, - [636] = {.lex_state = 20}, + [636] = {.lex_state = 55}, [637] = {.lex_state = 2}, - [638] = {.lex_state = 2}, - [639] = {.lex_state = 55}, + [638] = {.lex_state = 16}, + [639] = {.lex_state = 2}, [640] = {.lex_state = 55}, [641] = {.lex_state = 2}, - [642] = {.lex_state = 14}, - [643] = {.lex_state = 2}, - [644] = {.lex_state = 2}, + [642] = {.lex_state = 2}, + [643] = {.lex_state = 3}, + [644] = {.lex_state = 55}, [645] = {.lex_state = 3}, - [646] = {.lex_state = 3}, - [647] = {.lex_state = 2}, + [646] = {.lex_state = 15}, + [647] = {.lex_state = 55}, [648] = {.lex_state = 55}, - [649] = {.lex_state = 55}, + [649] = {.lex_state = 20}, [650] = {.lex_state = 55}, - [651] = {.lex_state = 20}, + [651] = {.lex_state = 55}, [652] = {.lex_state = 55}, - [653] = {.lex_state = 2}, + [653] = {.lex_state = 55}, [654] = {.lex_state = 2}, [655] = {.lex_state = 55}, [656] = {.lex_state = 55}, [657] = {.lex_state = 2}, [658] = {.lex_state = 2}, [659] = {.lex_state = 2}, - [660] = {.lex_state = 2}, + [660] = {.lex_state = 55}, [661] = {.lex_state = 2}, - [662] = {.lex_state = 20}, - [663] = {.lex_state = 2}, - [664] = {.lex_state = 3}, - [665] = {.lex_state = 3}, + [662] = {.lex_state = 2}, + [663] = {.lex_state = 55}, + [664] = {.lex_state = 55}, + [665] = {.lex_state = 2}, [666] = {.lex_state = 55}, - [667] = {.lex_state = 3}, - [668] = {.lex_state = 2}, - [669] = {.lex_state = 20}, - [670] = {.lex_state = 3}, - [671] = {.lex_state = 55}, + [667] = {.lex_state = 2}, + [668] = {.lex_state = 3}, + [669] = {.lex_state = 2}, + [670] = {.lex_state = 20}, + [671] = {.lex_state = 2}, [672] = {.lex_state = 3}, [673] = {.lex_state = 3}, - [674] = {.lex_state = 55}, + [674] = {.lex_state = 2}, [675] = {.lex_state = 2}, - [676] = {.lex_state = 2}, + [676] = {.lex_state = 55}, [677] = {.lex_state = 2}, [678] = {.lex_state = 2}, - [679] = {.lex_state = 2}, - [680] = {.lex_state = 55}, - [681] = {.lex_state = 55}, - [682] = {.lex_state = 2}, + [679] = {.lex_state = 55}, + [680] = {.lex_state = 3}, + [681] = {.lex_state = 2}, + [682] = {.lex_state = 3}, [683] = {.lex_state = 2}, - [684] = {.lex_state = 55}, - [685] = {.lex_state = 2}, - [686] = {.lex_state = 16}, + [684] = {.lex_state = 2}, + [685] = {.lex_state = 55}, + [686] = {.lex_state = 2}, [687] = {.lex_state = 2}, - [688] = {.lex_state = 55}, - [689] = {.lex_state = 2}, - [690] = {.lex_state = 2}, + [688] = {.lex_state = 2}, + [689] = {.lex_state = 55}, + [690] = {.lex_state = 55}, [691] = {.lex_state = 2}, [692] = {.lex_state = 55}, - [693] = {.lex_state = 55}, + [693] = {.lex_state = 3}, [694] = {.lex_state = 2}, [695] = {.lex_state = 2}, - [696] = {.lex_state = 3}, - [697] = {.lex_state = 2}, + [696] = {.lex_state = 15}, + [697] = {.lex_state = 55}, [698] = {.lex_state = 2}, [699] = {.lex_state = 2}, [700] = {.lex_state = 2}, [701] = {.lex_state = 2}, - [702] = {.lex_state = 2}, - [703] = {.lex_state = 2}, - [704] = {.lex_state = 14}, - [705] = {.lex_state = 2}, - [706] = {.lex_state = 2}, - [707] = {.lex_state = 3}, - [708] = {.lex_state = 2}, - [709] = {.lex_state = 15}, - [710] = {.lex_state = 2}, + [702] = {.lex_state = 55}, + [703] = {.lex_state = 55}, + [704] = {.lex_state = 2}, + [705] = {.lex_state = 3}, + [706] = {.lex_state = 55}, + [707] = {.lex_state = 2}, + [708] = {.lex_state = 14}, + [709] = {.lex_state = 2}, + [710] = {.lex_state = 3}, [711] = {.lex_state = 2}, [712] = {.lex_state = 2}, - [713] = {.lex_state = 3}, + [713] = {.lex_state = 2}, [714] = {.lex_state = 2}, [715] = {.lex_state = 2}, [716] = {.lex_state = 2}, - [717] = {.lex_state = 3}, - [718] = {.lex_state = 15}, + [717] = {.lex_state = 2}, + [718] = {.lex_state = 2}, [719] = {.lex_state = 2}, [720] = {.lex_state = 2}, - [721] = {.lex_state = 2}, + [721] = {.lex_state = 3}, [722] = {.lex_state = 3}, - [723] = {.lex_state = 3}, - [724] = {.lex_state = 3}, - [725] = {.lex_state = 3}, + [723] = {.lex_state = 2}, + [724] = {.lex_state = 2}, + [725] = {.lex_state = 2}, [726] = {.lex_state = 2}, - [727] = {.lex_state = 2}, - [728] = {.lex_state = 2}, - [729] = {.lex_state = 2}, + [727] = {.lex_state = 3}, + [728] = {.lex_state = 15}, + [729] = {.lex_state = 3}, [730] = {.lex_state = 2}, - [731] = {.lex_state = 2}, - [732] = {.lex_state = 2}, - [733] = {.lex_state = 14}, + [731] = {.lex_state = 15}, + [732] = {.lex_state = 3}, + [733] = {.lex_state = 2}, [734] = {.lex_state = 2}, - [735] = {.lex_state = 2}, - [736] = {.lex_state = 14}, + [735] = {.lex_state = 3}, + [736] = {.lex_state = 3}, [737] = {.lex_state = 2}, - [738] = {.lex_state = 3}, + [738] = {.lex_state = 2}, [739] = {.lex_state = 2}, - [740] = {.lex_state = 3}, + [740] = {.lex_state = 2}, [741] = {.lex_state = 2}, [742] = {.lex_state = 2}, [743] = {.lex_state = 2}, - [744] = {.lex_state = 2}, - [745] = {.lex_state = 3}, - [746] = {.lex_state = 3}, - [747] = {.lex_state = 2}, - [748] = {.lex_state = 15}, - [749] = {.lex_state = 3}, + [744] = {.lex_state = 14}, + [745] = {.lex_state = 15}, + [746] = {.lex_state = 14}, + [747] = {.lex_state = 14}, + [748] = {.lex_state = 2}, + [749] = {.lex_state = 2}, [750] = {.lex_state = 2}, [751] = {.lex_state = 2}, [752] = {.lex_state = 3}, - [753] = {.lex_state = 2}, - [754] = {.lex_state = 3}, + [753] = {.lex_state = 3}, + [754] = {.lex_state = 2}, [755] = {.lex_state = 3}, - [756] = {.lex_state = 2}, + [756] = {.lex_state = 3}, [757] = {.lex_state = 2}, [758] = {.lex_state = 3}, [759] = {.lex_state = 3}, [760] = {.lex_state = 3}, [761] = {.lex_state = 2}, [762] = {.lex_state = 3}, - [763] = {.lex_state = 2}, - [764] = {.lex_state = 15}, - [765] = {.lex_state = 3}, + [763] = {.lex_state = 3}, + [764] = {.lex_state = 3}, + [765] = {.lex_state = 2}, [766] = {.lex_state = 3}, [767] = {.lex_state = 2}, [768] = {.lex_state = 3}, - [769] = {.lex_state = 3}, - [770] = {.lex_state = 3}, - [771] = {.lex_state = 3}, - [772] = {.lex_state = 3}, - [773] = {.lex_state = 3}, + [769] = {.lex_state = 2}, + [770] = {.lex_state = 2}, + [771] = {.lex_state = 2}, + [772] = {.lex_state = 2}, + [773] = {.lex_state = 2}, [774] = {.lex_state = 3}, - [775] = {.lex_state = 3}, + [775] = {.lex_state = 15}, [776] = {.lex_state = 3}, - [777] = {.lex_state = 3}, - [778] = {.lex_state = 3}, - [779] = {.lex_state = 3}, - [780] = {.lex_state = 3}, - [781] = {.lex_state = 3}, - [782] = {.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}, [783] = {.lex_state = 3}, - [784] = {.lex_state = 55}, + [784] = {.lex_state = 3}, [785] = {.lex_state = 3}, - [786] = {.lex_state = 15}, + [786] = {.lex_state = 3}, [787] = {.lex_state = 3}, [788] = {.lex_state = 3}, [789] = {.lex_state = 3}, @@ -8787,27 +8872,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [806] = {.lex_state = 3}, [807] = {.lex_state = 3}, [808] = {.lex_state = 3}, - [809] = {.lex_state = 3}, + [809] = {.lex_state = 55}, [810] = {.lex_state = 3}, [811] = {.lex_state = 3}, [812] = {.lex_state = 3}, [813] = {.lex_state = 3}, - [814] = {.lex_state = 55}, - [815] = {.lex_state = 55}, - [816] = {.lex_state = 55}, - [817] = {.lex_state = 55}, - [818] = {.lex_state = 55}, - [819] = {.lex_state = 55}, - [820] = {.lex_state = 55}, - [821] = {.lex_state = 20}, - [822] = {.lex_state = 20}, - [823] = {.lex_state = 55}, - [824] = {.lex_state = 55}, - [825] = {.lex_state = 55}, - [826] = {.lex_state = 55}, - [827] = {.lex_state = 55}, - [828] = {.lex_state = 55}, - [829] = {.lex_state = 55}, + [814] = {.lex_state = 3}, + [815] = {.lex_state = 3}, + [816] = {.lex_state = 3}, + [817] = {.lex_state = 3}, + [818] = {.lex_state = 3}, + [819] = {.lex_state = 3}, + [820] = {.lex_state = 3}, + [821] = {.lex_state = 3}, + [822] = {.lex_state = 3}, + [823] = {.lex_state = 3}, + [824] = {.lex_state = 3}, + [825] = {.lex_state = 3}, + [826] = {.lex_state = 3}, + [827] = {.lex_state = 3}, + [828] = {.lex_state = 15}, + [829] = {.lex_state = 3}, [830] = {.lex_state = 55}, [831] = {.lex_state = 55}, [832] = {.lex_state = 55}, @@ -8815,714 +8900,714 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [834] = {.lex_state = 55}, [835] = {.lex_state = 55}, [836] = {.lex_state = 55}, - [837] = {.lex_state = 8}, - [838] = {.lex_state = 8}, - [839] = {.lex_state = 8}, - [840] = {.lex_state = 8}, - [841] = {.lex_state = 247}, - [842] = {.lex_state = 247}, - [843] = {.lex_state = 247}, - [844] = {.lex_state = 247}, - [845] = {.lex_state = 247}, - [846] = {.lex_state = 247}, - [847] = {.lex_state = 247}, - [848] = {.lex_state = 247}, - [849] = {.lex_state = 247}, - [850] = {.lex_state = 8}, - [851] = {.lex_state = 58}, - [852] = {.lex_state = 247}, - [853] = {.lex_state = 58}, - [854] = {.lex_state = 58}, - [855] = {.lex_state = 0}, + [837] = {.lex_state = 20}, + [838] = {.lex_state = 20}, + [839] = {.lex_state = 55}, + [840] = {.lex_state = 55}, + [841] = {.lex_state = 55}, + [842] = {.lex_state = 55}, + [843] = {.lex_state = 55}, + [844] = {.lex_state = 55}, + [845] = {.lex_state = 55}, + [846] = {.lex_state = 55}, + [847] = {.lex_state = 55}, + [848] = {.lex_state = 55}, + [849] = {.lex_state = 55}, + [850] = {.lex_state = 55}, + [851] = {.lex_state = 55}, + [852] = {.lex_state = 55}, + [853] = {.lex_state = 8}, + [854] = {.lex_state = 8}, + [855] = {.lex_state = 8}, [856] = {.lex_state = 8}, - [857] = {.lex_state = 58}, - [858] = {.lex_state = 0}, + [857] = {.lex_state = 8}, + [858] = {.lex_state = 8}, [859] = {.lex_state = 8}, - [860] = {.lex_state = 9}, + [860] = {.lex_state = 8}, [861] = {.lex_state = 8}, [862] = {.lex_state = 8}, - [863] = {.lex_state = 0}, - [864] = {.lex_state = 21}, + [863] = {.lex_state = 8}, + [864] = {.lex_state = 8}, [865] = {.lex_state = 8}, - [866] = {.lex_state = 247}, - [867] = {.lex_state = 9}, - [868] = {.lex_state = 8}, - [869] = {.lex_state = 8}, - [870] = {.lex_state = 21}, + [866] = {.lex_state = 58}, + [867] = {.lex_state = 58}, + [868] = {.lex_state = 58}, + [869] = {.lex_state = 58}, + [870] = {.lex_state = 8}, [871] = {.lex_state = 8}, - [872] = {.lex_state = 9}, - [873] = {.lex_state = 9}, + [872] = {.lex_state = 8}, + [873] = {.lex_state = 8}, [874] = {.lex_state = 8}, [875] = {.lex_state = 0}, [876] = {.lex_state = 0}, [877] = {.lex_state = 8}, - [878] = {.lex_state = 21}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 22}, + [878] = {.lex_state = 8}, + [879] = {.lex_state = 8}, + [880] = {.lex_state = 9}, [881] = {.lex_state = 8}, - [882] = {.lex_state = 247}, - [883] = {.lex_state = 8}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 21}, [884] = {.lex_state = 8}, - [885] = {.lex_state = 22}, - [886] = {.lex_state = 8}, - [887] = {.lex_state = 21}, - [888] = {.lex_state = 8}, - [889] = {.lex_state = 247}, - [890] = {.lex_state = 8}, - [891] = {.lex_state = 21}, - [892] = {.lex_state = 21}, - [893] = {.lex_state = 247}, - [894] = {.lex_state = 8}, - [895] = {.lex_state = 8}, - [896] = {.lex_state = 9}, - [897] = {.lex_state = 247}, - [898] = {.lex_state = 58}, - [899] = {.lex_state = 22}, - [900] = {.lex_state = 58}, + [885] = {.lex_state = 8}, + [886] = {.lex_state = 9}, + [887] = {.lex_state = 8}, + [888] = {.lex_state = 9}, + [889] = {.lex_state = 9}, + [890] = {.lex_state = 21}, + [891] = {.lex_state = 58}, + [892] = {.lex_state = 8}, + [893] = {.lex_state = 21}, + [894] = {.lex_state = 249}, + [895] = {.lex_state = 22}, + [896] = {.lex_state = 249}, + [897] = {.lex_state = 8}, + [898] = {.lex_state = 0}, + [899] = {.lex_state = 8}, + [900] = {.lex_state = 249}, [901] = {.lex_state = 8}, - [902] = {.lex_state = 22}, - [903] = {.lex_state = 22}, - [904] = {.lex_state = 22}, - [905] = {.lex_state = 22}, - [906] = {.lex_state = 22}, - [907] = {.lex_state = 22}, - [908] = {.lex_state = 58}, - [909] = {.lex_state = 21}, - [910] = {.lex_state = 247}, - [911] = {.lex_state = 22}, - [912] = {.lex_state = 58}, - [913] = {.lex_state = 22}, - [914] = {.lex_state = 58}, - [915] = {.lex_state = 58}, + [902] = {.lex_state = 8}, + [903] = {.lex_state = 58}, + [904] = {.lex_state = 21}, + [905] = {.lex_state = 8}, + [906] = {.lex_state = 58}, + [907] = {.lex_state = 0}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 8}, + [910] = {.lex_state = 8}, + [911] = {.lex_state = 8}, + [912] = {.lex_state = 22}, + [913] = {.lex_state = 21}, + [914] = {.lex_state = 21}, + [915] = {.lex_state = 8}, [916] = {.lex_state = 58}, - [917] = {.lex_state = 58}, - [918] = {.lex_state = 58}, + [917] = {.lex_state = 9}, + [918] = {.lex_state = 22}, [919] = {.lex_state = 22}, - [920] = {.lex_state = 22}, - [921] = {.lex_state = 247}, - [922] = {.lex_state = 58}, + [920] = {.lex_state = 58}, + [921] = {.lex_state = 58}, + [922] = {.lex_state = 22}, [923] = {.lex_state = 58}, - [924] = {.lex_state = 247}, + [924] = {.lex_state = 58}, [925] = {.lex_state = 58}, - [926] = {.lex_state = 247}, + [926] = {.lex_state = 58}, [927] = {.lex_state = 58}, [928] = {.lex_state = 22}, [929] = {.lex_state = 58}, - [930] = {.lex_state = 247}, + [930] = {.lex_state = 58}, [931] = {.lex_state = 58}, [932] = {.lex_state = 58}, - [933] = {.lex_state = 58}, - [934] = {.lex_state = 58}, + [933] = {.lex_state = 22}, + [934] = {.lex_state = 21}, [935] = {.lex_state = 58}, [936] = {.lex_state = 22}, [937] = {.lex_state = 58}, - [938] = {.lex_state = 22}, + [938] = {.lex_state = 58}, [939] = {.lex_state = 58}, - [940] = {.lex_state = 22}, + [940] = {.lex_state = 58}, [941] = {.lex_state = 58}, [942] = {.lex_state = 58}, - [943] = {.lex_state = 22}, - [944] = {.lex_state = 58}, - [945] = {.lex_state = 58}, + [943] = {.lex_state = 58}, + [944] = {.lex_state = 8}, + [945] = {.lex_state = 249}, [946] = {.lex_state = 58}, - [947] = {.lex_state = 22}, - [948] = {.lex_state = 22}, - [949] = {.lex_state = 247}, - [950] = {.lex_state = 58}, + [947] = {.lex_state = 58}, + [948] = {.lex_state = 58}, + [949] = {.lex_state = 22}, + [950] = {.lex_state = 22}, [951] = {.lex_state = 58}, [952] = {.lex_state = 58}, [953] = {.lex_state = 58}, [954] = {.lex_state = 58}, [955] = {.lex_state = 58}, [956] = {.lex_state = 58}, - [957] = {.lex_state = 247}, - [958] = {.lex_state = 247}, - [959] = {.lex_state = 247}, - [960] = {.lex_state = 247}, + [957] = {.lex_state = 58}, + [958] = {.lex_state = 22}, + [959] = {.lex_state = 249}, + [960] = {.lex_state = 22}, [961] = {.lex_state = 22}, - [962] = {.lex_state = 9}, + [962] = {.lex_state = 22}, [963] = {.lex_state = 22}, - [964] = {.lex_state = 59}, - [965] = {.lex_state = 247}, - [966] = {.lex_state = 247}, - [967] = {.lex_state = 59}, - [968] = {.lex_state = 247}, - [969] = {.lex_state = 59}, - [970] = {.lex_state = 22}, + [964] = {.lex_state = 249}, + [965] = {.lex_state = 249}, + [966] = {.lex_state = 22}, + [967] = {.lex_state = 249}, + [968] = {.lex_state = 22}, + [969] = {.lex_state = 22}, + [970] = {.lex_state = 249}, [971] = {.lex_state = 22}, - [972] = {.lex_state = 9}, - [973] = {.lex_state = 8}, - [974] = {.lex_state = 247}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 247}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 247}, - [982] = {.lex_state = 9}, - [983] = {.lex_state = 9}, - [984] = {.lex_state = 247}, - [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 9}, - [988] = {.lex_state = 9}, - [989] = {.lex_state = 0}, - [990] = {.lex_state = 247}, - [991] = {.lex_state = 8}, - [992] = {.lex_state = 247}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 60}, - [995] = {.lex_state = 22}, - [996] = {.lex_state = 60}, + [972] = {.lex_state = 22}, + [973] = {.lex_state = 249}, + [974] = {.lex_state = 249}, + [975] = {.lex_state = 249}, + [976] = {.lex_state = 22}, + [977] = {.lex_state = 249}, + [978] = {.lex_state = 22}, + [979] = {.lex_state = 22}, + [980] = {.lex_state = 22}, + [981] = {.lex_state = 249}, + [982] = {.lex_state = 249}, + [983] = {.lex_state = 59}, + [984] = {.lex_state = 249}, + [985] = {.lex_state = 9}, + [986] = {.lex_state = 59}, + [987] = {.lex_state = 59}, + [988] = {.lex_state = 249}, + [989] = {.lex_state = 9}, + [990] = {.lex_state = 0}, + [991] = {.lex_state = 249}, + [992] = {.lex_state = 9}, + [993] = {.lex_state = 249}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 0}, + [996] = {.lex_state = 249}, [997] = {.lex_state = 0}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 5}, - [1000] = {.lex_state = 247}, - [1001] = {.lex_state = 60}, - [1002] = {.lex_state = 8}, - [1003] = {.lex_state = 8}, - [1004] = {.lex_state = 8}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 21}, - [1007] = {.lex_state = 5}, - [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 5}, - [1010] = {.lex_state = 8}, - [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 8}, - [1013] = {.lex_state = 247}, - [1014] = {.lex_state = 58}, - [1015] = {.lex_state = 21}, - [1016] = {.lex_state = 60}, - [1017] = {.lex_state = 247}, - [1018] = {.lex_state = 247}, + [998] = {.lex_state = 8}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 249}, + [1002] = {.lex_state = 9}, + [1003] = {.lex_state = 0}, + [1004] = {.lex_state = 249}, + [1005] = {.lex_state = 8}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 9}, + [1008] = {.lex_state = 9}, + [1009] = {.lex_state = 249}, + [1010] = {.lex_state = 0}, + [1011] = {.lex_state = 60}, + [1012] = {.lex_state = 249}, + [1013] = {.lex_state = 8}, + [1014] = {.lex_state = 60}, + [1015] = {.lex_state = 8}, + [1016] = {.lex_state = 8}, + [1017] = {.lex_state = 8}, + [1018] = {.lex_state = 60}, [1019] = {.lex_state = 5}, - [1020] = {.lex_state = 4}, - [1021] = {.lex_state = 5}, - [1022] = {.lex_state = 247}, + [1020] = {.lex_state = 249}, + [1021] = {.lex_state = 0}, + [1022] = {.lex_state = 8}, [1023] = {.lex_state = 8}, [1024] = {.lex_state = 8}, - [1025] = {.lex_state = 8}, - [1026] = {.lex_state = 8}, - [1027] = {.lex_state = 5}, - [1028] = {.lex_state = 5}, - [1029] = {.lex_state = 8}, + [1025] = {.lex_state = 22}, + [1026] = {.lex_state = 5}, + [1027] = {.lex_state = 60}, + [1028] = {.lex_state = 58}, + [1029] = {.lex_state = 249}, [1030] = {.lex_state = 8}, - [1031] = {.lex_state = 5}, - [1032] = {.lex_state = 59}, - [1033] = {.lex_state = 8}, + [1031] = {.lex_state = 249}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 249}, [1034] = {.lex_state = 8}, - [1035] = {.lex_state = 247}, - [1036] = {.lex_state = 8}, - [1037] = {.lex_state = 4}, - [1038] = {.lex_state = 247}, - [1039] = {.lex_state = 8}, - [1040] = {.lex_state = 58}, - [1041] = {.lex_state = 247}, - [1042] = {.lex_state = 247}, - [1043] = {.lex_state = 247}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 247}, - [1048] = {.lex_state = 247}, - [1049] = {.lex_state = 58}, + [1035] = {.lex_state = 0}, + [1036] = {.lex_state = 58}, + [1037] = {.lex_state = 0}, + [1038] = {.lex_state = 249}, + [1039] = {.lex_state = 5}, + [1040] = {.lex_state = 8}, + [1041] = {.lex_state = 59}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 8}, + [1044] = {.lex_state = 8}, + [1045] = {.lex_state = 21}, + [1046] = {.lex_state = 8}, + [1047] = {.lex_state = 4}, + [1048] = {.lex_state = 5}, + [1049] = {.lex_state = 4}, [1050] = {.lex_state = 58}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 247}, - [1053] = {.lex_state = 58}, - [1054] = {.lex_state = 247}, - [1055] = {.lex_state = 60}, - [1056] = {.lex_state = 58}, - [1057] = {.lex_state = 247}, - [1058] = {.lex_state = 5}, + [1051] = {.lex_state = 249}, + [1052] = {.lex_state = 8}, + [1053] = {.lex_state = 21}, + [1054] = {.lex_state = 5}, + [1055] = {.lex_state = 249}, + [1056] = {.lex_state = 5}, + [1057] = {.lex_state = 58}, + [1058] = {.lex_state = 8}, [1059] = {.lex_state = 5}, - [1060] = {.lex_state = 60}, - [1061] = {.lex_state = 59}, - [1062] = {.lex_state = 247}, - [1063] = {.lex_state = 59}, - [1064] = {.lex_state = 59}, - [1065] = {.lex_state = 58}, - [1066] = {.lex_state = 59}, - [1067] = {.lex_state = 59}, - [1068] = {.lex_state = 59}, - [1069] = {.lex_state = 59}, - [1070] = {.lex_state = 59}, - [1071] = {.lex_state = 247}, - [1072] = {.lex_state = 247}, - [1073] = {.lex_state = 247}, - [1074] = {.lex_state = 60}, - [1075] = {.lex_state = 247}, - [1076] = {.lex_state = 58}, - [1077] = {.lex_state = 59}, + [1060] = {.lex_state = 5}, + [1061] = {.lex_state = 60}, + [1062] = {.lex_state = 58}, + [1063] = {.lex_state = 249}, + [1064] = {.lex_state = 60}, + [1065] = {.lex_state = 249}, + [1066] = {.lex_state = 249}, + [1067] = {.lex_state = 60}, + [1068] = {.lex_state = 5}, + [1069] = {.lex_state = 0}, + [1070] = {.lex_state = 249}, + [1071] = {.lex_state = 60}, + [1072] = {.lex_state = 5}, + [1073] = {.lex_state = 58}, + [1074] = {.lex_state = 58}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 0}, + [1077] = {.lex_state = 249}, [1078] = {.lex_state = 60}, - [1079] = {.lex_state = 59}, - [1080] = {.lex_state = 59}, + [1079] = {.lex_state = 249}, + [1080] = {.lex_state = 249}, [1081] = {.lex_state = 60}, - [1082] = {.lex_state = 58}, - [1083] = {.lex_state = 247}, - [1084] = {.lex_state = 59}, + [1082] = {.lex_state = 60}, + [1083] = {.lex_state = 59}, + [1084] = {.lex_state = 249}, [1085] = {.lex_state = 59}, - [1086] = {.lex_state = 60}, + [1086] = {.lex_state = 0}, [1087] = {.lex_state = 59}, - [1088] = {.lex_state = 58}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 5}, - [1091] = {.lex_state = 247}, + [1088] = {.lex_state = 59}, + [1089] = {.lex_state = 58}, + [1090] = {.lex_state = 59}, + [1091] = {.lex_state = 59}, [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 59}, - [1096] = {.lex_state = 0}, + [1093] = {.lex_state = 59}, + [1094] = {.lex_state = 59}, + [1095] = {.lex_state = 249}, + [1096] = {.lex_state = 249}, [1097] = {.lex_state = 59}, - [1098] = {.lex_state = 0}, + [1098] = {.lex_state = 59}, [1099] = {.lex_state = 59}, [1100] = {.lex_state = 59}, - [1101] = {.lex_state = 58}, + [1101] = {.lex_state = 59}, [1102] = {.lex_state = 59}, - [1103] = {.lex_state = 5}, - [1104] = {.lex_state = 9}, - [1105] = {.lex_state = 59}, - [1106] = {.lex_state = 247}, - [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 5}, - [1109] = {.lex_state = 247}, - [1110] = {.lex_state = 59}, + [1103] = {.lex_state = 0}, + [1104] = {.lex_state = 249}, + [1105] = {.lex_state = 249}, + [1106] = {.lex_state = 59}, + [1107] = {.lex_state = 249}, + [1108] = {.lex_state = 0}, + [1109] = {.lex_state = 249}, + [1110] = {.lex_state = 58}, [1111] = {.lex_state = 5}, [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 59}, - [1116] = {.lex_state = 59}, + [1113] = {.lex_state = 5}, + [1114] = {.lex_state = 249}, + [1115] = {.lex_state = 0}, + [1116] = {.lex_state = 0}, [1117] = {.lex_state = 59}, [1118] = {.lex_state = 59}, [1119] = {.lex_state = 59}, [1120] = {.lex_state = 59}, - [1121] = {.lex_state = 5}, + [1121] = {.lex_state = 59}, [1122] = {.lex_state = 59}, - [1123] = {.lex_state = 247}, + [1123] = {.lex_state = 59}, [1124] = {.lex_state = 59}, - [1125] = {.lex_state = 59}, - [1126] = {.lex_state = 247}, - [1127] = {.lex_state = 59}, - [1128] = {.lex_state = 60}, + [1125] = {.lex_state = 0}, + [1126] = {.lex_state = 59}, + [1127] = {.lex_state = 58}, + [1128] = {.lex_state = 59}, [1129] = {.lex_state = 59}, [1130] = {.lex_state = 59}, [1131] = {.lex_state = 59}, - [1132] = {.lex_state = 247}, - [1133] = {.lex_state = 58}, + [1132] = {.lex_state = 249}, + [1133] = {.lex_state = 59}, [1134] = {.lex_state = 59}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 58}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 58}, - [1139] = {.lex_state = 59}, - [1140] = {.lex_state = 59}, - [1141] = {.lex_state = 247}, - [1142] = {.lex_state = 60}, - [1143] = {.lex_state = 9}, - [1144] = {.lex_state = 5}, - [1145] = {.lex_state = 247}, - [1146] = {.lex_state = 14}, - [1147] = {.lex_state = 21}, - [1148] = {.lex_state = 247}, - [1149] = {.lex_state = 0}, + [1135] = {.lex_state = 59}, + [1136] = {.lex_state = 249}, + [1137] = {.lex_state = 59}, + [1138] = {.lex_state = 249}, + [1139] = {.lex_state = 0}, + [1140] = {.lex_state = 60}, + [1141] = {.lex_state = 59}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 58}, + [1144] = {.lex_state = 59}, + [1145] = {.lex_state = 58}, + [1146] = {.lex_state = 5}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 58}, + [1149] = {.lex_state = 5}, [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, + [1151] = {.lex_state = 5}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 247}, - [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 247}, - [1157] = {.lex_state = 247}, - [1158] = {.lex_state = 0}, + [1153] = {.lex_state = 58}, + [1154] = {.lex_state = 59}, + [1155] = {.lex_state = 59}, + [1156] = {.lex_state = 59}, + [1157] = {.lex_state = 9}, + [1158] = {.lex_state = 249}, [1159] = {.lex_state = 0}, [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 247}, - [1163] = {.lex_state = 9}, + [1161] = {.lex_state = 249}, + [1162] = {.lex_state = 14}, + [1163] = {.lex_state = 5}, [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 0}, + [1165] = {.lex_state = 249}, [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 9}, + [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 9}, + [1170] = {.lex_state = 0}, [1171] = {.lex_state = 9}, - [1172] = {.lex_state = 9}, - [1173] = {.lex_state = 9}, - [1174] = {.lex_state = 247}, - [1175] = {.lex_state = 9}, - [1176] = {.lex_state = 0}, + [1172] = {.lex_state = 0}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 9}, + [1175] = {.lex_state = 0}, + [1176] = {.lex_state = 21}, [1177] = {.lex_state = 9}, [1178] = {.lex_state = 9}, - [1179] = {.lex_state = 0}, + [1179] = {.lex_state = 9}, [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 14}, + [1181] = {.lex_state = 9}, + [1182] = {.lex_state = 9}, [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 9}, + [1184] = {.lex_state = 249}, [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 9}, - [1187] = {.lex_state = 9}, - [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 14}, - [1190] = {.lex_state = 9}, - [1191] = {.lex_state = 22}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 9}, - [1195] = {.lex_state = 9}, + [1186] = {.lex_state = 0}, + [1187] = {.lex_state = 60}, + [1188] = {.lex_state = 249}, + [1189] = {.lex_state = 0}, + [1190] = {.lex_state = 0}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 9}, + [1193] = {.lex_state = 9}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 249}, [1196] = {.lex_state = 0}, [1197] = {.lex_state = 9}, - [1198] = {.lex_state = 0}, - [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 0}, + [1198] = {.lex_state = 9}, + [1199] = {.lex_state = 14}, + [1200] = {.lex_state = 249}, [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 0}, + [1202] = {.lex_state = 22}, [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0}, + [1205] = {.lex_state = 9}, + [1206] = {.lex_state = 249}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 247}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 9}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 9}, + [1212] = {.lex_state = 0}, [1213] = {.lex_state = 9}, - [1214] = {.lex_state = 247}, - [1215] = {.lex_state = 0}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 249}, [1216] = {.lex_state = 0}, [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 9}, + [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, [1220] = {.lex_state = 0}, [1221] = {.lex_state = 9}, - [1222] = {.lex_state = 247}, - [1223] = {.lex_state = 9}, - [1224] = {.lex_state = 9}, - [1225] = {.lex_state = 0}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 249}, + [1225] = {.lex_state = 249}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 247}, - [1228] = {.lex_state = 247}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 60}, - [1231] = {.lex_state = 14}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 9}, + [1235] = {.lex_state = 14}, + [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 9}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 9}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 9}, + [1241] = {.lex_state = 249}, + [1242] = {.lex_state = 249}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 249}, + [1245] = {.lex_state = 0}, [1246] = {.lex_state = 9}, - [1247] = {.lex_state = 0}, + [1247] = {.lex_state = 249}, [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 9}, - [1251] = {.lex_state = 0}, + [1249] = {.lex_state = 249}, + [1250] = {.lex_state = 249}, + [1251] = {.lex_state = 5}, [1252] = {.lex_state = 9}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 9}, + [1253] = {.lex_state = 9}, + [1254] = {.lex_state = 249}, [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 247}, - [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 247}, - [1259] = {.lex_state = 247}, - [1260] = {.lex_state = 247}, - [1261] = {.lex_state = 247}, - [1262] = {.lex_state = 247}, - [1263] = {.lex_state = 247}, + [1256] = {.lex_state = 249}, + [1257] = {.lex_state = 249}, + [1258] = {.lex_state = 9}, + [1259] = {.lex_state = 9}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 9}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 0}, [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 9}, - [1266] = {.lex_state = 247}, - [1267] = {.lex_state = 9}, + [1265] = {.lex_state = 0}, + [1266] = {.lex_state = 0}, + [1267] = {.lex_state = 14}, [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 9}, + [1269] = {.lex_state = 0}, [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 9}, - [1272] = {.lex_state = 9}, - [1273] = {.lex_state = 247}, + [1271] = {.lex_state = 0}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 0}, [1274] = {.lex_state = 0}, [1275] = {.lex_state = 9}, - [1276] = {.lex_state = 247}, - [1277] = {.lex_state = 5}, - [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, + [1276] = {.lex_state = 9}, + [1277] = {.lex_state = 249}, + [1278] = {.lex_state = 249}, + [1279] = {.lex_state = 9}, + [1280] = {.lex_state = 249}, [1281] = {.lex_state = 0}, [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 247}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 247}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, + [1283] = {.lex_state = 9}, + [1284] = {.lex_state = 9}, + [1285] = {.lex_state = 9}, + [1286] = {.lex_state = 9}, + [1287] = {.lex_state = 9}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 249}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 249}, + [1292] = {.lex_state = 9}, [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 5}, - [1295] = {.lex_state = 14}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 247}, + [1299] = {.lex_state = 0}, [1300] = {.lex_state = 0}, [1301] = {.lex_state = 0}, [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0}, + [1303] = {.lex_state = 9}, [1304] = {.lex_state = 0}, [1305] = {.lex_state = 5}, [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 0}, + [1307] = {.lex_state = 9}, [1308] = {.lex_state = 0}, [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 247}, + [1311] = {.lex_state = 9}, + [1312] = {.lex_state = 5}, + [1313] = {.lex_state = 0}, [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 247}, + [1315] = {.lex_state = 249}, + [1316] = {.lex_state = 249}, [1317] = {.lex_state = 0}, [1318] = {.lex_state = 0}, [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 14}, - [1321] = {.lex_state = 5}, - [1322] = {.lex_state = 9}, - [1323] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 0}, + [1322] = {.lex_state = 0}, + [1323] = {.lex_state = 9}, [1324] = {.lex_state = 0}, [1325] = {.lex_state = 0}, [1326] = {.lex_state = 0}, [1327] = {.lex_state = 0}, - [1328] = {.lex_state = 0}, + [1328] = {.lex_state = 249}, [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 5}, + [1330] = {.lex_state = 0}, [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 0}, + [1332] = {.lex_state = 14}, [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 0}, + [1334] = {.lex_state = 9}, [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 59}, - [1337] = {.lex_state = 247}, + [1336] = {.lex_state = 5}, + [1337] = {.lex_state = 0}, [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 247}, - [1340] = {.lex_state = 8}, - [1341] = {.lex_state = 247}, + [1339] = {.lex_state = 5}, + [1340] = {.lex_state = 9}, + [1341] = {.lex_state = 9}, [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 8}, - [1344] = {.lex_state = 247}, - [1345] = {.lex_state = 247}, + [1343] = {.lex_state = 0}, + [1344] = {.lex_state = 9}, + [1345] = {.lex_state = 0}, [1346] = {.lex_state = 0}, [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 58}, + [1348] = {.lex_state = 14}, + [1349] = {.lex_state = 0}, [1350] = {.lex_state = 0}, [1351] = {.lex_state = 59}, - [1352] = {.lex_state = 247}, - [1353] = {.lex_state = 59}, + [1352] = {.lex_state = 0}, + [1353] = {.lex_state = 0}, [1354] = {.lex_state = 0}, [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, + [1356] = {.lex_state = 8}, + [1357] = {.lex_state = 249}, + [1358] = {.lex_state = 8}, [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 58}, - [1361] = {.lex_state = 247}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 247}, - [1364] = {.lex_state = 247}, - [1365] = {.lex_state = 57}, - [1366] = {.lex_state = 247}, + [1360] = {.lex_state = 0}, + [1361] = {.lex_state = 8}, + [1362] = {.lex_state = 8}, + [1363] = {.lex_state = 249}, + [1364] = {.lex_state = 0}, + [1365] = {.lex_state = 249}, + [1366] = {.lex_state = 249}, [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 247}, - [1370] = {.lex_state = 0}, + [1368] = {.lex_state = 58}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 59}, [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 247}, + [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 8}, - [1375] = {.lex_state = 0}, + [1374] = {.lex_state = 0}, + [1375] = {.lex_state = 249}, [1376] = {.lex_state = 0}, [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 247}, - [1381] = {.lex_state = 247}, - [1382] = {.lex_state = 59}, - [1383] = {.lex_state = 247}, - [1384] = {.lex_state = 247}, - [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 247}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 59}, - [1390] = {.lex_state = 59}, - [1391] = {.lex_state = 59}, - [1392] = {.lex_state = 59}, - [1393] = {.lex_state = 59}, + [1378] = {.lex_state = 57}, + [1379] = {.lex_state = 249}, + [1380] = {.lex_state = 0}, + [1381] = {.lex_state = 249}, + [1382] = {.lex_state = 249}, + [1383] = {.lex_state = 59}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 249}, + [1386] = {.lex_state = 249}, + [1387] = {.lex_state = 0}, + [1388] = {.lex_state = 58}, + [1389] = {.lex_state = 0}, + [1390] = {.lex_state = 0}, + [1391] = {.lex_state = 0}, + [1392] = {.lex_state = 0}, + [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0}, [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 0}, + [1396] = {.lex_state = 249}, [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 0}, + [1398] = {.lex_state = 21}, [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 247}, - [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 247}, - [1404] = {.lex_state = 247}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 249}, + [1402] = {.lex_state = 59}, + [1403] = {.lex_state = 249}, + [1404] = {.lex_state = 59}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 247}, - [1407] = {.lex_state = 21}, - [1408] = {.lex_state = 0}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 249}, + [1408] = {.lex_state = 59}, [1409] = {.lex_state = 59}, - [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 59}, + [1410] = {.lex_state = 249}, + [1411] = {.lex_state = 249}, [1412] = {.lex_state = 59}, - [1413] = {.lex_state = 59}, - [1414] = {.lex_state = 59}, - [1415] = {.lex_state = 0}, + [1413] = {.lex_state = 249}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 249}, [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 59}, + [1421] = {.lex_state = 59}, + [1422] = {.lex_state = 59}, + [1423] = {.lex_state = 0}, [1424] = {.lex_state = 59}, [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 0}, + [1426] = {.lex_state = 59}, [1427] = {.lex_state = 59}, [1428] = {.lex_state = 0}, [1429] = {.lex_state = 59}, - [1430] = {.lex_state = 59}, - [1431] = {.lex_state = 59}, - [1432] = {.lex_state = 58}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 0}, [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 0}, - [1436] = {.lex_state = 0}, + [1434] = {.lex_state = 249}, + [1435] = {.lex_state = 249}, + [1436] = {.lex_state = 59}, [1437] = {.lex_state = 0}, [1438] = {.lex_state = 0}, [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 59}, - [1442] = {.lex_state = 59}, - [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 247}, - [1445] = {.lex_state = 247}, + [1440] = {.lex_state = 59}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 249}, + [1443] = {.lex_state = 59}, + [1444] = {.lex_state = 8}, + [1445] = {.lex_state = 0}, [1446] = {.lex_state = 59}, - [1447] = {.lex_state = 59}, + [1447] = {.lex_state = 249}, [1448] = {.lex_state = 59}, - [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 21}, - [1451] = {.lex_state = 59}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 0}, + [1449] = {.lex_state = 249}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 249}, + [1452] = {.lex_state = 21}, + [1453] = {.lex_state = 249}, [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 247}, + [1455] = {.lex_state = 59}, [1456] = {.lex_state = 59}, - [1457] = {.lex_state = 59}, - [1458] = {.lex_state = 59}, - [1459] = {.lex_state = 247}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 0}, [1460] = {.lex_state = 59}, - [1461] = {.lex_state = 59}, - [1462] = {.lex_state = 247}, - [1463] = {.lex_state = 247}, - [1464] = {.lex_state = 247}, - [1465] = {.lex_state = 247}, - [1466] = {.lex_state = 59}, - [1467] = {.lex_state = 247}, - [1468] = {.lex_state = 8}, - [1469] = {.lex_state = 59}, - [1470] = {.lex_state = 57}, - [1471] = {.lex_state = 57}, - [1472] = {.lex_state = 0}, - [1473] = {.lex_state = 10}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 14}, - [1482] = {.lex_state = 57}, - [1483] = {.lex_state = 57}, - [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 57}, - [1486] = {.lex_state = 57}, - [1487] = {.lex_state = 57}, - [1488] = {.lex_state = 57}, - [1489] = {.lex_state = 10}, - [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 57}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, + [1463] = {.lex_state = 59}, + [1464] = {.lex_state = 0}, + [1465] = {.lex_state = 59}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 0}, + [1468] = {.lex_state = 58}, + [1469] = {.lex_state = 8}, + [1470] = {.lex_state = 0}, + [1471] = {.lex_state = 249}, + [1472] = {.lex_state = 59}, + [1473] = {.lex_state = 0}, + [1474] = {.lex_state = 59}, + [1475] = {.lex_state = 59}, + [1476] = {.lex_state = 59}, + [1477] = {.lex_state = 249}, + [1478] = {.lex_state = 249}, + [1479] = {.lex_state = 8}, + [1480] = {.lex_state = 59}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 249}, + [1484] = {.lex_state = 59}, + [1485] = {.lex_state = 249}, + [1486] = {.lex_state = 59}, + [1487] = {.lex_state = 59}, + [1488] = {.lex_state = 59}, + [1489] = {.lex_state = 4}, + [1490] = {.lex_state = 249}, + [1491] = {.lex_state = 0}, [1492] = {.lex_state = 0}, [1493] = {.lex_state = 0}, - [1494] = {.lex_state = 0}, + [1494] = {.lex_state = 14}, [1495] = {.lex_state = 0}, [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 0}, + [1497] = {.lex_state = 57}, [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, [1500] = {.lex_state = 57}, - [1501] = {.lex_state = 0}, + [1501] = {.lex_state = 57}, [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 0}, + [1503] = {.lex_state = 10}, [1504] = {.lex_state = 10}, - [1505] = {.lex_state = 0}, + [1505] = {.lex_state = 57}, [1506] = {.lex_state = 0}, [1507] = {.lex_state = 0}, [1508] = {.lex_state = 57}, - [1509] = {.lex_state = 57}, - [1510] = {.lex_state = 57}, - [1511] = {.lex_state = 57}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 0}, + [1511] = {.lex_state = 0}, [1512] = {.lex_state = 57}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 57}, + [1513] = {.lex_state = 57}, + [1514] = {.lex_state = 0}, [1515] = {.lex_state = 0}, [1516] = {.lex_state = 0}, - [1517] = {.lex_state = 4}, + [1517] = {.lex_state = 0}, [1518] = {.lex_state = 0}, [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 404}, + [1520] = {.lex_state = 57}, [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 0}, + [1522] = {.lex_state = 57}, + [1523] = {.lex_state = 57}, + [1524] = {.lex_state = 57}, [1525] = {.lex_state = 57}, - [1526] = {.lex_state = 10}, + [1526] = {.lex_state = 57}, [1527] = {.lex_state = 57}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 10}, + [1528] = {.lex_state = 10}, + [1529] = {.lex_state = 57}, + [1530] = {.lex_state = 0}, [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, + [1532] = {.lex_state = 57}, [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 0}, + [1534] = {.lex_state = 408}, [1535] = {.lex_state = 0}, [1536] = {.lex_state = 0}, [1537] = {.lex_state = 57}, - [1538] = {.lex_state = 57}, - [1539] = {.lex_state = 57}, - [1540] = {.lex_state = 57}, + [1538] = {.lex_state = 10}, + [1539] = {.lex_state = 0}, + [1540] = {.lex_state = 0}, [1541] = {.lex_state = 0}, - [1542] = {.lex_state = 57}, - [1543] = {.lex_state = 57}, - [1544] = {.lex_state = 0}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 57}, [1545] = {.lex_state = 0}, [1546] = {.lex_state = 0}, [1547] = {.lex_state = 0}, @@ -9530,87 +9615,108 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1549] = {.lex_state = 0}, [1550] = {.lex_state = 0}, [1551] = {.lex_state = 57}, - [1552] = {.lex_state = 4}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, + [1552] = {.lex_state = 0}, + [1553] = {.lex_state = 57}, + [1554] = {.lex_state = 57}, [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 57}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, + [1556] = {.lex_state = 0}, + [1557] = {.lex_state = 57}, + [1558] = {.lex_state = 57}, [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 57}, + [1560] = {.lex_state = 0}, [1561] = {.lex_state = 0}, [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 14}, - [1565] = {.lex_state = 0}, + [1563] = {.lex_state = 14}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 57}, [1566] = {.lex_state = 0}, [1567] = {.lex_state = 0}, [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 14}, - [1570] = {.lex_state = 247}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 57}, + [1571] = {.lex_state = 4}, + [1572] = {.lex_state = 10}, [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 0}, + [1574] = {.lex_state = 14}, + [1575] = {.lex_state = 57}, [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 14}, - [1578] = {.lex_state = 14}, + [1577] = {.lex_state = 0}, + [1578] = {.lex_state = 0}, [1579] = {.lex_state = 0}, [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 14}, - [1582] = {.lex_state = 57}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 0}, [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 0}, + [1584] = {.lex_state = 57}, [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 404}, - [1587] = {.lex_state = 404}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 57}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 0}, + [1588] = {.lex_state = 14}, + [1589] = {.lex_state = 0}, [1590] = {.lex_state = 57}, - [1591] = {.lex_state = 0}, + [1591] = {.lex_state = 14}, [1592] = {.lex_state = 0}, [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 57}, - [1598] = {.lex_state = 57}, - [1599] = {.lex_state = 404}, - [1600] = {.lex_state = 57}, - [1601] = {.lex_state = 0}, + [1596] = {.lex_state = 57}, + [1597] = {.lex_state = 0}, + [1598] = {.lex_state = 0}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 0}, + [1601] = {.lex_state = 57}, [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 14}, - [1604] = {.lex_state = 404}, - [1605] = {.lex_state = 57}, + [1603] = {.lex_state = 408}, + [1604] = {.lex_state = 0}, + [1605] = {.lex_state = 0}, [1606] = {.lex_state = 0}, [1607] = {.lex_state = 0}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 57}, - [1610] = {.lex_state = 57}, + [1608] = {.lex_state = 57}, + [1609] = {.lex_state = 0}, + [1610] = {.lex_state = 408}, [1611] = {.lex_state = 0}, [1612] = {.lex_state = 57}, - [1613] = {.lex_state = 14}, + [1613] = {.lex_state = 0}, [1614] = {.lex_state = 0}, [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 57}, - [1617] = {.lex_state = 14}, - [1618] = {.lex_state = 57}, + [1616] = {.lex_state = 408}, + [1617] = {.lex_state = 57}, + [1618] = {.lex_state = 0}, [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 14}, - [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 247}, + [1620] = {.lex_state = 0}, + [1621] = {.lex_state = 408}, + [1622] = {.lex_state = 57}, [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 0}, + [1624] = {.lex_state = 57}, [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 0}, + [1626] = {.lex_state = 57}, [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 57}, - [1629] = {.lex_state = 57}, - [1630] = {.lex_state = 57}, - [1631] = {.lex_state = 57}, - [1632] = {.lex_state = 57}, + [1628] = {.lex_state = 0}, + [1629] = {.lex_state = 0}, + [1630] = {.lex_state = 14}, + [1631] = {.lex_state = 14}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 57}, + [1634] = {.lex_state = 0}, + [1635] = {.lex_state = 14}, + [1636] = {.lex_state = 0}, + [1637] = {.lex_state = 0}, + [1638] = {.lex_state = 14}, + [1639] = {.lex_state = 0}, + [1640] = {.lex_state = 249}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 0}, + [1644] = {.lex_state = 14}, + [1645] = {.lex_state = 0}, + [1646] = {.lex_state = 0}, + [1647] = {.lex_state = 57}, + [1648] = {.lex_state = 57}, + [1649] = {.lex_state = 57}, + [1650] = {.lex_state = 57}, + [1651] = {.lex_state = 57}, + [1652] = {.lex_state = 57}, + [1653] = {.lex_state = 57}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9623,8 +9729,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(1), [anon_sym_trait] = ACTIONS(1), [anon_sym_type] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), @@ -9701,6 +9807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1), [anon_sym_static] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), [sym_numeric_literal] = ACTIONS(1), [aux_sym_string_literal_token1] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), @@ -9710,71 +9817,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1), [anon_sym_LT2] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), - [anon_sym_ref] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), + [anon_sym_ref] = ACTIONS(1), [sym_mutable_specifier] = ACTIONS(1), [sym_super] = ACTIONS(1), [sym_crate] = ACTIONS(1), [sym_line_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(1584), - [sym__statement] = STATE(2), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_const_item] = STATE(2), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(2), - [sym_expression] = STATE(753), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_source_file] = STATE(1605), + [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(95), + [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(340), + [sym_external_function_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(11), + [sym_expression] = STATE(761), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(2), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(11), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_impl] = ACTIONS(9), @@ -9821,75 +9930,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(13), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_const_item] = STATE(13), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(13), - [sym_expression] = STATE(753), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(618), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(79), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(81), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -9934,75 +10046,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(19), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_const_item] = STATE(19), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(654), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(681), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(19), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(83), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10047,75 +10162,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(682), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(658), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(85), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10160,75 +10278,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [5] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(626), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(2), + [sym_expression] = STATE(615), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(2), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(87), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10273,75 +10394,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [6] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(657), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(3), + [sym_expression] = STATE(662), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(3), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(89), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10386,75 +10510,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [7] = { - [sym__statement] = STATE(17), - [sym_impl_item] = STATE(17), - [sym_trait_item] = STATE(17), - [sym_associated_type] = STATE(17), - [sym_const_item] = STATE(17), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(17), - [sym_function_item] = STATE(17), - [sym_function_signature_item] = STATE(17), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(17), - [sym_use_declaration] = STATE(17), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(17), - [sym_expression] = STATE(638), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(626), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(17), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(89), + [anon_sym_RBRACE] = ACTIONS(91), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10499,75 +10626,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [8] = { - [sym__statement] = STATE(4), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(690), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(654), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(4), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(93), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10612,75 +10742,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [9] = { - [sym__statement] = STATE(5), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_const_item] = STATE(5), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(5), - [sym_expression] = STATE(632), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(657), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(5), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(95), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10725,75 +10858,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [10] = { - [sym__statement] = STATE(14), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_const_item] = STATE(14), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(14), - [sym_expression] = STATE(600), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(604), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(14), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(97), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10838,75 +10974,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [11] = { - [sym__statement] = STATE(6), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_const_item] = STATE(6), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(659), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(16), + [sym_expression] = STATE(761), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(6), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(16), + [ts_builtin_sym_end] = ACTIONS(99), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(97), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10951,188 +11090,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [12] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(643), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(99), - [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_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(53), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_pub] = ACTIONS(59), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [13] = { - [sym__statement] = STATE(13), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_const_item] = STATE(13), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(13), - [sym_expression] = STATE(753), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(102), + [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(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(761), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_RBRACE] = ACTIONS(104), [anon_sym_impl] = ACTIONS(106), [anon_sym_SEMI] = ACTIONS(109), [anon_sym_trait] = ACTIONS(112), @@ -11177,75 +11206,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(181), [anon_sym_return] = ACTIONS(184), [anon_sym_while] = ACTIONS(187), - [sym_numeric_literal] = ACTIONS(190), - [aux_sym_string_literal_token1] = ACTIONS(193), - [sym_shortstring_literal] = ACTIONS(196), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_ref] = ACTIONS(202), - [sym_identifier] = ACTIONS(205), - [sym_super] = ACTIONS(208), + [anon_sym_for] = ACTIONS(190), + [sym_numeric_literal] = ACTIONS(193), + [aux_sym_string_literal_token1] = ACTIONS(196), + [sym_shortstring_literal] = ACTIONS(199), + [anon_sym_true] = ACTIONS(202), + [anon_sym_false] = ACTIONS(202), + [anon_sym_ref] = ACTIONS(205), + [sym_identifier] = ACTIONS(208), + [sym_super] = ACTIONS(211), [sym_line_comment] = ACTIONS(3), }, - [14] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(647), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [13] = { + [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(95), + [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(340), + [sym_external_function_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(14), + [sym_expression] = STATE(620), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(14), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(214), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11290,75 +11322,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [15] = { - [sym__statement] = STATE(18), - [sym_impl_item] = STATE(18), - [sym_trait_item] = STATE(18), - [sym_associated_type] = STATE(18), - [sym_const_item] = STATE(18), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(18), - [sym_attribute_item] = STATE(18), - [sym_inner_attribute_item] = STATE(18), - [sym_mod_item] = STATE(18), - [sym_struct_item] = STATE(18), - [sym_enum_item] = STATE(18), - [sym_type_item] = STATE(18), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(18), - [sym_function_item] = STATE(18), - [sym_function_signature_item] = STATE(18), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(18), - [sym_use_declaration] = STATE(18), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(18), - [sym_expression] = STATE(678), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [14] = { + [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(95), + [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(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(623), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(18), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(216), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11403,75 +11438,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [16] = { - [sym__statement] = STATE(12), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_const_item] = STATE(12), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(12), - [sym_expression] = STATE(644), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [15] = { + [sym__statement] = STATE(18), + [sym_impl_item] = STATE(18), + [sym_trait_item] = STATE(18), + [sym_associated_type] = STATE(18), + [sym_associated_impl] = STATE(18), + [sym_const_item] = STATE(18), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(18), + [sym_attribute_item] = STATE(18), + [sym_inner_attribute_item] = STATE(18), + [sym_mod_item] = STATE(18), + [sym_struct_item] = STATE(18), + [sym_enum_item] = STATE(18), + [sym_type_item] = STATE(18), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(18), + [sym_function_item] = STATE(18), + [sym_function_signature_item] = STATE(18), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(18), + [sym_use_declaration] = STATE(18), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(18), + [sym_expression] = STATE(641), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(12), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(18), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(218), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11516,14 +11554,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [16] = { + [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(95), + [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(340), + [sym_external_function_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(16), + [sym_expression] = STATE(761), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(16), + [ts_builtin_sym_end] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_impl] = ACTIONS(106), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_trait] = ACTIONS(112), + [anon_sym_type] = ACTIONS(115), + [anon_sym_const] = ACTIONS(118), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_struct] = ACTIONS(133), + [anon_sym_enum] = ACTIONS(136), + [anon_sym_fn] = ACTIONS(139), + [anon_sym_let] = ACTIONS(142), + [anon_sym_use] = ACTIONS(145), + [anon_sym_COLON_COLON] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_u8] = ACTIONS(154), + [anon_sym_i8] = ACTIONS(154), + [anon_sym_u16] = ACTIONS(154), + [anon_sym_i16] = ACTIONS(154), + [anon_sym_u32] = ACTIONS(154), + [anon_sym_i32] = ACTIONS(154), + [anon_sym_u64] = ACTIONS(154), + [anon_sym_i64] = ACTIONS(154), + [anon_sym_u128] = ACTIONS(154), + [anon_sym_i128] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_ByteArray] = ACTIONS(154), + [anon_sym_felt252] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(121), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_break] = ACTIONS(160), + [anon_sym_continue] = ACTIONS(163), + [anon_sym_default] = ACTIONS(166), + [anon_sym_if] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(172), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_match] = ACTIONS(178), + [anon_sym_pub] = ACTIONS(181), + [anon_sym_return] = ACTIONS(184), + [anon_sym_while] = ACTIONS(187), + [anon_sym_for] = ACTIONS(190), + [sym_numeric_literal] = ACTIONS(193), + [aux_sym_string_literal_token1] = ACTIONS(196), + [sym_shortstring_literal] = ACTIONS(199), + [anon_sym_true] = ACTIONS(202), + [anon_sym_false] = ACTIONS(202), + [anon_sym_ref] = ACTIONS(205), + [sym_identifier] = ACTIONS(208), + [sym_super] = ACTIONS(211), [sym_line_comment] = ACTIONS(3), }, [17] = { @@ -11531,8 +11686,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(88), + [sym_macro_invocation] = STATE(95), [sym_empty_statement] = STATE(20), [sym_attribute_item] = STATE(20), [sym_inner_attribute_item] = STATE(20), @@ -11540,51 +11696,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(20), [sym_enum_item] = STATE(20), [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(291), + [sym_extern_type] = STATE(340), [sym_external_function_item] = STATE(20), [sym_function_item] = STATE(20), [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), + [sym_function] = STATE(1166), [sym_let_declaration] = STATE(20), [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(637), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_expression] = STATE(688), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(217), + [anon_sym_RBRACE] = ACTIONS(220), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11629,75 +11786,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [18] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(641), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(642), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(222), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11742,75 +11902,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [19] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [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(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(653), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym__statement] = STATE(10), + [sym_impl_item] = STATE(10), + [sym_trait_item] = STATE(10), + [sym_associated_type] = STATE(10), + [sym_associated_impl] = STATE(10), + [sym_const_item] = STATE(10), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(10), + [sym_attribute_item] = STATE(10), + [sym_inner_attribute_item] = STATE(10), + [sym_mod_item] = STATE(10), + [sym_struct_item] = STATE(10), + [sym_enum_item] = STATE(10), + [sym_type_item] = STATE(10), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(10), + [sym_function_item] = STATE(10), + [sym_function_signature_item] = STATE(10), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(10), + [sym_use_declaration] = STATE(10), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(10), + [sym_expression] = STATE(610), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(10), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(224), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11855,175 +12018,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [20] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(94), - [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(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(753), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_impl] = ACTIONS(106), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(112), - [anon_sym_type] = ACTIONS(115), - [anon_sym_const] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(130), - [anon_sym_struct] = ACTIONS(133), - [anon_sym_enum] = ACTIONS(136), - [anon_sym_fn] = ACTIONS(139), - [anon_sym_let] = ACTIONS(142), - [anon_sym_use] = ACTIONS(145), - [anon_sym_COLON_COLON] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_ByteArray] = ACTIONS(154), - [anon_sym_felt252] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_AT] = ACTIONS(121), - [anon_sym_break] = ACTIONS(160), - [anon_sym_continue] = ACTIONS(163), - [anon_sym_default] = ACTIONS(166), - [anon_sym_if] = ACTIONS(169), - [anon_sym_extern] = ACTIONS(172), - [anon_sym_loop] = ACTIONS(175), - [anon_sym_match] = ACTIONS(178), - [anon_sym_pub] = ACTIONS(181), - [anon_sym_return] = ACTIONS(184), - [anon_sym_while] = ACTIONS(187), - [sym_numeric_literal] = ACTIONS(190), - [aux_sym_string_literal_token1] = ACTIONS(193), - [sym_shortstring_literal] = ACTIONS(196), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_ref] = ACTIONS(202), - [sym_identifier] = ACTIONS(205), - [sym_super] = ACTIONS(208), - [sym_line_comment] = ACTIONS(3), - }, - [21] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(477), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [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(95), + [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(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(694), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(223), - [anon_sym_EQ] = ACTIONS(225), - [anon_sym_BANG] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(223), - [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(226), + [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(225), - [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(223), + [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), @@ -12038,200 +12121,77 @@ 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_LT] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(225), - [anon_sym_SLASH] = ACTIONS(225), - [anon_sym_PERCENT] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(43), [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [anon_sym_LT_LT] = ACTIONS(223), - [anon_sym_GT_GT] = ACTIONS(223), - [anon_sym_PLUS_EQ] = ACTIONS(223), - [anon_sym_DASH_EQ] = ACTIONS(223), - [anon_sym_STAR_EQ] = ACTIONS(223), - [anon_sym_SLASH_EQ] = ACTIONS(223), - [anon_sym_PERCENT_EQ] = ACTIONS(223), - [anon_sym_EQ_EQ] = ACTIONS(223), - [anon_sym_BANG_EQ] = ACTIONS(223), - [anon_sym_GT_EQ] = ACTIONS(223), - [anon_sym_LT_EQ] = ACTIONS(223), [anon_sym_AT] = ACTIONS(19), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(223), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [22] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(234), - [anon_sym_impl] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_trait] = ACTIONS(236), - [anon_sym_type] = ACTIONS(236), - [anon_sym_const] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(242), - [anon_sym_EQ] = ACTIONS(242), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_POUND] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_RBRACK] = ACTIONS(234), - [anon_sym_mod] = ACTIONS(236), - [anon_sym_struct] = ACTIONS(236), - [anon_sym_enum] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_fn] = ACTIONS(236), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_let] = ACTIONS(236), - [anon_sym_use] = ACTIONS(236), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym__] = ACTIONS(242), - [anon_sym_RPAREN] = ACTIONS(234), - [anon_sym_u8] = ACTIONS(251), - [anon_sym_i8] = ACTIONS(251), - [anon_sym_u16] = ACTIONS(251), - [anon_sym_i16] = ACTIONS(251), - [anon_sym_u32] = ACTIONS(251), - [anon_sym_i32] = ACTIONS(251), - [anon_sym_u64] = ACTIONS(251), - [anon_sym_i64] = ACTIONS(251), - [anon_sym_u128] = ACTIONS(251), - [anon_sym_i128] = ACTIONS(251), - [anon_sym_usize] = ACTIONS(251), - [anon_sym_bool] = ACTIONS(251), - [anon_sym_ByteArray] = ACTIONS(251), - [anon_sym_felt252] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(242), - [anon_sym_DASH] = ACTIONS(254), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_PERCENT] = ACTIONS(242), - [anon_sym_CARET] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(242), - [anon_sym_PIPE] = ACTIONS(242), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_LT_LT] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(239), - [anon_sym_DASH_EQ] = ACTIONS(239), - [anon_sym_STAR_EQ] = ACTIONS(239), - [anon_sym_SLASH_EQ] = ACTIONS(239), - [anon_sym_PERCENT_EQ] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_AMP_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(239), - [anon_sym_DOT] = ACTIONS(242), - [anon_sym_EQ_GT] = ACTIONS(239), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_break] = ACTIONS(236), - [anon_sym_continue] = ACTIONS(236), - [anon_sym_default] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_extern] = ACTIONS(236), - [anon_sym_nopanic] = ACTIONS(236), - [anon_sym_loop] = ACTIONS(236), - [anon_sym_match] = ACTIONS(236), - [anon_sym_pub] = ACTIONS(236), - [anon_sym_return] = ACTIONS(236), - [anon_sym_static] = ACTIONS(236), - [anon_sym_while] = ACTIONS(236), - [sym_numeric_literal] = ACTIONS(257), - [aux_sym_string_literal_token1] = ACTIONS(260), - [sym_shortstring_literal] = ACTIONS(263), - [anon_sym_true] = ACTIONS(266), - [anon_sym_false] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(269), - [sym_identifier] = ACTIONS(236), - [sym_mutable_specifier] = ACTIONS(236), - [sym_super] = ACTIONS(236), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [23] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(461), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [21] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(472), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(274), - [anon_sym_BANG] = ACTIONS(227), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(230), + [anon_sym_BANG] = ACTIONS(232), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_RBRACK] = ACTIONS(228), + [anon_sym_COMMA] = ACTIONS(228), [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(232), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -12246,6115 +12206,6481 @@ 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_LT] = ACTIONS(274), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(274), - [anon_sym_DASH] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(274), - [anon_sym_PERCENT] = ACTIONS(274), - [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT] = ACTIONS(230), + [anon_sym_GT] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_SLASH] = ACTIONS(230), + [anon_sym_PERCENT] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(228), [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(274), - [anon_sym_AMP_AMP] = ACTIONS(272), - [anon_sym_PIPE_PIPE] = ACTIONS(272), - [anon_sym_LT_LT] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(272), - [anon_sym_PLUS_EQ] = ACTIONS(272), - [anon_sym_DASH_EQ] = ACTIONS(272), - [anon_sym_STAR_EQ] = ACTIONS(272), - [anon_sym_SLASH_EQ] = ACTIONS(272), - [anon_sym_PERCENT_EQ] = ACTIONS(272), - [anon_sym_EQ_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(228), + [anon_sym_PIPE_PIPE] = ACTIONS(228), + [anon_sym_LT_LT] = ACTIONS(228), + [anon_sym_GT_GT] = ACTIONS(228), + [anon_sym_PLUS_EQ] = ACTIONS(228), + [anon_sym_DASH_EQ] = ACTIONS(228), + [anon_sym_STAR_EQ] = ACTIONS(228), + [anon_sym_SLASH_EQ] = ACTIONS(228), + [anon_sym_PERCENT_EQ] = ACTIONS(228), + [anon_sym_EQ_EQ] = ACTIONS(228), + [anon_sym_BANG_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(228), + [anon_sym_LT_EQ] = ACTIONS(228), [anon_sym_AT] = ACTIONS(19), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_QMARK] = ACTIONS(272), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [24] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(280), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), - [sym_line_comment] = ACTIONS(3), - }, - [25] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(306), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [26] = { - [sym_delim_token_tree] = STATE(51), + [22] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(462), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(238), + [anon_sym_SEMI] = ACTIONS(238), + [anon_sym_EQ] = ACTIONS(240), + [anon_sym_BANG] = ACTIONS(232), + [anon_sym_LBRACK] = ACTIONS(238), + [anon_sym_RBRACK] = ACTIONS(238), + [anon_sym_COMMA] = ACTIONS(238), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(240), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(238), + [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(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_SLASH] = ACTIONS(240), + [anon_sym_PERCENT] = ACTIONS(240), + [anon_sym_CARET] = ACTIONS(238), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(240), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_PLUS_EQ] = ACTIONS(238), + [anon_sym_DASH_EQ] = ACTIONS(238), + [anon_sym_STAR_EQ] = ACTIONS(238), + [anon_sym_SLASH_EQ] = ACTIONS(238), + [anon_sym_PERCENT_EQ] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_BANG_EQ] = ACTIONS(238), + [anon_sym_GT_EQ] = ACTIONS(238), + [anon_sym_LT_EQ] = ACTIONS(238), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [23] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(242), + [anon_sym_RBRACE] = ACTIONS(245), + [anon_sym_impl] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_trait] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_const] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_RBRACK] = ACTIONS(245), + [anon_sym_mod] = ACTIONS(247), + [anon_sym_struct] = ACTIONS(247), + [anon_sym_enum] = ACTIONS(247), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_fn] = ACTIONS(247), + [anon_sym_DASH_GT] = ACTIONS(250), + [anon_sym_let] = ACTIONS(247), + [anon_sym_use] = ACTIONS(247), + [anon_sym_COLON_COLON] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(259), + [anon_sym__] = ACTIONS(253), + [anon_sym_RPAREN] = ACTIONS(245), + [anon_sym_u8] = ACTIONS(262), + [anon_sym_i8] = ACTIONS(262), + [anon_sym_u16] = ACTIONS(262), + [anon_sym_i16] = ACTIONS(262), + [anon_sym_u32] = ACTIONS(262), + [anon_sym_i32] = ACTIONS(262), + [anon_sym_u64] = ACTIONS(262), + [anon_sym_i64] = ACTIONS(262), + [anon_sym_u128] = ACTIONS(262), + [anon_sym_i128] = ACTIONS(262), + [anon_sym_usize] = ACTIONS(262), + [anon_sym_bool] = ACTIONS(262), + [anon_sym_ByteArray] = ACTIONS(262), + [anon_sym_felt252] = ACTIONS(262), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_PERCENT] = ACTIONS(253), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_PLUS_EQ] = ACTIONS(250), + [anon_sym_DASH_EQ] = ACTIONS(250), + [anon_sym_STAR_EQ] = ACTIONS(250), + [anon_sym_SLASH_EQ] = ACTIONS(250), + [anon_sym_PERCENT_EQ] = ACTIONS(250), + [anon_sym_CARET_EQ] = ACTIONS(250), + [anon_sym_AMP_EQ] = ACTIONS(250), + [anon_sym_PIPE_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_AT] = ACTIONS(250), + [anon_sym_DOT_DOT] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(253), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK] = ACTIONS(250), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(247), + [anon_sym_default] = ACTIONS(247), + [anon_sym_if] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(247), + [anon_sym_nopanic] = ACTIONS(247), + [anon_sym_loop] = ACTIONS(247), + [anon_sym_match] = ACTIONS(247), + [anon_sym_pub] = ACTIONS(247), + [anon_sym_return] = ACTIONS(247), + [anon_sym_static] = ACTIONS(247), + [anon_sym_while] = ACTIONS(247), + [anon_sym_for] = ACTIONS(247), + [sym_numeric_literal] = ACTIONS(268), + [aux_sym_string_literal_token1] = ACTIONS(271), + [sym_shortstring_literal] = ACTIONS(274), + [anon_sym_true] = ACTIONS(277), + [anon_sym_false] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(280), + [sym_identifier] = ACTIONS(247), + [sym_mutable_specifier] = ACTIONS(247), + [sym_super] = ACTIONS(247), + [sym_line_comment] = ACTIONS(3), + }, + [24] = { + [sym_delim_token_tree] = STATE(28), + [sym__delim_tokens] = STATE(28), + [sym__literal] = STATE(28), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(28), + [aux_sym_delim_token_tree_repeat1] = STATE(28), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_impl] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(287), + [anon_sym_type] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(287), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(287), + [anon_sym_struct] = ACTIONS(287), + [anon_sym_enum] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(287), + [anon_sym_use] = ACTIONS(287), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(287), + [anon_sym_default] = ACTIONS(287), + [anon_sym_if] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(287), + [anon_sym_nopanic] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(287), + [anon_sym_match] = ACTIONS(287), + [anon_sym_pub] = ACTIONS(287), + [anon_sym_return] = ACTIONS(287), + [anon_sym_static] = ACTIONS(287), + [anon_sym_while] = ACTIONS(287), + [anon_sym_for] = ACTIONS(287), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(309), + [sym_identifier] = ACTIONS(287), + [sym_mutable_specifier] = ACTIONS(287), + [sym_super] = ACTIONS(287), + [sym_line_comment] = ACTIONS(3), + }, + [25] = { + [sym_delim_token_tree] = STATE(51), [sym__delim_tokens] = STATE(51), [sym__literal] = STATE(51), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(51), [aux_sym_delim_token_tree_repeat1] = STATE(51), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(308), - [anon_sym_type] = ACTIONS(308), - [anon_sym_const] = ACTIONS(308), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(310), - [anon_sym_mod] = ACTIONS(308), - [anon_sym_struct] = ACTIONS(308), - [anon_sym_enum] = ACTIONS(308), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(308), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(308), - [anon_sym_use] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(308), - [anon_sym_continue] = ACTIONS(308), - [anon_sym_default] = ACTIONS(308), - [anon_sym_if] = ACTIONS(308), - [anon_sym_extern] = ACTIONS(308), - [anon_sym_nopanic] = ACTIONS(308), - [anon_sym_loop] = ACTIONS(308), - [anon_sym_match] = ACTIONS(308), - [anon_sym_pub] = ACTIONS(308), - [anon_sym_return] = ACTIONS(308), - [anon_sym_static] = ACTIONS(308), - [anon_sym_while] = ACTIONS(308), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_identifier] = ACTIONS(308), - [sym_mutable_specifier] = ACTIONS(308), - [sym_super] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_impl] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(313), + [anon_sym_type] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(313), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(313), + [anon_sym_struct] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(313), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(313), + [anon_sym_use] = ACTIONS(313), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(313), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_default] = ACTIONS(313), + [anon_sym_if] = ACTIONS(313), + [anon_sym_extern] = ACTIONS(313), + [anon_sym_nopanic] = ACTIONS(313), + [anon_sym_loop] = ACTIONS(313), + [anon_sym_match] = ACTIONS(313), + [anon_sym_pub] = ACTIONS(313), + [anon_sym_return] = ACTIONS(313), + [anon_sym_static] = ACTIONS(313), + [anon_sym_while] = ACTIONS(313), + [anon_sym_for] = ACTIONS(313), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(315), + [sym_identifier] = ACTIONS(313), + [sym_mutable_specifier] = ACTIONS(313), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [26] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [27] = { - [sym_delim_token_tree] = STATE(37), - [sym__delim_tokens] = STATE(37), - [sym__literal] = STATE(37), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(37), - [aux_sym_delim_token_tree_repeat1] = STATE(37), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(314), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(314), - [anon_sym_type] = ACTIONS(314), - [anon_sym_const] = ACTIONS(314), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(314), - [anon_sym_struct] = ACTIONS(314), - [anon_sym_enum] = ACTIONS(314), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(314), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(314), - [anon_sym_use] = ACTIONS(314), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(316), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(314), - [anon_sym_continue] = ACTIONS(314), - [anon_sym_default] = ACTIONS(314), - [anon_sym_if] = ACTIONS(314), - [anon_sym_extern] = ACTIONS(314), - [anon_sym_nopanic] = ACTIONS(314), - [anon_sym_loop] = ACTIONS(314), - [anon_sym_match] = ACTIONS(314), - [anon_sym_pub] = ACTIONS(314), - [anon_sym_return] = ACTIONS(314), - [anon_sym_static] = ACTIONS(314), - [anon_sym_while] = ACTIONS(314), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(318), - [sym_identifier] = ACTIONS(314), - [sym_mutable_specifier] = ACTIONS(314), - [sym_super] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [28] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(280), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [29] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(323), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [30] = { - [sym_delim_token_tree] = STATE(53), - [sym__delim_tokens] = STATE(53), - [sym__literal] = STATE(53), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(53), - [aux_sym_delim_token_tree_repeat1] = STATE(53), + [sym_delim_token_tree] = STATE(33), + [sym__delim_tokens] = STATE(33), + [sym__literal] = STATE(33), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(33), + [aux_sym_delim_token_tree_repeat1] = STATE(33), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(320), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(320), - [anon_sym_type] = ACTIONS(320), - [anon_sym_const] = ACTIONS(320), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(320), - [anon_sym_struct] = ACTIONS(320), - [anon_sym_enum] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(320), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(320), - [anon_sym_use] = ACTIONS(320), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(322), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(320), - [anon_sym_continue] = ACTIONS(320), - [anon_sym_default] = ACTIONS(320), - [anon_sym_if] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(320), - [anon_sym_nopanic] = ACTIONS(320), - [anon_sym_loop] = ACTIONS(320), - [anon_sym_match] = ACTIONS(320), - [anon_sym_pub] = ACTIONS(320), - [anon_sym_return] = ACTIONS(320), - [anon_sym_static] = ACTIONS(320), - [anon_sym_while] = ACTIONS(320), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(324), - [sym_identifier] = ACTIONS(320), - [sym_mutable_specifier] = ACTIONS(320), - [sym_super] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(325), + [anon_sym_type] = ACTIONS(325), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(325), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(325), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_enum] = ACTIONS(325), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(325), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(325), + [anon_sym_use] = ACTIONS(325), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(327), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_default] = ACTIONS(325), + [anon_sym_if] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(325), + [anon_sym_nopanic] = ACTIONS(325), + [anon_sym_loop] = ACTIONS(325), + [anon_sym_match] = ACTIONS(325), + [anon_sym_pub] = ACTIONS(325), + [anon_sym_return] = ACTIONS(325), + [anon_sym_static] = ACTIONS(325), + [anon_sym_while] = ACTIONS(325), + [anon_sym_for] = ACTIONS(325), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(329), + [sym_identifier] = ACTIONS(325), + [sym_mutable_specifier] = ACTIONS(325), + [sym_super] = ACTIONS(325), [sym_line_comment] = ACTIONS(3), }, [31] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(326), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(331), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [32] = { - [sym_delim_token_tree] = STATE(28), - [sym__delim_tokens] = STATE(28), - [sym__literal] = STATE(28), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(28), - [aux_sym_delim_token_tree_repeat1] = STATE(28), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(328), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(328), - [anon_sym_type] = ACTIONS(328), - [anon_sym_const] = ACTIONS(328), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(328), - [anon_sym_struct] = ACTIONS(328), - [anon_sym_enum] = ACTIONS(328), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(328), - [anon_sym_use] = ACTIONS(328), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(330), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(328), - [anon_sym_continue] = ACTIONS(328), - [anon_sym_default] = ACTIONS(328), - [anon_sym_if] = ACTIONS(328), - [anon_sym_extern] = ACTIONS(328), - [anon_sym_nopanic] = ACTIONS(328), - [anon_sym_loop] = ACTIONS(328), - [anon_sym_match] = ACTIONS(328), - [anon_sym_pub] = ACTIONS(328), - [anon_sym_return] = ACTIONS(328), - [anon_sym_static] = ACTIONS(328), - [anon_sym_while] = ACTIONS(328), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(332), - [sym_identifier] = ACTIONS(328), - [sym_mutable_specifier] = ACTIONS(328), - [sym_super] = ACTIONS(328), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(331), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [33] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(326), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(323), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [34] = { - [sym_delim_token_tree] = STATE(52), - [sym__delim_tokens] = STATE(52), - [sym__literal] = STATE(52), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(52), - [aux_sym_delim_token_tree_repeat1] = STATE(52), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(310), - [anon_sym_impl] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(334), - [anon_sym_type] = ACTIONS(334), - [anon_sym_const] = ACTIONS(334), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(334), - [anon_sym_struct] = ACTIONS(334), - [anon_sym_enum] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(334), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(334), - [anon_sym_use] = ACTIONS(334), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(334), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_default] = ACTIONS(334), - [anon_sym_if] = ACTIONS(334), - [anon_sym_extern] = ACTIONS(334), - [anon_sym_nopanic] = ACTIONS(334), - [anon_sym_loop] = ACTIONS(334), - [anon_sym_match] = ACTIONS(334), - [anon_sym_pub] = ACTIONS(334), - [anon_sym_return] = ACTIONS(334), - [anon_sym_static] = ACTIONS(334), - [anon_sym_while] = ACTIONS(334), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(336), - [sym_identifier] = ACTIONS(334), - [sym_mutable_specifier] = ACTIONS(334), - [sym_super] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [35] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(31), + [sym__delim_tokens] = STATE(31), + [sym__literal] = STATE(31), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(31), + [aux_sym_delim_token_tree_repeat1] = STATE(31), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(333), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(333), + [anon_sym_type] = ACTIONS(333), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(333), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(333), + [anon_sym_struct] = ACTIONS(333), + [anon_sym_enum] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(333), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(333), + [anon_sym_use] = ACTIONS(333), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(335), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(333), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_default] = ACTIONS(333), + [anon_sym_if] = ACTIONS(333), + [anon_sym_extern] = ACTIONS(333), + [anon_sym_nopanic] = ACTIONS(333), + [anon_sym_loop] = ACTIONS(333), + [anon_sym_match] = ACTIONS(333), + [anon_sym_pub] = ACTIONS(333), + [anon_sym_return] = ACTIONS(333), + [anon_sym_static] = ACTIONS(333), + [anon_sym_while] = ACTIONS(333), + [anon_sym_for] = ACTIONS(333), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(337), + [sym_identifier] = ACTIONS(333), + [sym_mutable_specifier] = ACTIONS(333), + [sym_super] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), }, [36] = { - [sym_delim_token_tree] = STATE(29), - [sym__delim_tokens] = STATE(29), - [sym__literal] = STATE(29), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(29), - [aux_sym_delim_token_tree_repeat1] = STATE(29), + [sym_delim_token_tree] = STATE(32), + [sym__delim_tokens] = STATE(32), + [sym__literal] = STATE(32), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(32), + [aux_sym_delim_token_tree_repeat1] = STATE(32), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(338), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_type] = ACTIONS(338), - [anon_sym_const] = ACTIONS(338), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(330), - [anon_sym_mod] = ACTIONS(338), - [anon_sym_struct] = ACTIONS(338), - [anon_sym_enum] = ACTIONS(338), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(338), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(338), - [anon_sym_use] = ACTIONS(338), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(338), - [anon_sym_continue] = ACTIONS(338), - [anon_sym_default] = ACTIONS(338), - [anon_sym_if] = ACTIONS(338), - [anon_sym_extern] = ACTIONS(338), - [anon_sym_nopanic] = ACTIONS(338), - [anon_sym_loop] = ACTIONS(338), - [anon_sym_match] = ACTIONS(338), - [anon_sym_pub] = ACTIONS(338), - [anon_sym_return] = ACTIONS(338), - [anon_sym_static] = ACTIONS(338), - [anon_sym_while] = ACTIONS(338), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(340), - [sym_identifier] = ACTIONS(338), - [sym_mutable_specifier] = ACTIONS(338), - [sym_super] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(339), + [anon_sym_type] = ACTIONS(339), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(335), + [anon_sym_mod] = ACTIONS(339), + [anon_sym_struct] = ACTIONS(339), + [anon_sym_enum] = ACTIONS(339), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(339), + [anon_sym_use] = ACTIONS(339), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_default] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_extern] = ACTIONS(339), + [anon_sym_nopanic] = ACTIONS(339), + [anon_sym_loop] = ACTIONS(339), + [anon_sym_match] = ACTIONS(339), + [anon_sym_pub] = ACTIONS(339), + [anon_sym_return] = ACTIONS(339), + [anon_sym_static] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_identifier] = ACTIONS(339), + [sym_mutable_specifier] = ACTIONS(339), + [sym_super] = ACTIONS(339), [sym_line_comment] = ACTIONS(3), }, [37] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(34), + [sym__delim_tokens] = STATE(34), + [sym__literal] = STATE(34), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(34), + [aux_sym_delim_token_tree_repeat1] = STATE(34), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(306), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_impl] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(343), + [anon_sym_type] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(343), + [anon_sym_struct] = ACTIONS(343), + [anon_sym_enum] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(343), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(343), + [anon_sym_use] = ACTIONS(343), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_default] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_extern] = ACTIONS(343), + [anon_sym_nopanic] = ACTIONS(343), + [anon_sym_loop] = ACTIONS(343), + [anon_sym_match] = ACTIONS(343), + [anon_sym_pub] = ACTIONS(343), + [anon_sym_return] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(345), + [sym_identifier] = ACTIONS(343), + [sym_mutable_specifier] = ACTIONS(343), + [sym_super] = ACTIONS(343), [sym_line_comment] = ACTIONS(3), }, [38] = { - [sym_delim_token_tree] = STATE(31), - [sym__delim_tokens] = STATE(31), - [sym__literal] = STATE(31), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(31), - [aux_sym_delim_token_tree_repeat1] = STATE(31), + [sym_delim_token_tree] = STATE(29), + [sym__delim_tokens] = STATE(29), + [sym__literal] = STATE(29), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(29), + [aux_sym_delim_token_tree_repeat1] = STATE(29), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(342), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(342), - [anon_sym_type] = ACTIONS(342), - [anon_sym_const] = ACTIONS(342), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(342), - [anon_sym_struct] = ACTIONS(342), - [anon_sym_enum] = ACTIONS(342), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(342), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(342), - [anon_sym_use] = ACTIONS(342), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(344), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [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), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(346), - [sym_identifier] = ACTIONS(342), - [sym_mutable_specifier] = ACTIONS(342), - [sym_super] = ACTIONS(342), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(347), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(347), + [anon_sym_type] = ACTIONS(347), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(347), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(327), + [anon_sym_mod] = ACTIONS(347), + [anon_sym_struct] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(347), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(347), + [anon_sym_use] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(347), + [anon_sym_continue] = ACTIONS(347), + [anon_sym_default] = ACTIONS(347), + [anon_sym_if] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(347), + [anon_sym_nopanic] = ACTIONS(347), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(347), + [anon_sym_pub] = ACTIONS(347), + [anon_sym_return] = ACTIONS(347), + [anon_sym_static] = ACTIONS(347), + [anon_sym_while] = ACTIONS(347), + [anon_sym_for] = ACTIONS(347), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(349), + [sym_identifier] = ACTIONS(347), + [sym_mutable_specifier] = ACTIONS(347), + [sym_super] = ACTIONS(347), [sym_line_comment] = ACTIONS(3), }, [39] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(306), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), - [sym_line_comment] = ACTIONS(3), - }, - [40] = { [sym_delim_token_tree] = STATE(50), [sym__delim_tokens] = STATE(50), [sym__literal] = STATE(50), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(50), [aux_sym_delim_token_tree_repeat1] = STATE(50), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(348), - [anon_sym_type] = ACTIONS(348), - [anon_sym_const] = ACTIONS(348), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(348), - [anon_sym_struct] = ACTIONS(348), - [anon_sym_enum] = ACTIONS(348), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(348), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(348), - [anon_sym_use] = ACTIONS(348), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(310), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(348), - [anon_sym_default] = ACTIONS(348), - [anon_sym_if] = ACTIONS(348), - [anon_sym_extern] = ACTIONS(348), - [anon_sym_nopanic] = ACTIONS(348), - [anon_sym_loop] = ACTIONS(348), - [anon_sym_match] = ACTIONS(348), - [anon_sym_pub] = ACTIONS(348), - [anon_sym_return] = ACTIONS(348), - [anon_sym_static] = ACTIONS(348), - [anon_sym_while] = ACTIONS(348), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(350), - [sym_identifier] = ACTIONS(348), - [sym_mutable_specifier] = ACTIONS(348), - [sym_super] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(351), + [anon_sym_type] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(351), + [anon_sym_struct] = ACTIONS(351), + [anon_sym_enum] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(351), + [anon_sym_use] = ACTIONS(351), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_extern] = ACTIONS(351), + [anon_sym_nopanic] = ACTIONS(351), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(351), + [anon_sym_pub] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [sym_mutable_specifier] = ACTIONS(351), + [sym_super] = ACTIONS(351), + [sym_line_comment] = ACTIONS(3), + }, + [40] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(355), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [41] = { - [sym_delim_token_tree] = STATE(39), - [sym__delim_tokens] = STATE(39), - [sym__literal] = STATE(39), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(39), - [aux_sym_delim_token_tree_repeat1] = STATE(39), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(352), - [anon_sym_type] = ACTIONS(352), - [anon_sym_const] = ACTIONS(352), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(316), - [anon_sym_mod] = ACTIONS(352), - [anon_sym_struct] = ACTIONS(352), - [anon_sym_enum] = ACTIONS(352), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(352), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(352), - [anon_sym_use] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [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), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(354), - [sym_identifier] = ACTIONS(352), - [sym_mutable_specifier] = ACTIONS(352), - [sym_super] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(355), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [42] = { - [sym_delim_token_tree] = STATE(33), - [sym__delim_tokens] = STATE(33), - [sym__literal] = STATE(33), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(33), - [aux_sym_delim_token_tree_repeat1] = STATE(33), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(356), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(356), - [anon_sym_type] = ACTIONS(356), - [anon_sym_const] = ACTIONS(356), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(344), - [anon_sym_mod] = ACTIONS(356), - [anon_sym_struct] = ACTIONS(356), - [anon_sym_enum] = ACTIONS(356), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(356), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(356), - [anon_sym_use] = ACTIONS(356), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(356), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_default] = ACTIONS(356), - [anon_sym_if] = ACTIONS(356), - [anon_sym_extern] = ACTIONS(356), - [anon_sym_nopanic] = ACTIONS(356), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(356), - [anon_sym_pub] = ACTIONS(356), - [anon_sym_return] = ACTIONS(356), - [anon_sym_static] = ACTIONS(356), - [anon_sym_while] = ACTIONS(356), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(358), - [sym_identifier] = ACTIONS(356), - [sym_mutable_specifier] = ACTIONS(356), - [sym_super] = ACTIONS(356), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [43] = { - [sym_delim_token_tree] = STATE(35), - [sym__delim_tokens] = STATE(35), - [sym__literal] = STATE(35), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(35), - [aux_sym_delim_token_tree_repeat1] = STATE(35), + [sym_delim_token_tree] = STATE(27), + [sym__delim_tokens] = STATE(27), + [sym__literal] = STATE(27), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(27), + [aux_sym_delim_token_tree_repeat1] = STATE(27), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(344), - [anon_sym_impl] = ACTIONS(360), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(360), - [anon_sym_type] = ACTIONS(360), - [anon_sym_const] = ACTIONS(360), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(360), - [anon_sym_struct] = ACTIONS(360), - [anon_sym_enum] = ACTIONS(360), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(360), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(360), - [anon_sym_use] = ACTIONS(360), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(360), - [anon_sym_continue] = ACTIONS(360), - [anon_sym_default] = ACTIONS(360), - [anon_sym_if] = ACTIONS(360), - [anon_sym_extern] = ACTIONS(360), - [anon_sym_nopanic] = ACTIONS(360), - [anon_sym_loop] = ACTIONS(360), - [anon_sym_match] = ACTIONS(360), - [anon_sym_pub] = ACTIONS(360), - [anon_sym_return] = ACTIONS(360), - [anon_sym_static] = ACTIONS(360), - [anon_sym_while] = ACTIONS(360), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(362), - [sym_identifier] = ACTIONS(360), - [sym_mutable_specifier] = ACTIONS(360), - [sym_super] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(357), + [anon_sym_type] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(357), + [anon_sym_struct] = ACTIONS(357), + [anon_sym_enum] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(357), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(357), + [anon_sym_use] = ACTIONS(357), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(357), + [anon_sym_default] = ACTIONS(357), + [anon_sym_if] = ACTIONS(357), + [anon_sym_extern] = ACTIONS(357), + [anon_sym_nopanic] = ACTIONS(357), + [anon_sym_loop] = ACTIONS(357), + [anon_sym_match] = ACTIONS(357), + [anon_sym_pub] = ACTIONS(357), + [anon_sym_return] = ACTIONS(357), + [anon_sym_static] = ACTIONS(357), + [anon_sym_while] = ACTIONS(357), + [anon_sym_for] = ACTIONS(357), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym_identifier] = ACTIONS(357), + [sym_mutable_specifier] = ACTIONS(357), + [sym_super] = ACTIONS(357), [sym_line_comment] = ACTIONS(3), }, [44] = { - [sym_delim_token_tree] = STATE(24), - [sym__delim_tokens] = STATE(24), - [sym__literal] = STATE(24), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(24), - [aux_sym_delim_token_tree_repeat1] = STATE(24), + [sym_delim_token_tree] = STATE(53), + [sym__delim_tokens] = STATE(53), + [sym__literal] = STATE(53), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(53), + [aux_sym_delim_token_tree_repeat1] = STATE(53), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(330), - [anon_sym_impl] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(364), - [anon_sym_type] = ACTIONS(364), - [anon_sym_const] = ACTIONS(364), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(364), - [anon_sym_struct] = ACTIONS(364), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(364), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(364), - [anon_sym_use] = ACTIONS(364), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(364), - [anon_sym_continue] = ACTIONS(364), - [anon_sym_default] = ACTIONS(364), - [anon_sym_if] = ACTIONS(364), - [anon_sym_extern] = ACTIONS(364), - [anon_sym_nopanic] = ACTIONS(364), - [anon_sym_loop] = ACTIONS(364), - [anon_sym_match] = ACTIONS(364), - [anon_sym_pub] = ACTIONS(364), - [anon_sym_return] = ACTIONS(364), - [anon_sym_static] = ACTIONS(364), - [anon_sym_while] = ACTIONS(364), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(366), - [sym_identifier] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(364), - [sym_super] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(361), + [anon_sym_type] = ACTIONS(361), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_mod] = ACTIONS(361), + [anon_sym_struct] = ACTIONS(361), + [anon_sym_enum] = ACTIONS(361), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(361), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(361), + [anon_sym_use] = ACTIONS(361), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(361), + [anon_sym_continue] = ACTIONS(361), + [anon_sym_default] = ACTIONS(361), + [anon_sym_if] = ACTIONS(361), + [anon_sym_extern] = ACTIONS(361), + [anon_sym_nopanic] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(361), + [anon_sym_pub] = ACTIONS(361), + [anon_sym_return] = ACTIONS(361), + [anon_sym_static] = ACTIONS(361), + [anon_sym_while] = ACTIONS(361), + [anon_sym_for] = ACTIONS(361), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(363), + [sym_identifier] = ACTIONS(361), + [sym_mutable_specifier] = ACTIONS(361), + [sym_super] = ACTIONS(361), [sym_line_comment] = ACTIONS(3), }, [45] = { - [sym_delim_token_tree] = STATE(49), - [sym__delim_tokens] = STATE(49), - [sym__literal] = STATE(49), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(49), - [aux_sym_delim_token_tree_repeat1] = STATE(49), + [sym_delim_token_tree] = STATE(40), + [sym__delim_tokens] = STATE(40), + [sym__literal] = STATE(40), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(40), + [aux_sym_delim_token_tree_repeat1] = STATE(40), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(368), - [anon_sym_type] = ACTIONS(368), - [anon_sym_const] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(322), - [anon_sym_mod] = ACTIONS(368), - [anon_sym_struct] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(368), - [anon_sym_use] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(368), - [anon_sym_continue] = ACTIONS(368), - [anon_sym_default] = ACTIONS(368), - [anon_sym_if] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(368), - [anon_sym_nopanic] = ACTIONS(368), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(368), - [anon_sym_pub] = ACTIONS(368), - [anon_sym_return] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_while] = ACTIONS(368), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_identifier] = ACTIONS(368), - [sym_mutable_specifier] = ACTIONS(368), - [sym_super] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(365), + [anon_sym_type] = ACTIONS(365), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(365), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(365), + [anon_sym_struct] = ACTIONS(365), + [anon_sym_enum] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(365), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(365), + [anon_sym_use] = ACTIONS(365), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(365), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_default] = ACTIONS(365), + [anon_sym_if] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(365), + [anon_sym_nopanic] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(365), + [anon_sym_match] = ACTIONS(365), + [anon_sym_pub] = ACTIONS(365), + [anon_sym_return] = ACTIONS(365), + [anon_sym_static] = ACTIONS(365), + [anon_sym_while] = ACTIONS(365), + [anon_sym_for] = ACTIONS(365), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_identifier] = ACTIONS(365), + [sym_mutable_specifier] = ACTIONS(365), + [sym_super] = ACTIONS(365), [sym_line_comment] = ACTIONS(3), }, [46] = { - [sym_delim_token_tree] = STATE(48), - [sym__delim_tokens] = STATE(48), - [sym__literal] = STATE(48), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(48), - [aux_sym_delim_token_tree_repeat1] = STATE(48), + [sym_delim_token_tree] = STATE(41), + [sym__delim_tokens] = STATE(41), + [sym__literal] = STATE(41), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(41), + [aux_sym_delim_token_tree_repeat1] = STATE(41), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_impl] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(372), - [anon_sym_type] = ACTIONS(372), - [anon_sym_const] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(372), - [anon_sym_struct] = ACTIONS(372), - [anon_sym_enum] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(372), - [anon_sym_use] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(372), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_default] = ACTIONS(372), - [anon_sym_if] = ACTIONS(372), - [anon_sym_extern] = ACTIONS(372), - [anon_sym_nopanic] = ACTIONS(372), - [anon_sym_loop] = ACTIONS(372), - [anon_sym_match] = ACTIONS(372), - [anon_sym_pub] = ACTIONS(372), - [anon_sym_return] = ACTIONS(372), - [anon_sym_static] = ACTIONS(372), - [anon_sym_while] = ACTIONS(372), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(374), - [sym_identifier] = ACTIONS(372), - [sym_mutable_specifier] = ACTIONS(372), - [sym_super] = ACTIONS(372), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(371), + [anon_sym_type] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(371), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(367), + [anon_sym_mod] = ACTIONS(371), + [anon_sym_struct] = ACTIONS(371), + [anon_sym_enum] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(371), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(371), + [anon_sym_use] = ACTIONS(371), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_default] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(371), + [anon_sym_nopanic] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(371), + [anon_sym_match] = ACTIONS(371), + [anon_sym_pub] = ACTIONS(371), + [anon_sym_return] = ACTIONS(371), + [anon_sym_static] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_identifier] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(371), + [sym_super] = ACTIONS(371), [sym_line_comment] = ACTIONS(3), }, [47] = { - [sym_delim_token_tree] = STATE(25), - [sym__delim_tokens] = STATE(25), - [sym__literal] = STATE(25), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(25), - [aux_sym_delim_token_tree_repeat1] = STATE(25), + [sym_delim_token_tree] = STATE(42), + [sym__delim_tokens] = STATE(42), + [sym__literal] = STATE(42), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(42), + [aux_sym_delim_token_tree_repeat1] = STATE(42), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(316), - [anon_sym_impl] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(376), - [anon_sym_type] = ACTIONS(376), - [anon_sym_const] = ACTIONS(376), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(376), - [anon_sym_struct] = ACTIONS(376), - [anon_sym_enum] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(376), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(376), - [anon_sym_use] = ACTIONS(376), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(376), - [anon_sym_continue] = ACTIONS(376), - [anon_sym_default] = ACTIONS(376), - [anon_sym_if] = ACTIONS(376), - [anon_sym_extern] = ACTIONS(376), - [anon_sym_nopanic] = ACTIONS(376), - [anon_sym_loop] = ACTIONS(376), - [anon_sym_match] = ACTIONS(376), - [anon_sym_pub] = ACTIONS(376), - [anon_sym_return] = ACTIONS(376), - [anon_sym_static] = ACTIONS(376), - [anon_sym_while] = ACTIONS(376), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(378), - [sym_identifier] = ACTIONS(376), - [sym_mutable_specifier] = ACTIONS(376), - [sym_super] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_impl] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(375), + [anon_sym_type] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(375), + [anon_sym_struct] = ACTIONS(375), + [anon_sym_enum] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(375), + [anon_sym_use] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_default] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_nopanic] = ACTIONS(375), + [anon_sym_loop] = ACTIONS(375), + [anon_sym_match] = ACTIONS(375), + [anon_sym_pub] = ACTIONS(375), + [anon_sym_return] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(377), + [sym_identifier] = ACTIONS(375), + [sym_mutable_specifier] = ACTIONS(375), + [sym_super] = ACTIONS(375), [sym_line_comment] = ACTIONS(3), }, [48] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(52), + [sym__delim_tokens] = STATE(52), + [sym__literal] = STATE(52), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(52), + [aux_sym_delim_token_tree_repeat1] = STATE(52), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(379), + [anon_sym_type] = ACTIONS(379), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(285), + [anon_sym_mod] = ACTIONS(379), + [anon_sym_struct] = ACTIONS(379), + [anon_sym_enum] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(379), + [anon_sym_use] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_default] = ACTIONS(379), + [anon_sym_if] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(379), + [anon_sym_nopanic] = ACTIONS(379), + [anon_sym_loop] = ACTIONS(379), + [anon_sym_match] = ACTIONS(379), + [anon_sym_pub] = ACTIONS(379), + [anon_sym_return] = ACTIONS(379), + [anon_sym_static] = ACTIONS(379), + [anon_sym_while] = ACTIONS(379), + [anon_sym_for] = ACTIONS(379), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(381), + [sym_identifier] = ACTIONS(379), + [sym_mutable_specifier] = ACTIONS(379), + [sym_super] = ACTIONS(379), [sym_line_comment] = ACTIONS(3), }, [49] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(26), + [sym__delim_tokens] = STATE(26), + [sym__literal] = STATE(26), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(26), + [aux_sym_delim_token_tree_repeat1] = STATE(26), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(380), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(383), + [anon_sym_type] = ACTIONS(383), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(383), + [anon_sym_enum] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(383), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(383), + [anon_sym_use] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(285), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_default] = ACTIONS(383), + [anon_sym_if] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_nopanic] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(383), + [anon_sym_match] = ACTIONS(383), + [anon_sym_pub] = ACTIONS(383), + [anon_sym_return] = ACTIONS(383), + [anon_sym_static] = ACTIONS(383), + [anon_sym_while] = ACTIONS(383), + [anon_sym_for] = ACTIONS(383), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(385), + [sym_identifier] = ACTIONS(383), + [sym_mutable_specifier] = ACTIONS(383), + [sym_super] = ACTIONS(383), [sym_line_comment] = ACTIONS(3), }, [50] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [51] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(382), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [52] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(382), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(319), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [53] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(380), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(387), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [54] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(738), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_EQ] = ACTIONS(225), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(225), - [anon_sym_SLASH] = ACTIONS(225), - [anon_sym_PERCENT] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [anon_sym_LT_LT] = ACTIONS(223), - [anon_sym_GT_GT] = ACTIONS(223), - [anon_sym_PLUS_EQ] = ACTIONS(223), - [anon_sym_DASH_EQ] = ACTIONS(223), - [anon_sym_STAR_EQ] = ACTIONS(223), - [anon_sym_SLASH_EQ] = ACTIONS(223), - [anon_sym_PERCENT_EQ] = ACTIONS(223), - [anon_sym_EQ_EQ] = ACTIONS(223), - [anon_sym_BANG_EQ] = ACTIONS(223), - [anon_sym_GT_EQ] = ACTIONS(223), - [anon_sym_LT_EQ] = ACTIONS(223), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_EQ_GT] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(760), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(230), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(230), + [anon_sym_GT] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(230), + [anon_sym_PERCENT] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(228), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(228), + [anon_sym_PIPE_PIPE] = ACTIONS(228), + [anon_sym_LT_LT] = ACTIONS(228), + [anon_sym_GT_GT] = ACTIONS(228), + [anon_sym_PLUS_EQ] = ACTIONS(228), + [anon_sym_DASH_EQ] = ACTIONS(228), + [anon_sym_STAR_EQ] = ACTIONS(228), + [anon_sym_SLASH_EQ] = ACTIONS(228), + [anon_sym_PERCENT_EQ] = ACTIONS(228), + [anon_sym_EQ_EQ] = ACTIONS(228), + [anon_sym_BANG_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(228), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_EQ_GT] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [55] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(745), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_EQ] = ACTIONS(274), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(274), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_SLASH] = ACTIONS(274), - [anon_sym_PERCENT] = ACTIONS(274), - [anon_sym_CARET] = ACTIONS(272), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(274), - [anon_sym_AMP_AMP] = ACTIONS(272), - [anon_sym_PIPE_PIPE] = ACTIONS(272), - [anon_sym_LT_LT] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(272), - [anon_sym_PLUS_EQ] = ACTIONS(272), - [anon_sym_DASH_EQ] = ACTIONS(272), - [anon_sym_STAR_EQ] = ACTIONS(272), - [anon_sym_SLASH_EQ] = ACTIONS(272), - [anon_sym_PERCENT_EQ] = ACTIONS(272), - [anon_sym_EQ_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_EQ_GT] = ACTIONS(272), - [anon_sym_QMARK] = ACTIONS(272), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(755), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(240), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(238), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(240), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_SLASH] = ACTIONS(240), + [anon_sym_PERCENT] = ACTIONS(240), + [anon_sym_CARET] = ACTIONS(238), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(240), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_PLUS_EQ] = ACTIONS(238), + [anon_sym_DASH_EQ] = ACTIONS(238), + [anon_sym_STAR_EQ] = ACTIONS(238), + [anon_sym_SLASH_EQ] = ACTIONS(238), + [anon_sym_PERCENT_EQ] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_BANG_EQ] = ACTIONS(238), + [anon_sym_GT_EQ] = ACTIONS(238), + [anon_sym_LT_EQ] = ACTIONS(238), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(238), + [anon_sym_EQ_GT] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [56] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(719), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(757), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_EQ] = ACTIONS(225), - [anon_sym_BANG] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(225), - [anon_sym_SLASH] = ACTIONS(225), - [anon_sym_PERCENT] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [anon_sym_LT_LT] = ACTIONS(223), - [anon_sym_GT_GT] = ACTIONS(223), - [anon_sym_PLUS_EQ] = ACTIONS(223), - [anon_sym_DASH_EQ] = ACTIONS(223), - [anon_sym_STAR_EQ] = ACTIONS(223), - [anon_sym_SLASH_EQ] = ACTIONS(223), - [anon_sym_PERCENT_EQ] = ACTIONS(223), - [anon_sym_EQ_EQ] = ACTIONS(223), - [anon_sym_BANG_EQ] = ACTIONS(223), - [anon_sym_GT_EQ] = ACTIONS(223), - [anon_sym_LT_EQ] = ACTIONS(223), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_break] = ACTIONS(438), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(238), + [anon_sym_EQ] = ACTIONS(240), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(238), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(240), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_SLASH] = ACTIONS(240), + [anon_sym_PERCENT] = ACTIONS(240), + [anon_sym_CARET] = ACTIONS(238), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(240), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_PLUS_EQ] = ACTIONS(238), + [anon_sym_DASH_EQ] = ACTIONS(238), + [anon_sym_STAR_EQ] = ACTIONS(238), + [anon_sym_SLASH_EQ] = ACTIONS(238), + [anon_sym_PERCENT_EQ] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_BANG_EQ] = ACTIONS(238), + [anon_sym_GT_EQ] = ACTIONS(238), + [anon_sym_LT_EQ] = ACTIONS(238), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [57] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(721), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(741), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(274), - [anon_sym_BANG] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(230), + [anon_sym_BANG] = ACTIONS(437), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(274), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_SLASH] = ACTIONS(274), - [anon_sym_PERCENT] = ACTIONS(274), - [anon_sym_CARET] = ACTIONS(272), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(274), - [anon_sym_AMP_AMP] = ACTIONS(272), - [anon_sym_PIPE_PIPE] = ACTIONS(272), - [anon_sym_LT_LT] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(272), - [anon_sym_PLUS_EQ] = ACTIONS(272), - [anon_sym_DASH_EQ] = ACTIONS(272), - [anon_sym_STAR_EQ] = ACTIONS(272), - [anon_sym_SLASH_EQ] = ACTIONS(272), - [anon_sym_PERCENT_EQ] = ACTIONS(272), - [anon_sym_EQ_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_QMARK] = ACTIONS(272), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(230), + [anon_sym_GT] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_SLASH] = ACTIONS(230), + [anon_sym_PERCENT] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(228), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(228), + [anon_sym_PIPE_PIPE] = ACTIONS(228), + [anon_sym_LT_LT] = ACTIONS(228), + [anon_sym_GT_GT] = ACTIONS(228), + [anon_sym_PLUS_EQ] = ACTIONS(228), + [anon_sym_DASH_EQ] = ACTIONS(228), + [anon_sym_STAR_EQ] = ACTIONS(228), + [anon_sym_SLASH_EQ] = ACTIONS(228), + [anon_sym_PERCENT_EQ] = ACTIONS(228), + [anon_sym_EQ_EQ] = ACTIONS(228), + [anon_sym_BANG_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(228), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [58] = { [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(452), - [anon_sym_RBRACE] = ACTIONS(452), - [anon_sym_impl] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_trait] = ACTIONS(454), - [anon_sym_type] = ACTIONS(454), - [anon_sym_const] = ACTIONS(454), - [anon_sym_COLON] = ACTIONS(459), - [anon_sym_EQ] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(452), - [anon_sym_RBRACK] = ACTIONS(452), - [anon_sym_mod] = ACTIONS(454), - [anon_sym_struct] = ACTIONS(454), - [anon_sym_enum] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(456), - [anon_sym_fn] = ACTIONS(454), - [anon_sym_DASH_GT] = ACTIONS(456), - [anon_sym_let] = ACTIONS(454), - [anon_sym_use] = ACTIONS(454), - [anon_sym_COLON_COLON] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(452), - [anon_sym__] = ACTIONS(459), - [anon_sym_RPAREN] = ACTIONS(452), - [anon_sym_u8] = ACTIONS(454), - [anon_sym_i8] = ACTIONS(454), - [anon_sym_u16] = ACTIONS(454), - [anon_sym_i16] = ACTIONS(454), - [anon_sym_u32] = ACTIONS(454), - [anon_sym_i32] = ACTIONS(454), - [anon_sym_u64] = ACTIONS(454), - [anon_sym_i64] = ACTIONS(454), - [anon_sym_u128] = ACTIONS(454), - [anon_sym_i128] = ACTIONS(454), - [anon_sym_usize] = ACTIONS(454), - [anon_sym_bool] = ACTIONS(454), - [anon_sym_ByteArray] = ACTIONS(454), - [anon_sym_felt252] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(456), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PLUS_EQ] = ACTIONS(456), - [anon_sym_DASH_EQ] = ACTIONS(456), - [anon_sym_STAR_EQ] = ACTIONS(456), - [anon_sym_SLASH_EQ] = ACTIONS(456), - [anon_sym_PERCENT_EQ] = ACTIONS(456), - [anon_sym_CARET_EQ] = ACTIONS(456), - [anon_sym_AMP_EQ] = ACTIONS(456), - [anon_sym_PIPE_EQ] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(456), - [anon_sym_BANG_EQ] = ACTIONS(456), - [anon_sym_GT_EQ] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(456), - [anon_sym_AT] = ACTIONS(456), - [anon_sym_DOT_DOT] = ACTIONS(456), - [anon_sym_DOT] = ACTIONS(459), - [anon_sym_EQ_GT] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(456), - [anon_sym_break] = ACTIONS(454), - [anon_sym_continue] = ACTIONS(454), - [anon_sym_default] = ACTIONS(454), - [anon_sym_if] = ACTIONS(454), - [anon_sym_extern] = ACTIONS(454), - [anon_sym_nopanic] = ACTIONS(454), - [anon_sym_loop] = ACTIONS(454), - [anon_sym_match] = ACTIONS(454), - [anon_sym_pub] = ACTIONS(454), - [anon_sym_return] = ACTIONS(454), - [anon_sym_static] = ACTIONS(454), - [anon_sym_while] = ACTIONS(454), - [sym_numeric_literal] = ACTIONS(454), - [aux_sym_string_literal_token1] = ACTIONS(452), - [sym_shortstring_literal] = ACTIONS(452), - [anon_sym_true] = ACTIONS(454), - [anon_sym_false] = ACTIONS(454), - [anon_sym_DOLLAR] = ACTIONS(452), - [sym_identifier] = ACTIONS(454), - [sym_mutable_specifier] = ACTIONS(454), - [sym_super] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_impl] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(463), + [anon_sym_trait] = ACTIONS(461), + [anon_sym_type] = ACTIONS(461), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_const] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_BANG] = ACTIONS(466), + [anon_sym_POUND] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(459), + [anon_sym_RBRACK] = ACTIONS(459), + [anon_sym_mod] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(461), + [anon_sym_enum] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(463), + [anon_sym_fn] = ACTIONS(461), + [anon_sym_DASH_GT] = ACTIONS(463), + [anon_sym_let] = ACTIONS(461), + [anon_sym_use] = ACTIONS(461), + [anon_sym_COLON_COLON] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym__] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(459), + [anon_sym_u8] = ACTIONS(461), + [anon_sym_i8] = ACTIONS(461), + [anon_sym_u16] = ACTIONS(461), + [anon_sym_i16] = ACTIONS(461), + [anon_sym_u32] = ACTIONS(461), + [anon_sym_i32] = ACTIONS(461), + [anon_sym_u64] = ACTIONS(461), + [anon_sym_i64] = ACTIONS(461), + [anon_sym_u128] = ACTIONS(461), + [anon_sym_i128] = ACTIONS(461), + [anon_sym_usize] = ACTIONS(461), + [anon_sym_bool] = ACTIONS(461), + [anon_sym_ByteArray] = ACTIONS(461), + [anon_sym_felt252] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_GT] = ACTIONS(466), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_CARET] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_LT_LT] = ACTIONS(463), + [anon_sym_GT_GT] = ACTIONS(463), + [anon_sym_PLUS_EQ] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(463), + [anon_sym_STAR_EQ] = ACTIONS(463), + [anon_sym_SLASH_EQ] = ACTIONS(463), + [anon_sym_PERCENT_EQ] = ACTIONS(463), + [anon_sym_CARET_EQ] = ACTIONS(463), + [anon_sym_AMP_EQ] = ACTIONS(463), + [anon_sym_PIPE_EQ] = ACTIONS(463), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_BANG_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(463), + [anon_sym_DOT_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(466), + [anon_sym_EQ_GT] = ACTIONS(463), + [anon_sym_QMARK] = ACTIONS(463), + [anon_sym_break] = ACTIONS(461), + [anon_sym_continue] = ACTIONS(461), + [anon_sym_default] = ACTIONS(461), + [anon_sym_if] = ACTIONS(461), + [anon_sym_extern] = ACTIONS(461), + [anon_sym_nopanic] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(461), + [anon_sym_match] = ACTIONS(461), + [anon_sym_pub] = ACTIONS(461), + [anon_sym_return] = ACTIONS(461), + [anon_sym_static] = ACTIONS(461), + [anon_sym_while] = ACTIONS(461), + [anon_sym_for] = ACTIONS(461), + [sym_numeric_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(459), + [sym_shortstring_literal] = ACTIONS(459), + [anon_sym_true] = ACTIONS(461), + [anon_sym_false] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(459), + [sym_identifier] = ACTIONS(461), + [sym_mutable_specifier] = ACTIONS(461), + [sym_super] = ACTIONS(461), [sym_line_comment] = ACTIONS(3), }, [59] = { [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_RBRACE] = ACTIONS(462), - [anon_sym_impl] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_trait] = ACTIONS(464), - [anon_sym_type] = ACTIONS(464), - [anon_sym_const] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(468), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_RBRACK] = ACTIONS(462), - [anon_sym_mod] = ACTIONS(464), - [anon_sym_struct] = ACTIONS(464), - [anon_sym_enum] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_fn] = ACTIONS(464), - [anon_sym_DASH_GT] = ACTIONS(466), - [anon_sym_let] = ACTIONS(464), - [anon_sym_use] = ACTIONS(464), - [anon_sym_COLON_COLON] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_LPAREN] = ACTIONS(462), - [anon_sym__] = ACTIONS(468), - [anon_sym_RPAREN] = ACTIONS(462), - [anon_sym_u8] = ACTIONS(464), - [anon_sym_i8] = ACTIONS(464), - [anon_sym_u16] = ACTIONS(464), - [anon_sym_i16] = ACTIONS(464), - [anon_sym_u32] = ACTIONS(464), - [anon_sym_i32] = ACTIONS(464), - [anon_sym_u64] = ACTIONS(464), - [anon_sym_i64] = ACTIONS(464), - [anon_sym_u128] = ACTIONS(464), - [anon_sym_i128] = ACTIONS(464), - [anon_sym_usize] = ACTIONS(464), - [anon_sym_bool] = ACTIONS(464), - [anon_sym_ByteArray] = ACTIONS(464), - [anon_sym_felt252] = ACTIONS(464), - [anon_sym_LT] = ACTIONS(468), - [anon_sym_GT] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(468), - [anon_sym_PERCENT] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(466), - [anon_sym_PLUS_EQ] = ACTIONS(466), - [anon_sym_DASH_EQ] = ACTIONS(466), - [anon_sym_STAR_EQ] = ACTIONS(466), - [anon_sym_SLASH_EQ] = ACTIONS(466), - [anon_sym_PERCENT_EQ] = ACTIONS(466), - [anon_sym_CARET_EQ] = ACTIONS(466), - [anon_sym_AMP_EQ] = ACTIONS(466), - [anon_sym_PIPE_EQ] = ACTIONS(466), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_AT] = ACTIONS(466), - [anon_sym_DOT_DOT] = ACTIONS(466), - [anon_sym_DOT] = ACTIONS(468), - [anon_sym_EQ_GT] = ACTIONS(466), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_break] = ACTIONS(464), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_default] = ACTIONS(464), - [anon_sym_if] = ACTIONS(464), - [anon_sym_extern] = ACTIONS(464), - [anon_sym_nopanic] = ACTIONS(464), - [anon_sym_loop] = ACTIONS(464), - [anon_sym_match] = ACTIONS(464), - [anon_sym_pub] = ACTIONS(464), - [anon_sym_return] = ACTIONS(464), - [anon_sym_static] = ACTIONS(464), - [anon_sym_while] = ACTIONS(464), - [sym_numeric_literal] = ACTIONS(464), - [aux_sym_string_literal_token1] = ACTIONS(462), - [sym_shortstring_literal] = ACTIONS(462), - [anon_sym_true] = ACTIONS(464), - [anon_sym_false] = ACTIONS(464), - [anon_sym_DOLLAR] = ACTIONS(462), - [sym_identifier] = ACTIONS(464), - [sym_mutable_specifier] = ACTIONS(464), - [sym_super] = ACTIONS(464), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_impl] = ACTIONS(471), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_trait] = ACTIONS(471), + [anon_sym_type] = ACTIONS(471), + [anon_sym_COLON] = ACTIONS(475), + [anon_sym_const] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_POUND] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_RBRACK] = ACTIONS(469), + [anon_sym_mod] = ACTIONS(471), + [anon_sym_struct] = ACTIONS(471), + [anon_sym_enum] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_fn] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_let] = ACTIONS(471), + [anon_sym_use] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym__] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_ByteArray] = ACTIONS(471), + [anon_sym_felt252] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_PERCENT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(475), + [anon_sym_TILDE] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(473), + [anon_sym_PIPE_PIPE] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), + [anon_sym_STAR_EQ] = ACTIONS(473), + [anon_sym_SLASH_EQ] = ACTIONS(473), + [anon_sym_PERCENT_EQ] = ACTIONS(473), + [anon_sym_CARET_EQ] = ACTIONS(473), + [anon_sym_AMP_EQ] = ACTIONS(473), + [anon_sym_PIPE_EQ] = ACTIONS(473), + [anon_sym_EQ_EQ] = ACTIONS(473), + [anon_sym_BANG_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_EQ_GT] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_break] = ACTIONS(471), + [anon_sym_continue] = ACTIONS(471), + [anon_sym_default] = ACTIONS(471), + [anon_sym_if] = ACTIONS(471), + [anon_sym_extern] = ACTIONS(471), + [anon_sym_nopanic] = ACTIONS(471), + [anon_sym_loop] = ACTIONS(471), + [anon_sym_match] = ACTIONS(471), + [anon_sym_pub] = ACTIONS(471), + [anon_sym_return] = ACTIONS(471), + [anon_sym_static] = ACTIONS(471), + [anon_sym_while] = ACTIONS(471), + [anon_sym_for] = ACTIONS(471), + [sym_numeric_literal] = ACTIONS(471), + [aux_sym_string_literal_token1] = ACTIONS(469), + [sym_shortstring_literal] = ACTIONS(469), + [anon_sym_true] = ACTIONS(471), + [anon_sym_false] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(469), + [sym_identifier] = ACTIONS(471), + [sym_mutable_specifier] = ACTIONS(471), + [sym_super] = ACTIONS(471), [sym_line_comment] = ACTIONS(3), }, [60] = { - [anon_sym_LBRACE] = ACTIONS(470), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_impl] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_trait] = ACTIONS(472), - [anon_sym_type] = ACTIONS(472), - [anon_sym_const] = ACTIONS(472), - [anon_sym_COLON] = ACTIONS(472), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(472), - [anon_sym_POUND] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(470), - [anon_sym_RBRACK] = ACTIONS(470), - [anon_sym_mod] = ACTIONS(472), - [anon_sym_struct] = ACTIONS(472), - [anon_sym_enum] = ACTIONS(472), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_fn] = ACTIONS(472), - [anon_sym_DASH_GT] = ACTIONS(470), - [anon_sym_let] = ACTIONS(472), - [anon_sym_use] = ACTIONS(472), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_LPAREN] = ACTIONS(470), - [anon_sym__] = ACTIONS(472), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_ByteArray] = ACTIONS(472), - [anon_sym_felt252] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_TILDE] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(470), - [anon_sym_GT_GT] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_AT] = ACTIONS(470), - [anon_sym_DOT_DOT] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(472), - [anon_sym_EQ_GT] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(470), - [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), - [sym_numeric_literal] = ACTIONS(472), - [aux_sym_string_literal_token1] = ACTIONS(470), - [sym_shortstring_literal] = ACTIONS(470), - [anon_sym_true] = ACTIONS(472), - [anon_sym_false] = ACTIONS(472), - [anon_sym_DOLLAR] = ACTIONS(470), - [sym_identifier] = ACTIONS(472), - [sym_mutable_specifier] = ACTIONS(472), - [sym_super] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_impl] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_trait] = ACTIONS(479), + [anon_sym_type] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(479), + [anon_sym_const] = ACTIONS(479), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_RBRACK] = ACTIONS(477), + [anon_sym_mod] = ACTIONS(479), + [anon_sym_struct] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(479), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_fn] = ACTIONS(479), + [anon_sym_DASH_GT] = ACTIONS(477), + [anon_sym_let] = ACTIONS(479), + [anon_sym_use] = ACTIONS(479), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym__] = ACTIONS(479), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_u8] = ACTIONS(479), + [anon_sym_i8] = ACTIONS(479), + [anon_sym_u16] = ACTIONS(479), + [anon_sym_i16] = ACTIONS(479), + [anon_sym_u32] = ACTIONS(479), + [anon_sym_i32] = ACTIONS(479), + [anon_sym_u64] = ACTIONS(479), + [anon_sym_i64] = ACTIONS(479), + [anon_sym_u128] = ACTIONS(479), + [anon_sym_i128] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_ByteArray] = ACTIONS(479), + [anon_sym_felt252] = ACTIONS(479), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(479), + [anon_sym_PERCENT] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_AMP] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_LT_LT] = ACTIONS(477), + [anon_sym_GT_GT] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_STAR_EQ] = ACTIONS(477), + [anon_sym_SLASH_EQ] = ACTIONS(477), + [anon_sym_PERCENT_EQ] = ACTIONS(477), + [anon_sym_CARET_EQ] = ACTIONS(477), + [anon_sym_AMP_EQ] = ACTIONS(477), + [anon_sym_PIPE_EQ] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_GT_EQ] = ACTIONS(477), + [anon_sym_LT_EQ] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(479), + [anon_sym_EQ_GT] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_default] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_extern] = ACTIONS(479), + [anon_sym_nopanic] = ACTIONS(479), + [anon_sym_loop] = ACTIONS(479), + [anon_sym_match] = ACTIONS(479), + [anon_sym_pub] = ACTIONS(479), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), + [sym_numeric_literal] = ACTIONS(479), + [aux_sym_string_literal_token1] = ACTIONS(477), + [sym_shortstring_literal] = ACTIONS(477), + [anon_sym_true] = ACTIONS(479), + [anon_sym_false] = ACTIONS(479), + [anon_sym_DOLLAR] = ACTIONS(477), + [sym_identifier] = ACTIONS(479), + [sym_mutable_specifier] = ACTIONS(479), + [sym_super] = ACTIONS(479), [sym_line_comment] = ACTIONS(3), }, [61] = { - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_impl] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_trait] = ACTIONS(476), - [anon_sym_type] = ACTIONS(476), - [anon_sym_const] = ACTIONS(476), - [anon_sym_COLON] = ACTIONS(476), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_POUND] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_RBRACK] = ACTIONS(474), - [anon_sym_mod] = ACTIONS(476), - [anon_sym_struct] = ACTIONS(476), - [anon_sym_enum] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_fn] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(474), - [anon_sym_let] = ACTIONS(476), - [anon_sym_use] = ACTIONS(476), - [anon_sym_COLON_COLON] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym__] = ACTIONS(476), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_u8] = ACTIONS(476), - [anon_sym_i8] = ACTIONS(476), - [anon_sym_u16] = ACTIONS(476), - [anon_sym_i16] = ACTIONS(476), - [anon_sym_u32] = ACTIONS(476), - [anon_sym_i32] = ACTIONS(476), - [anon_sym_u64] = ACTIONS(476), - [anon_sym_i64] = ACTIONS(476), - [anon_sym_u128] = ACTIONS(476), - [anon_sym_i128] = ACTIONS(476), - [anon_sym_usize] = ACTIONS(476), - [anon_sym_bool] = ACTIONS(476), - [anon_sym_ByteArray] = ACTIONS(476), - [anon_sym_felt252] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_AT] = ACTIONS(474), - [anon_sym_DOT_DOT] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(476), - [anon_sym_EQ_GT] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(474), - [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), - [sym_numeric_literal] = ACTIONS(476), - [aux_sym_string_literal_token1] = ACTIONS(474), - [sym_shortstring_literal] = ACTIONS(474), - [anon_sym_true] = ACTIONS(476), - [anon_sym_false] = ACTIONS(476), - [anon_sym_DOLLAR] = ACTIONS(474), - [sym_identifier] = ACTIONS(476), - [sym_mutable_specifier] = ACTIONS(476), - [sym_super] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_impl] = ACTIONS(483), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_trait] = ACTIONS(483), + [anon_sym_type] = ACTIONS(483), + [anon_sym_COLON] = ACTIONS(483), + [anon_sym_const] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_RBRACK] = ACTIONS(481), + [anon_sym_mod] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_enum] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(481), + [anon_sym_let] = ACTIONS(483), + [anon_sym_use] = ACTIONS(483), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym__] = ACTIONS(483), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_u8] = ACTIONS(483), + [anon_sym_i8] = ACTIONS(483), + [anon_sym_u16] = ACTIONS(483), + [anon_sym_i16] = ACTIONS(483), + [anon_sym_u32] = ACTIONS(483), + [anon_sym_i32] = ACTIONS(483), + [anon_sym_u64] = ACTIONS(483), + [anon_sym_i64] = ACTIONS(483), + [anon_sym_u128] = ACTIONS(483), + [anon_sym_i128] = ACTIONS(483), + [anon_sym_usize] = ACTIONS(483), + [anon_sym_bool] = ACTIONS(483), + [anon_sym_ByteArray] = ACTIONS(483), + [anon_sym_felt252] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_SLASH] = ACTIONS(483), + [anon_sym_PERCENT] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_PERCENT_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(481), + [anon_sym_BANG_EQ] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(483), + [anon_sym_EQ_GT] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_break] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_default] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_extern] = ACTIONS(483), + [anon_sym_nopanic] = ACTIONS(483), + [anon_sym_loop] = ACTIONS(483), + [anon_sym_match] = ACTIONS(483), + [anon_sym_pub] = ACTIONS(483), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [anon_sym_for] = ACTIONS(483), + [sym_numeric_literal] = ACTIONS(483), + [aux_sym_string_literal_token1] = ACTIONS(481), + [sym_shortstring_literal] = ACTIONS(481), + [anon_sym_true] = ACTIONS(483), + [anon_sym_false] = ACTIONS(483), + [anon_sym_DOLLAR] = ACTIONS(481), + [sym_identifier] = ACTIONS(483), + [sym_mutable_specifier] = ACTIONS(483), + [sym_super] = ACTIONS(483), [sym_line_comment] = ACTIONS(3), }, [62] = { - [anon_sym_LBRACE] = ACTIONS(478), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_impl] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_trait] = ACTIONS(480), - [anon_sym_type] = ACTIONS(480), - [anon_sym_const] = ACTIONS(480), - [anon_sym_COLON] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_BANG] = ACTIONS(480), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_RBRACK] = ACTIONS(478), - [anon_sym_mod] = ACTIONS(480), - [anon_sym_struct] = ACTIONS(480), - [anon_sym_enum] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_fn] = ACTIONS(480), - [anon_sym_DASH_GT] = ACTIONS(478), - [anon_sym_let] = ACTIONS(480), - [anon_sym_use] = ACTIONS(480), - [anon_sym_COLON_COLON] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym__] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_u8] = ACTIONS(480), - [anon_sym_i8] = ACTIONS(480), - [anon_sym_u16] = ACTIONS(480), - [anon_sym_i16] = ACTIONS(480), - [anon_sym_u32] = ACTIONS(480), - [anon_sym_i32] = ACTIONS(480), - [anon_sym_u64] = ACTIONS(480), - [anon_sym_i64] = ACTIONS(480), - [anon_sym_u128] = ACTIONS(480), - [anon_sym_i128] = ACTIONS(480), - [anon_sym_usize] = ACTIONS(480), - [anon_sym_bool] = ACTIONS(480), - [anon_sym_ByteArray] = ACTIONS(480), - [anon_sym_felt252] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_CARET] = ACTIONS(480), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_PLUS_EQ] = ACTIONS(478), - [anon_sym_DASH_EQ] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(478), - [anon_sym_SLASH_EQ] = ACTIONS(478), - [anon_sym_PERCENT_EQ] = ACTIONS(478), - [anon_sym_CARET_EQ] = ACTIONS(478), - [anon_sym_AMP_EQ] = ACTIONS(478), - [anon_sym_PIPE_EQ] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_DOT_DOT] = ACTIONS(478), - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_EQ_GT] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_default] = ACTIONS(480), - [anon_sym_if] = ACTIONS(480), - [anon_sym_extern] = ACTIONS(480), - [anon_sym_nopanic] = ACTIONS(480), - [anon_sym_loop] = ACTIONS(480), - [anon_sym_match] = ACTIONS(480), - [anon_sym_pub] = ACTIONS(480), - [anon_sym_return] = ACTIONS(480), - [anon_sym_static] = ACTIONS(480), - [anon_sym_while] = ACTIONS(480), - [sym_numeric_literal] = ACTIONS(480), - [aux_sym_string_literal_token1] = ACTIONS(478), - [sym_shortstring_literal] = ACTIONS(478), - [anon_sym_true] = ACTIONS(480), - [anon_sym_false] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(478), - [sym_identifier] = ACTIONS(480), - [sym_mutable_specifier] = ACTIONS(480), - [sym_super] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_impl] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_trait] = ACTIONS(487), + [anon_sym_type] = ACTIONS(487), + [anon_sym_COLON] = ACTIONS(487), + [anon_sym_const] = ACTIONS(487), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_POUND] = ACTIONS(485), + [anon_sym_LBRACK] = ACTIONS(485), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_mod] = ACTIONS(487), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_enum] = ACTIONS(487), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_DASH_GT] = ACTIONS(485), + [anon_sym_let] = ACTIONS(487), + [anon_sym_use] = ACTIONS(487), + [anon_sym_COLON_COLON] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym__] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_ByteArray] = ACTIONS(487), + [anon_sym_felt252] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_PERCENT] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_BANG_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(487), + [anon_sym_if] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(487), + [anon_sym_nopanic] = ACTIONS(487), + [anon_sym_loop] = ACTIONS(487), + [anon_sym_match] = ACTIONS(487), + [anon_sym_pub] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [sym_numeric_literal] = ACTIONS(487), + [aux_sym_string_literal_token1] = ACTIONS(485), + [sym_shortstring_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_DOLLAR] = ACTIONS(485), + [sym_identifier] = ACTIONS(487), + [sym_mutable_specifier] = ACTIONS(487), + [sym_super] = ACTIONS(487), [sym_line_comment] = ACTIONS(3), }, [63] = { - [anon_sym_LBRACE] = ACTIONS(482), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_impl] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_trait] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_const] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(484), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_BANG] = ACTIONS(484), - [anon_sym_POUND] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(482), - [anon_sym_RBRACK] = ACTIONS(482), - [anon_sym_mod] = ACTIONS(484), - [anon_sym_struct] = ACTIONS(484), - [anon_sym_enum] = ACTIONS(484), - [anon_sym_COMMA] = ACTIONS(482), - [anon_sym_fn] = ACTIONS(484), - [anon_sym_DASH_GT] = ACTIONS(482), - [anon_sym_let] = ACTIONS(484), - [anon_sym_use] = ACTIONS(484), - [anon_sym_COLON_COLON] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym__] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(482), - [anon_sym_u8] = ACTIONS(484), - [anon_sym_i8] = ACTIONS(484), - [anon_sym_u16] = ACTIONS(484), - [anon_sym_i16] = ACTIONS(484), - [anon_sym_u32] = ACTIONS(484), - [anon_sym_i32] = ACTIONS(484), - [anon_sym_u64] = ACTIONS(484), - [anon_sym_i64] = ACTIONS(484), - [anon_sym_u128] = ACTIONS(484), - [anon_sym_i128] = ACTIONS(484), - [anon_sym_usize] = ACTIONS(484), - [anon_sym_bool] = ACTIONS(484), - [anon_sym_ByteArray] = ACTIONS(484), - [anon_sym_felt252] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(484), - [anon_sym_GT] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(484), - [anon_sym_DASH] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_TILDE] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(482), - [anon_sym_PIPE_PIPE] = ACTIONS(482), - [anon_sym_LT_LT] = ACTIONS(482), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_PLUS_EQ] = ACTIONS(482), - [anon_sym_DASH_EQ] = ACTIONS(482), - [anon_sym_STAR_EQ] = ACTIONS(482), - [anon_sym_SLASH_EQ] = ACTIONS(482), - [anon_sym_PERCENT_EQ] = ACTIONS(482), - [anon_sym_CARET_EQ] = ACTIONS(482), - [anon_sym_AMP_EQ] = ACTIONS(482), - [anon_sym_PIPE_EQ] = ACTIONS(482), - [anon_sym_EQ_EQ] = ACTIONS(482), - [anon_sym_BANG_EQ] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(482), - [anon_sym_DOT_DOT] = ACTIONS(482), - [anon_sym_DOT] = ACTIONS(484), - [anon_sym_EQ_GT] = ACTIONS(482), - [anon_sym_QMARK] = ACTIONS(482), - [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), - [sym_numeric_literal] = ACTIONS(484), - [aux_sym_string_literal_token1] = ACTIONS(482), - [sym_shortstring_literal] = ACTIONS(482), - [anon_sym_true] = ACTIONS(484), - [anon_sym_false] = ACTIONS(484), - [anon_sym_DOLLAR] = ACTIONS(482), - [sym_identifier] = ACTIONS(484), - [sym_mutable_specifier] = ACTIONS(484), - [sym_super] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_impl] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_trait] = ACTIONS(491), + [anon_sym_type] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(491), + [anon_sym_const] = ACTIONS(491), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_POUND] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(489), + [anon_sym_RBRACK] = ACTIONS(489), + [anon_sym_mod] = ACTIONS(491), + [anon_sym_struct] = ACTIONS(491), + [anon_sym_enum] = ACTIONS(491), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_fn] = ACTIONS(491), + [anon_sym_DASH_GT] = ACTIONS(489), + [anon_sym_let] = ACTIONS(491), + [anon_sym_use] = ACTIONS(491), + [anon_sym_COLON_COLON] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_u8] = ACTIONS(491), + [anon_sym_i8] = ACTIONS(491), + [anon_sym_u16] = ACTIONS(491), + [anon_sym_i16] = ACTIONS(491), + [anon_sym_u32] = ACTIONS(491), + [anon_sym_i32] = ACTIONS(491), + [anon_sym_u64] = ACTIONS(491), + [anon_sym_i64] = ACTIONS(491), + [anon_sym_u128] = ACTIONS(491), + [anon_sym_i128] = ACTIONS(491), + [anon_sym_usize] = ACTIONS(491), + [anon_sym_bool] = ACTIONS(491), + [anon_sym_ByteArray] = ACTIONS(491), + [anon_sym_felt252] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_SLASH] = ACTIONS(491), + [anon_sym_PERCENT] = ACTIONS(491), + [anon_sym_CARET] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_AMP_AMP] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_PLUS_EQ] = ACTIONS(489), + [anon_sym_DASH_EQ] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(489), + [anon_sym_SLASH_EQ] = ACTIONS(489), + [anon_sym_PERCENT_EQ] = ACTIONS(489), + [anon_sym_CARET_EQ] = ACTIONS(489), + [anon_sym_AMP_EQ] = ACTIONS(489), + [anon_sym_PIPE_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_GT_EQ] = ACTIONS(489), + [anon_sym_LT_EQ] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_DOT_DOT] = ACTIONS(489), + [anon_sym_DOT] = ACTIONS(491), + [anon_sym_EQ_GT] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_default] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_extern] = ACTIONS(491), + [anon_sym_nopanic] = ACTIONS(491), + [anon_sym_loop] = ACTIONS(491), + [anon_sym_match] = ACTIONS(491), + [anon_sym_pub] = ACTIONS(491), + [anon_sym_return] = ACTIONS(491), + [anon_sym_static] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [sym_numeric_literal] = ACTIONS(491), + [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_shortstring_literal] = ACTIONS(489), + [anon_sym_true] = ACTIONS(491), + [anon_sym_false] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(489), + [sym_identifier] = ACTIONS(491), + [sym_mutable_specifier] = ACTIONS(491), + [sym_super] = ACTIONS(491), [sym_line_comment] = ACTIONS(3), }, [64] = { - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_impl] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_trait] = ACTIONS(488), - [anon_sym_type] = ACTIONS(488), - [anon_sym_const] = ACTIONS(488), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_BANG] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_RBRACK] = ACTIONS(486), - [anon_sym_mod] = ACTIONS(488), - [anon_sym_struct] = ACTIONS(488), - [anon_sym_enum] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_fn] = ACTIONS(488), - [anon_sym_DASH_GT] = ACTIONS(486), - [anon_sym_let] = ACTIONS(488), - [anon_sym_use] = ACTIONS(488), - [anon_sym_COLON_COLON] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym__] = ACTIONS(488), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_u8] = ACTIONS(488), - [anon_sym_i8] = ACTIONS(488), - [anon_sym_u16] = ACTIONS(488), - [anon_sym_i16] = ACTIONS(488), - [anon_sym_u32] = ACTIONS(488), - [anon_sym_i32] = ACTIONS(488), - [anon_sym_u64] = ACTIONS(488), - [anon_sym_i64] = ACTIONS(488), - [anon_sym_u128] = ACTIONS(488), - [anon_sym_i128] = ACTIONS(488), - [anon_sym_usize] = ACTIONS(488), - [anon_sym_bool] = ACTIONS(488), - [anon_sym_ByteArray] = ACTIONS(488), - [anon_sym_felt252] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(488), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_PERCENT_EQ] = ACTIONS(486), - [anon_sym_CARET_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_AT] = ACTIONS(486), - [anon_sym_DOT_DOT] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(488), - [anon_sym_EQ_GT] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_break] = ACTIONS(488), - [anon_sym_continue] = ACTIONS(488), - [anon_sym_default] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_extern] = ACTIONS(488), - [anon_sym_nopanic] = ACTIONS(488), - [anon_sym_loop] = ACTIONS(488), - [anon_sym_match] = ACTIONS(488), - [anon_sym_pub] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_static] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [sym_numeric_literal] = ACTIONS(488), - [aux_sym_string_literal_token1] = ACTIONS(486), - [sym_shortstring_literal] = ACTIONS(486), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), - [anon_sym_DOLLAR] = ACTIONS(486), - [sym_identifier] = ACTIONS(488), - [sym_mutable_specifier] = ACTIONS(488), - [sym_super] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_impl] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_trait] = ACTIONS(495), + [anon_sym_type] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(495), + [anon_sym_const] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_POUND] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(493), + [anon_sym_RBRACK] = ACTIONS(493), + [anon_sym_mod] = ACTIONS(495), + [anon_sym_struct] = ACTIONS(495), + [anon_sym_enum] = ACTIONS(495), + [anon_sym_COMMA] = ACTIONS(493), + [anon_sym_fn] = ACTIONS(495), + [anon_sym_DASH_GT] = ACTIONS(493), + [anon_sym_let] = ACTIONS(495), + [anon_sym_use] = ACTIONS(495), + [anon_sym_COLON_COLON] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym__] = ACTIONS(495), + [anon_sym_RPAREN] = ACTIONS(493), + [anon_sym_u8] = ACTIONS(495), + [anon_sym_i8] = ACTIONS(495), + [anon_sym_u16] = ACTIONS(495), + [anon_sym_i16] = ACTIONS(495), + [anon_sym_u32] = ACTIONS(495), + [anon_sym_i32] = ACTIONS(495), + [anon_sym_u64] = ACTIONS(495), + [anon_sym_i64] = ACTIONS(495), + [anon_sym_u128] = ACTIONS(495), + [anon_sym_i128] = ACTIONS(495), + [anon_sym_usize] = ACTIONS(495), + [anon_sym_bool] = ACTIONS(495), + [anon_sym_ByteArray] = ACTIONS(495), + [anon_sym_felt252] = ACTIONS(495), + [anon_sym_LT] = ACTIONS(495), + [anon_sym_GT] = ACTIONS(495), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_PERCENT] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(495), + [anon_sym_PIPE] = ACTIONS(495), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_LT_LT] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_STAR_EQ] = ACTIONS(493), + [anon_sym_SLASH_EQ] = ACTIONS(493), + [anon_sym_PERCENT_EQ] = ACTIONS(493), + [anon_sym_CARET_EQ] = ACTIONS(493), + [anon_sym_AMP_EQ] = ACTIONS(493), + [anon_sym_PIPE_EQ] = ACTIONS(493), + [anon_sym_EQ_EQ] = ACTIONS(493), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_AT] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_EQ_GT] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(493), + [anon_sym_break] = ACTIONS(495), + [anon_sym_continue] = ACTIONS(495), + [anon_sym_default] = ACTIONS(495), + [anon_sym_if] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(495), + [anon_sym_nopanic] = ACTIONS(495), + [anon_sym_loop] = ACTIONS(495), + [anon_sym_match] = ACTIONS(495), + [anon_sym_pub] = ACTIONS(495), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(495), + [anon_sym_while] = ACTIONS(495), + [anon_sym_for] = ACTIONS(495), + [sym_numeric_literal] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(493), + [sym_shortstring_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_DOLLAR] = ACTIONS(493), + [sym_identifier] = ACTIONS(495), + [sym_mutable_specifier] = ACTIONS(495), + [sym_super] = ACTIONS(495), [sym_line_comment] = ACTIONS(3), }, [65] = { - [anon_sym_LBRACE] = ACTIONS(490), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_impl] = ACTIONS(492), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_trait] = ACTIONS(492), - [anon_sym_type] = ACTIONS(492), - [anon_sym_const] = ACTIONS(492), - [anon_sym_COLON] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_POUND] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(490), - [anon_sym_RBRACK] = ACTIONS(490), - [anon_sym_mod] = ACTIONS(492), - [anon_sym_struct] = ACTIONS(492), - [anon_sym_enum] = ACTIONS(492), - [anon_sym_COMMA] = ACTIONS(490), - [anon_sym_fn] = ACTIONS(492), - [anon_sym_DASH_GT] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_use] = ACTIONS(492), - [anon_sym_COLON_COLON] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym__] = ACTIONS(492), - [anon_sym_RPAREN] = ACTIONS(490), - [anon_sym_u8] = ACTIONS(492), - [anon_sym_i8] = ACTIONS(492), - [anon_sym_u16] = ACTIONS(492), - [anon_sym_i16] = ACTIONS(492), - [anon_sym_u32] = ACTIONS(492), - [anon_sym_i32] = ACTIONS(492), - [anon_sym_u64] = ACTIONS(492), - [anon_sym_i64] = ACTIONS(492), - [anon_sym_u128] = ACTIONS(492), - [anon_sym_i128] = ACTIONS(492), - [anon_sym_usize] = ACTIONS(492), - [anon_sym_bool] = ACTIONS(492), - [anon_sym_ByteArray] = ACTIONS(492), - [anon_sym_felt252] = ACTIONS(492), - [anon_sym_LT] = ACTIONS(492), - [anon_sym_GT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_PERCENT] = ACTIONS(492), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(492), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(490), - [anon_sym_BANG_EQ] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(490), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(492), - [anon_sym_EQ_GT] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_break] = ACTIONS(492), - [anon_sym_continue] = ACTIONS(492), - [anon_sym_default] = ACTIONS(492), - [anon_sym_if] = ACTIONS(492), - [anon_sym_extern] = ACTIONS(492), - [anon_sym_nopanic] = ACTIONS(492), - [anon_sym_loop] = ACTIONS(492), - [anon_sym_match] = ACTIONS(492), - [anon_sym_pub] = ACTIONS(492), - [anon_sym_return] = ACTIONS(492), - [anon_sym_static] = ACTIONS(492), - [anon_sym_while] = ACTIONS(492), - [sym_numeric_literal] = ACTIONS(492), - [aux_sym_string_literal_token1] = ACTIONS(490), - [sym_shortstring_literal] = ACTIONS(490), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_DOLLAR] = ACTIONS(490), - [sym_identifier] = ACTIONS(492), - [sym_mutable_specifier] = ACTIONS(492), - [sym_super] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_impl] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_trait] = ACTIONS(499), + [anon_sym_type] = ACTIONS(499), + [anon_sym_COLON] = ACTIONS(499), + [anon_sym_const] = ACTIONS(499), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_POUND] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_RBRACK] = ACTIONS(497), + [anon_sym_mod] = ACTIONS(499), + [anon_sym_struct] = ACTIONS(499), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_COMMA] = ACTIONS(497), + [anon_sym_fn] = ACTIONS(499), + [anon_sym_DASH_GT] = ACTIONS(497), + [anon_sym_let] = ACTIONS(499), + [anon_sym_use] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym__] = ACTIONS(499), + [anon_sym_RPAREN] = ACTIONS(497), + [anon_sym_u8] = ACTIONS(499), + [anon_sym_i8] = ACTIONS(499), + [anon_sym_u16] = ACTIONS(499), + [anon_sym_i16] = ACTIONS(499), + [anon_sym_u32] = ACTIONS(499), + [anon_sym_i32] = ACTIONS(499), + [anon_sym_u64] = ACTIONS(499), + [anon_sym_i64] = ACTIONS(499), + [anon_sym_u128] = ACTIONS(499), + [anon_sym_i128] = ACTIONS(499), + [anon_sym_usize] = ACTIONS(499), + [anon_sym_bool] = ACTIONS(499), + [anon_sym_ByteArray] = ACTIONS(499), + [anon_sym_felt252] = ACTIONS(499), + [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(497), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT_GT] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(497), + [anon_sym_STAR_EQ] = ACTIONS(497), + [anon_sym_SLASH_EQ] = ACTIONS(497), + [anon_sym_PERCENT_EQ] = ACTIONS(497), + [anon_sym_CARET_EQ] = ACTIONS(497), + [anon_sym_AMP_EQ] = ACTIONS(497), + [anon_sym_PIPE_EQ] = ACTIONS(497), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(497), + [anon_sym_LT_EQ] = ACTIONS(497), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(499), + [anon_sym_EQ_GT] = ACTIONS(497), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(499), + [anon_sym_if] = ACTIONS(499), + [anon_sym_extern] = ACTIONS(499), + [anon_sym_nopanic] = ACTIONS(499), + [anon_sym_loop] = ACTIONS(499), + [anon_sym_match] = ACTIONS(499), + [anon_sym_pub] = ACTIONS(499), + [anon_sym_return] = ACTIONS(499), + [anon_sym_static] = ACTIONS(499), + [anon_sym_while] = ACTIONS(499), + [anon_sym_for] = ACTIONS(499), + [sym_numeric_literal] = ACTIONS(499), + [aux_sym_string_literal_token1] = ACTIONS(497), + [sym_shortstring_literal] = ACTIONS(497), + [anon_sym_true] = ACTIONS(499), + [anon_sym_false] = ACTIONS(499), + [anon_sym_DOLLAR] = ACTIONS(497), + [sym_identifier] = ACTIONS(499), + [sym_mutable_specifier] = ACTIONS(499), + [sym_super] = ACTIONS(499), [sym_line_comment] = ACTIONS(3), }, [66] = { - [anon_sym_LBRACE] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_impl] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(494), - [anon_sym_trait] = ACTIONS(496), - [anon_sym_type] = ACTIONS(496), - [anon_sym_const] = ACTIONS(496), - [anon_sym_COLON] = ACTIONS(496), - [anon_sym_EQ] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_POUND] = ACTIONS(494), - [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(494), - [anon_sym_fn] = ACTIONS(496), - [anon_sym_DASH_GT] = ACTIONS(494), - [anon_sym_let] = ACTIONS(496), - [anon_sym_use] = ACTIONS(496), - [anon_sym_COLON_COLON] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [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(496), - [anon_sym_GT] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(496), - [anon_sym_PERCENT] = ACTIONS(496), - [anon_sym_CARET] = ACTIONS(496), - [anon_sym_TILDE] = ACTIONS(494), - [anon_sym_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(496), - [anon_sym_AMP_AMP] = ACTIONS(494), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(494), - [anon_sym_PLUS_EQ] = ACTIONS(494), - [anon_sym_DASH_EQ] = ACTIONS(494), - [anon_sym_STAR_EQ] = ACTIONS(494), - [anon_sym_SLASH_EQ] = ACTIONS(494), - [anon_sym_PERCENT_EQ] = ACTIONS(494), - [anon_sym_CARET_EQ] = ACTIONS(494), - [anon_sym_AMP_EQ] = ACTIONS(494), - [anon_sym_PIPE_EQ] = ACTIONS(494), - [anon_sym_EQ_EQ] = ACTIONS(494), - [anon_sym_BANG_EQ] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(494), - [anon_sym_AT] = ACTIONS(494), - [anon_sym_DOT_DOT] = ACTIONS(494), - [anon_sym_DOT] = ACTIONS(496), - [anon_sym_EQ_GT] = ACTIONS(494), - [anon_sym_QMARK] = ACTIONS(494), - [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), - [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), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_impl] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_trait] = ACTIONS(503), + [anon_sym_type] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(503), + [anon_sym_const] = ACTIONS(503), + [anon_sym_EQ] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_POUND] = ACTIONS(501), + [anon_sym_LBRACK] = ACTIONS(501), + [anon_sym_RBRACK] = ACTIONS(501), + [anon_sym_mod] = ACTIONS(503), + [anon_sym_struct] = ACTIONS(503), + [anon_sym_enum] = ACTIONS(503), + [anon_sym_COMMA] = ACTIONS(501), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_DASH_GT] = ACTIONS(501), + [anon_sym_let] = ACTIONS(503), + [anon_sym_use] = ACTIONS(503), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym_STAR] = ACTIONS(503), + [anon_sym_LPAREN] = ACTIONS(501), + [anon_sym__] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_u8] = ACTIONS(503), + [anon_sym_i8] = ACTIONS(503), + [anon_sym_u16] = ACTIONS(503), + [anon_sym_i16] = ACTIONS(503), + [anon_sym_u32] = ACTIONS(503), + [anon_sym_i32] = ACTIONS(503), + [anon_sym_u64] = ACTIONS(503), + [anon_sym_i64] = ACTIONS(503), + [anon_sym_u128] = ACTIONS(503), + [anon_sym_i128] = ACTIONS(503), + [anon_sym_usize] = ACTIONS(503), + [anon_sym_bool] = ACTIONS(503), + [anon_sym_ByteArray] = ACTIONS(503), + [anon_sym_felt252] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(503), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_TILDE] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_LT_LT] = ACTIONS(501), + [anon_sym_GT_GT] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_EQ_EQ] = ACTIONS(501), + [anon_sym_BANG_EQ] = ACTIONS(501), + [anon_sym_GT_EQ] = ACTIONS(501), + [anon_sym_LT_EQ] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_EQ_GT] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(501), + [anon_sym_break] = ACTIONS(503), + [anon_sym_continue] = ACTIONS(503), + [anon_sym_default] = ACTIONS(503), + [anon_sym_if] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(503), + [anon_sym_nopanic] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(503), + [anon_sym_match] = ACTIONS(503), + [anon_sym_pub] = ACTIONS(503), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(503), + [anon_sym_while] = ACTIONS(503), + [anon_sym_for] = ACTIONS(503), + [sym_numeric_literal] = ACTIONS(505), + [aux_sym_string_literal_token1] = ACTIONS(501), + [sym_shortstring_literal] = ACTIONS(501), + [anon_sym_true] = ACTIONS(503), + [anon_sym_false] = ACTIONS(503), + [anon_sym_DOLLAR] = ACTIONS(501), + [sym_identifier] = ACTIONS(503), + [sym_mutable_specifier] = ACTIONS(503), + [sym_super] = ACTIONS(503), [sym_line_comment] = ACTIONS(3), }, [67] = { - [anon_sym_LBRACE] = ACTIONS(498), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_impl] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_trait] = ACTIONS(500), - [anon_sym_type] = ACTIONS(500), - [anon_sym_const] = ACTIONS(500), - [anon_sym_COLON] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(500), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_POUND] = ACTIONS(498), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_RBRACK] = ACTIONS(498), - [anon_sym_mod] = ACTIONS(500), - [anon_sym_struct] = ACTIONS(500), - [anon_sym_enum] = ACTIONS(500), - [anon_sym_COMMA] = ACTIONS(498), - [anon_sym_fn] = ACTIONS(500), - [anon_sym_DASH_GT] = ACTIONS(498), - [anon_sym_let] = ACTIONS(500), - [anon_sym_use] = ACTIONS(500), - [anon_sym_COLON_COLON] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(498), - [anon_sym__] = ACTIONS(500), - [anon_sym_RPAREN] = ACTIONS(498), - [anon_sym_u8] = ACTIONS(500), - [anon_sym_i8] = ACTIONS(500), - [anon_sym_u16] = ACTIONS(500), - [anon_sym_i16] = ACTIONS(500), - [anon_sym_u32] = ACTIONS(500), - [anon_sym_i32] = ACTIONS(500), - [anon_sym_u64] = ACTIONS(500), - [anon_sym_i64] = ACTIONS(500), - [anon_sym_u128] = ACTIONS(500), - [anon_sym_i128] = ACTIONS(500), - [anon_sym_usize] = ACTIONS(500), - [anon_sym_bool] = ACTIONS(500), - [anon_sym_ByteArray] = ACTIONS(500), - [anon_sym_felt252] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_AMP] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(500), - [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(500), - [anon_sym_EQ_GT] = ACTIONS(498), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_break] = ACTIONS(500), - [anon_sym_continue] = ACTIONS(500), - [anon_sym_default] = ACTIONS(500), - [anon_sym_if] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(500), - [anon_sym_nopanic] = ACTIONS(500), - [anon_sym_loop] = ACTIONS(500), - [anon_sym_match] = ACTIONS(500), - [anon_sym_pub] = ACTIONS(500), - [anon_sym_return] = ACTIONS(500), - [anon_sym_static] = ACTIONS(500), - [anon_sym_while] = ACTIONS(500), - [sym_numeric_literal] = ACTIONS(502), - [aux_sym_string_literal_token1] = ACTIONS(498), - [sym_shortstring_literal] = ACTIONS(498), - [anon_sym_true] = ACTIONS(500), - [anon_sym_false] = ACTIONS(500), - [anon_sym_DOLLAR] = ACTIONS(498), - [sym_identifier] = ACTIONS(500), - [sym_mutable_specifier] = ACTIONS(500), - [sym_super] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_impl] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_trait] = ACTIONS(510), + [anon_sym_type] = ACTIONS(510), + [anon_sym_COLON] = ACTIONS(510), + [anon_sym_const] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_POUND] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(508), + [anon_sym_RBRACK] = ACTIONS(508), + [anon_sym_mod] = ACTIONS(510), + [anon_sym_struct] = ACTIONS(510), + [anon_sym_enum] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_fn] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(508), + [anon_sym_let] = ACTIONS(510), + [anon_sym_use] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym__] = ACTIONS(510), + [anon_sym_RPAREN] = ACTIONS(508), + [anon_sym_u8] = ACTIONS(510), + [anon_sym_i8] = ACTIONS(510), + [anon_sym_u16] = ACTIONS(510), + [anon_sym_i16] = ACTIONS(510), + [anon_sym_u32] = ACTIONS(510), + [anon_sym_i32] = ACTIONS(510), + [anon_sym_u64] = ACTIONS(510), + [anon_sym_i64] = ACTIONS(510), + [anon_sym_u128] = ACTIONS(510), + [anon_sym_i128] = ACTIONS(510), + [anon_sym_usize] = ACTIONS(510), + [anon_sym_bool] = ACTIONS(510), + [anon_sym_ByteArray] = ACTIONS(510), + [anon_sym_felt252] = ACTIONS(510), + [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(510), + [anon_sym_continue] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_if] = ACTIONS(510), + [anon_sym_extern] = ACTIONS(510), + [anon_sym_nopanic] = ACTIONS(510), + [anon_sym_loop] = ACTIONS(510), + [anon_sym_match] = ACTIONS(510), + [anon_sym_pub] = ACTIONS(510), + [anon_sym_return] = ACTIONS(510), + [anon_sym_static] = ACTIONS(510), + [anon_sym_while] = ACTIONS(510), + [anon_sym_for] = ACTIONS(510), + [sym_numeric_literal] = ACTIONS(510), + [aux_sym_string_literal_token1] = ACTIONS(508), + [sym_shortstring_literal] = ACTIONS(508), + [anon_sym_true] = ACTIONS(510), + [anon_sym_false] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(508), + [sym_identifier] = ACTIONS(510), + [sym_mutable_specifier] = ACTIONS(510), + [sym_super] = ACTIONS(510), [sym_line_comment] = ACTIONS(3), }, [68] = { - [ts_builtin_sym_end] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_RBRACE] = ACTIONS(505), - [anon_sym_impl] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_trait] = ACTIONS(507), - [anon_sym_type] = ACTIONS(507), - [anon_sym_const] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_POUND] = ACTIONS(505), - [anon_sym_LBRACK] = ACTIONS(505), - [anon_sym_RBRACK] = ACTIONS(505), - [anon_sym_mod] = ACTIONS(507), - [anon_sym_struct] = ACTIONS(507), - [anon_sym_enum] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(505), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_let] = ACTIONS(507), - [anon_sym_use] = ACTIONS(507), - [anon_sym_COLON_COLON] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(505), - [anon_sym_RPAREN] = ACTIONS(505), - [anon_sym_u8] = ACTIONS(507), - [anon_sym_i8] = ACTIONS(507), - [anon_sym_u16] = ACTIONS(507), - [anon_sym_i16] = ACTIONS(507), - [anon_sym_u32] = ACTIONS(507), - [anon_sym_i32] = ACTIONS(507), - [anon_sym_u64] = ACTIONS(507), - [anon_sym_i64] = ACTIONS(507), - [anon_sym_u128] = ACTIONS(507), - [anon_sym_i128] = ACTIONS(507), - [anon_sym_usize] = ACTIONS(507), - [anon_sym_bool] = ACTIONS(507), - [anon_sym_ByteArray] = ACTIONS(507), - [anon_sym_felt252] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_GT] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_PLUS_EQ] = ACTIONS(505), - [anon_sym_DASH_EQ] = ACTIONS(505), - [anon_sym_STAR_EQ] = ACTIONS(505), - [anon_sym_SLASH_EQ] = ACTIONS(505), - [anon_sym_PERCENT_EQ] = ACTIONS(505), - [anon_sym_EQ_EQ] = ACTIONS(505), - [anon_sym_BANG_EQ] = ACTIONS(505), - [anon_sym_GT_EQ] = ACTIONS(505), - [anon_sym_LT_EQ] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(505), - [anon_sym_DOT] = ACTIONS(505), - [anon_sym_QMARK] = ACTIONS(505), - [anon_sym_break] = ACTIONS(507), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(507), - [anon_sym_if] = ACTIONS(507), - [anon_sym_extern] = ACTIONS(507), - [anon_sym_loop] = ACTIONS(507), - [anon_sym_match] = ACTIONS(507), - [anon_sym_pub] = ACTIONS(507), - [anon_sym_return] = ACTIONS(507), - [anon_sym_while] = ACTIONS(507), - [sym_numeric_literal] = ACTIONS(507), - [aux_sym_string_literal_token1] = ACTIONS(505), - [sym_shortstring_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_ref] = ACTIONS(507), - [sym_identifier] = ACTIONS(507), - [sym_super] = ACTIONS(507), + [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] = 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_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_ref] = ACTIONS(514), + [sym_identifier] = ACTIONS(514), + [sym_super] = ACTIONS(514), [sym_line_comment] = ACTIONS(3), }, [69] = { - [ts_builtin_sym_end] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_impl] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_trait] = ACTIONS(511), - [anon_sym_type] = ACTIONS(511), - [anon_sym_const] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_mod] = ACTIONS(511), - [anon_sym_struct] = ACTIONS(511), - [anon_sym_enum] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_fn] = ACTIONS(511), - [anon_sym_let] = ACTIONS(511), - [anon_sym_use] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_u8] = ACTIONS(511), - [anon_sym_i8] = ACTIONS(511), - [anon_sym_u16] = ACTIONS(511), - [anon_sym_i16] = ACTIONS(511), - [anon_sym_u32] = ACTIONS(511), - [anon_sym_i32] = ACTIONS(511), - [anon_sym_u64] = ACTIONS(511), - [anon_sym_i64] = ACTIONS(511), - [anon_sym_u128] = ACTIONS(511), - [anon_sym_i128] = ACTIONS(511), - [anon_sym_usize] = ACTIONS(511), - [anon_sym_bool] = ACTIONS(511), - [anon_sym_ByteArray] = ACTIONS(511), - [anon_sym_felt252] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(511), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_TILDE] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(509), - [anon_sym_DASH_EQ] = ACTIONS(509), - [anon_sym_STAR_EQ] = ACTIONS(509), - [anon_sym_SLASH_EQ] = ACTIONS(509), - [anon_sym_PERCENT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_AT] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_default] = ACTIONS(511), - [anon_sym_if] = ACTIONS(511), - [anon_sym_extern] = ACTIONS(511), - [anon_sym_loop] = ACTIONS(511), - [anon_sym_match] = ACTIONS(511), - [anon_sym_pub] = ACTIONS(511), - [anon_sym_return] = ACTIONS(511), - [anon_sym_while] = ACTIONS(511), - [sym_numeric_literal] = ACTIONS(511), - [aux_sym_string_literal_token1] = ACTIONS(509), - [sym_shortstring_literal] = ACTIONS(509), - [anon_sym_true] = ACTIONS(511), - [anon_sym_false] = ACTIONS(511), - [anon_sym_ref] = ACTIONS(511), - [sym_identifier] = ACTIONS(511), - [sym_super] = ACTIONS(511), + [ts_builtin_sym_end] = ACTIONS(516), + [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_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_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_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(516), + [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_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] = 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_loop] = ACTIONS(518), + [anon_sym_match] = ACTIONS(518), + [anon_sym_pub] = ACTIONS(518), + [anon_sym_return] = 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_ref] = ACTIONS(518), + [sym_identifier] = ACTIONS(518), + [sym_super] = ACTIONS(518), [sym_line_comment] = ACTIONS(3), }, [70] = { - [ts_builtin_sym_end] = ACTIONS(513), - [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_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_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_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(513), - [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_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] = 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_loop] = ACTIONS(515), - [anon_sym_match] = ACTIONS(515), - [anon_sym_pub] = ACTIONS(515), - [anon_sym_return] = ACTIONS(515), - [anon_sym_while] = 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_ref] = ACTIONS(515), - [sym_identifier] = ACTIONS(515), - [sym_super] = ACTIONS(515), + [ts_builtin_sym_end] = ACTIONS(520), + [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_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_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_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(520), + [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_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] = 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_loop] = ACTIONS(522), + [anon_sym_match] = ACTIONS(522), + [anon_sym_pub] = ACTIONS(522), + [anon_sym_return] = 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_ref] = ACTIONS(522), + [sym_identifier] = ACTIONS(522), + [sym_super] = ACTIONS(522), [sym_line_comment] = ACTIONS(3), }, [71] = { - [ts_builtin_sym_end] = ACTIONS(517), - [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_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_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_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(517), - [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_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] = 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_loop] = ACTIONS(519), - [anon_sym_match] = ACTIONS(519), - [anon_sym_pub] = ACTIONS(519), - [anon_sym_return] = ACTIONS(519), - [anon_sym_while] = 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_ref] = ACTIONS(519), - [sym_identifier] = ACTIONS(519), - [sym_super] = ACTIONS(519), + [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] = 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_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_ref] = ACTIONS(526), + [sym_identifier] = ACTIONS(526), + [sym_super] = ACTIONS(526), [sym_line_comment] = ACTIONS(3), }, [72] = { - [ts_builtin_sym_end] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_impl] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_trait] = ACTIONS(488), - [anon_sym_type] = ACTIONS(488), - [anon_sym_const] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_BANG] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_RBRACK] = ACTIONS(486), - [anon_sym_mod] = ACTIONS(488), - [anon_sym_struct] = ACTIONS(488), - [anon_sym_enum] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_fn] = ACTIONS(488), - [anon_sym_let] = ACTIONS(488), - [anon_sym_use] = ACTIONS(488), - [anon_sym_COLON_COLON] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_u8] = ACTIONS(488), - [anon_sym_i8] = ACTIONS(488), - [anon_sym_u16] = ACTIONS(488), - [anon_sym_i16] = ACTIONS(488), - [anon_sym_u32] = ACTIONS(488), - [anon_sym_i32] = ACTIONS(488), - [anon_sym_u64] = ACTIONS(488), - [anon_sym_i64] = ACTIONS(488), - [anon_sym_u128] = ACTIONS(488), - [anon_sym_i128] = ACTIONS(488), - [anon_sym_usize] = ACTIONS(488), - [anon_sym_bool] = ACTIONS(488), - [anon_sym_ByteArray] = ACTIONS(488), - [anon_sym_felt252] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_PERCENT_EQ] = ACTIONS(486), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_AT] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_break] = ACTIONS(488), - [anon_sym_continue] = ACTIONS(488), - [anon_sym_default] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_extern] = ACTIONS(488), - [anon_sym_loop] = ACTIONS(488), - [anon_sym_match] = ACTIONS(488), - [anon_sym_pub] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [sym_numeric_literal] = ACTIONS(488), - [aux_sym_string_literal_token1] = ACTIONS(486), - [sym_shortstring_literal] = ACTIONS(486), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), - [anon_sym_ref] = ACTIONS(488), - [sym_identifier] = ACTIONS(488), - [sym_super] = ACTIONS(488), + [ts_builtin_sym_end] = ACTIONS(528), + [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_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_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_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(528), + [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_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] = 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_loop] = ACTIONS(530), + [anon_sym_match] = ACTIONS(530), + [anon_sym_pub] = ACTIONS(530), + [anon_sym_return] = 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_ref] = ACTIONS(530), + [sym_identifier] = ACTIONS(530), + [sym_super] = ACTIONS(530), [sym_line_comment] = ACTIONS(3), }, [73] = { - [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_while] = 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_ref] = ACTIONS(523), - [sym_identifier] = ACTIONS(523), - [sym_super] = ACTIONS(523), + [ts_builtin_sym_end] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_impl] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_trait] = ACTIONS(491), + [anon_sym_type] = ACTIONS(491), + [anon_sym_const] = ACTIONS(491), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_POUND] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(489), + [anon_sym_RBRACK] = ACTIONS(489), + [anon_sym_mod] = ACTIONS(491), + [anon_sym_struct] = ACTIONS(491), + [anon_sym_enum] = ACTIONS(491), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_fn] = ACTIONS(491), + [anon_sym_let] = ACTIONS(491), + [anon_sym_use] = ACTIONS(491), + [anon_sym_COLON_COLON] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(489), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_u8] = ACTIONS(491), + [anon_sym_i8] = ACTIONS(491), + [anon_sym_u16] = ACTIONS(491), + [anon_sym_i16] = ACTIONS(491), + [anon_sym_u32] = ACTIONS(491), + [anon_sym_i32] = ACTIONS(491), + [anon_sym_u64] = ACTIONS(491), + [anon_sym_i64] = ACTIONS(491), + [anon_sym_u128] = ACTIONS(491), + [anon_sym_i128] = ACTIONS(491), + [anon_sym_usize] = ACTIONS(491), + [anon_sym_bool] = ACTIONS(491), + [anon_sym_ByteArray] = ACTIONS(491), + [anon_sym_felt252] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_SLASH] = ACTIONS(491), + [anon_sym_PERCENT] = ACTIONS(491), + [anon_sym_CARET] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_AMP_AMP] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_PLUS_EQ] = ACTIONS(489), + [anon_sym_DASH_EQ] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(489), + [anon_sym_SLASH_EQ] = ACTIONS(489), + [anon_sym_PERCENT_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_GT_EQ] = ACTIONS(489), + [anon_sym_LT_EQ] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_default] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_extern] = ACTIONS(491), + [anon_sym_loop] = ACTIONS(491), + [anon_sym_match] = ACTIONS(491), + [anon_sym_pub] = ACTIONS(491), + [anon_sym_return] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [sym_numeric_literal] = ACTIONS(491), + [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_shortstring_literal] = ACTIONS(489), + [anon_sym_true] = ACTIONS(491), + [anon_sym_false] = ACTIONS(491), + [anon_sym_ref] = ACTIONS(491), + [sym_identifier] = ACTIONS(491), + [sym_super] = ACTIONS(491), [sym_line_comment] = ACTIONS(3), }, [74] = { - [ts_builtin_sym_end] = ACTIONS(525), - [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_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_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_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(525), - [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_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] = 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_loop] = ACTIONS(527), - [anon_sym_match] = ACTIONS(527), - [anon_sym_pub] = ACTIONS(527), - [anon_sym_return] = ACTIONS(527), - [anon_sym_while] = 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_ref] = ACTIONS(527), - [sym_identifier] = ACTIONS(527), - [sym_super] = ACTIONS(527), + [ts_builtin_sym_end] = ACTIONS(532), + [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_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_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_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(532), + [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_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] = 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_loop] = ACTIONS(534), + [anon_sym_match] = ACTIONS(534), + [anon_sym_pub] = ACTIONS(534), + [anon_sym_return] = 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_ref] = ACTIONS(534), + [sym_identifier] = ACTIONS(534), + [sym_super] = ACTIONS(534), [sym_line_comment] = ACTIONS(3), }, [75] = { - [ts_builtin_sym_end] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(478), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_impl] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_trait] = ACTIONS(480), - [anon_sym_type] = ACTIONS(480), - [anon_sym_const] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_BANG] = ACTIONS(480), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_RBRACK] = ACTIONS(478), - [anon_sym_mod] = ACTIONS(480), - [anon_sym_struct] = ACTIONS(480), - [anon_sym_enum] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_fn] = ACTIONS(480), - [anon_sym_let] = ACTIONS(480), - [anon_sym_use] = ACTIONS(480), - [anon_sym_COLON_COLON] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_u8] = ACTIONS(480), - [anon_sym_i8] = ACTIONS(480), - [anon_sym_u16] = ACTIONS(480), - [anon_sym_i16] = ACTIONS(480), - [anon_sym_u32] = ACTIONS(480), - [anon_sym_i32] = ACTIONS(480), - [anon_sym_u64] = ACTIONS(480), - [anon_sym_i64] = ACTIONS(480), - [anon_sym_u128] = ACTIONS(480), - [anon_sym_i128] = ACTIONS(480), - [anon_sym_usize] = ACTIONS(480), - [anon_sym_bool] = ACTIONS(480), - [anon_sym_ByteArray] = ACTIONS(480), - [anon_sym_felt252] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_CARET] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_PLUS_EQ] = ACTIONS(478), - [anon_sym_DASH_EQ] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(478), - [anon_sym_SLASH_EQ] = ACTIONS(478), - [anon_sym_PERCENT_EQ] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_DOT] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_default] = ACTIONS(480), - [anon_sym_if] = ACTIONS(480), - [anon_sym_extern] = ACTIONS(480), - [anon_sym_loop] = ACTIONS(480), - [anon_sym_match] = ACTIONS(480), - [anon_sym_pub] = ACTIONS(480), - [anon_sym_return] = ACTIONS(480), - [anon_sym_while] = ACTIONS(480), - [sym_numeric_literal] = ACTIONS(480), - [aux_sym_string_literal_token1] = ACTIONS(478), - [sym_shortstring_literal] = ACTIONS(478), - [anon_sym_true] = ACTIONS(480), - [anon_sym_false] = ACTIONS(480), - [anon_sym_ref] = ACTIONS(480), - [sym_identifier] = ACTIONS(480), - [sym_super] = ACTIONS(480), + [ts_builtin_sym_end] = ACTIONS(536), + [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_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_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_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(536), + [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_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] = 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_loop] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_pub] = ACTIONS(538), + [anon_sym_return] = 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_ref] = ACTIONS(538), + [sym_identifier] = ACTIONS(538), + [sym_super] = ACTIONS(538), [sym_line_comment] = ACTIONS(3), }, [76] = { - [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_while] = 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_ref] = ACTIONS(531), - [sym_identifier] = ACTIONS(531), - [sym_super] = ACTIONS(531), + [ts_builtin_sym_end] = ACTIONS(540), + [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_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_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_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(540), + [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_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] = 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_loop] = ACTIONS(542), + [anon_sym_match] = ACTIONS(542), + [anon_sym_pub] = ACTIONS(542), + [anon_sym_return] = ACTIONS(542), + [anon_sym_while] = ACTIONS(542), + [anon_sym_for] = ACTIONS(542), + [sym_numeric_literal] = ACTIONS(542), + [aux_sym_string_literal_token1] = ACTIONS(540), + [sym_shortstring_literal] = ACTIONS(540), + [anon_sym_true] = ACTIONS(542), + [anon_sym_false] = ACTIONS(542), + [anon_sym_ref] = ACTIONS(542), + [sym_identifier] = ACTIONS(542), + [sym_super] = ACTIONS(542), [sym_line_comment] = ACTIONS(3), }, [77] = { - [ts_builtin_sym_end] = ACTIONS(533), - [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_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_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_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(533), - [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_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] = 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_loop] = ACTIONS(535), - [anon_sym_match] = ACTIONS(535), - [anon_sym_pub] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_while] = 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_ref] = ACTIONS(535), - [sym_identifier] = ACTIONS(535), - [sym_super] = ACTIONS(535), + [ts_builtin_sym_end] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_impl] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(544), + [anon_sym_trait] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(544), + [anon_sym_mod] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(544), + [anon_sym_fn] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_use] = ACTIONS(546), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_RPAREN] = ACTIONS(544), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_ByteArray] = ACTIONS(546), + [anon_sym_felt252] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(546), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT_LT] = ACTIONS(544), + [anon_sym_GT_GT] = ACTIONS(544), + [anon_sym_PLUS_EQ] = ACTIONS(544), + [anon_sym_DASH_EQ] = ACTIONS(544), + [anon_sym_STAR_EQ] = ACTIONS(544), + [anon_sym_SLASH_EQ] = ACTIONS(544), + [anon_sym_PERCENT_EQ] = ACTIONS(544), + [anon_sym_EQ_EQ] = ACTIONS(544), + [anon_sym_BANG_EQ] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(544), + [anon_sym_AT] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(544), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_pub] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [sym_numeric_literal] = ACTIONS(546), + [aux_sym_string_literal_token1] = ACTIONS(544), + [sym_shortstring_literal] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [anon_sym_ref] = ACTIONS(546), + [sym_identifier] = ACTIONS(546), + [sym_super] = ACTIONS(546), [sym_line_comment] = ACTIONS(3), }, [78] = { - [ts_builtin_sym_end] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_impl] = ACTIONS(539), - [anon_sym_SEMI] = ACTIONS(537), - [anon_sym_trait] = ACTIONS(539), - [anon_sym_type] = ACTIONS(539), - [anon_sym_const] = ACTIONS(539), - [anon_sym_EQ] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(539), - [anon_sym_POUND] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_RBRACK] = ACTIONS(537), - [anon_sym_mod] = ACTIONS(539), - [anon_sym_struct] = ACTIONS(539), - [anon_sym_enum] = ACTIONS(539), - [anon_sym_COMMA] = ACTIONS(537), - [anon_sym_fn] = ACTIONS(539), - [anon_sym_let] = ACTIONS(539), - [anon_sym_use] = ACTIONS(539), - [anon_sym_COLON_COLON] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(537), - [anon_sym_RPAREN] = ACTIONS(537), - [anon_sym_u8] = ACTIONS(539), - [anon_sym_i8] = ACTIONS(539), - [anon_sym_u16] = ACTIONS(539), - [anon_sym_i16] = ACTIONS(539), - [anon_sym_u32] = ACTIONS(539), - [anon_sym_i32] = ACTIONS(539), - [anon_sym_u64] = ACTIONS(539), - [anon_sym_i64] = ACTIONS(539), - [anon_sym_u128] = ACTIONS(539), - [anon_sym_i128] = ACTIONS(539), - [anon_sym_usize] = ACTIONS(539), - [anon_sym_bool] = ACTIONS(539), - [anon_sym_ByteArray] = ACTIONS(539), - [anon_sym_felt252] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(539), - [anon_sym_GT] = ACTIONS(539), - [anon_sym_PLUS] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(539), - [anon_sym_SLASH] = ACTIONS(539), - [anon_sym_PERCENT] = ACTIONS(539), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_AMP_AMP] = ACTIONS(537), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_LT_LT] = ACTIONS(537), - [anon_sym_GT_GT] = ACTIONS(537), - [anon_sym_PLUS_EQ] = ACTIONS(537), - [anon_sym_DASH_EQ] = ACTIONS(537), - [anon_sym_STAR_EQ] = ACTIONS(537), - [anon_sym_SLASH_EQ] = ACTIONS(537), - [anon_sym_PERCENT_EQ] = ACTIONS(537), - [anon_sym_EQ_EQ] = ACTIONS(537), - [anon_sym_BANG_EQ] = ACTIONS(537), - [anon_sym_GT_EQ] = ACTIONS(537), - [anon_sym_LT_EQ] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(537), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_QMARK] = ACTIONS(537), - [anon_sym_break] = ACTIONS(539), - [anon_sym_continue] = ACTIONS(539), - [anon_sym_default] = ACTIONS(539), - [anon_sym_if] = ACTIONS(539), - [anon_sym_extern] = ACTIONS(539), - [anon_sym_loop] = ACTIONS(539), - [anon_sym_match] = ACTIONS(539), - [anon_sym_pub] = ACTIONS(539), - [anon_sym_return] = ACTIONS(539), - [anon_sym_while] = ACTIONS(539), - [sym_numeric_literal] = ACTIONS(539), - [aux_sym_string_literal_token1] = ACTIONS(537), - [sym_shortstring_literal] = ACTIONS(537), - [anon_sym_true] = ACTIONS(539), - [anon_sym_false] = ACTIONS(539), - [anon_sym_ref] = ACTIONS(539), - [sym_identifier] = ACTIONS(539), - [sym_super] = ACTIONS(539), + [ts_builtin_sym_end] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_impl] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_trait] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_const] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_POUND] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_RBRACK] = ACTIONS(548), + [anon_sym_mod] = ACTIONS(550), + [anon_sym_struct] = ACTIONS(550), + [anon_sym_enum] = ACTIONS(550), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_fn] = ACTIONS(550), + [anon_sym_let] = ACTIONS(550), + [anon_sym_use] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(548), + [anon_sym_u8] = ACTIONS(550), + [anon_sym_i8] = ACTIONS(550), + [anon_sym_u16] = ACTIONS(550), + [anon_sym_i16] = ACTIONS(550), + [anon_sym_u32] = ACTIONS(550), + [anon_sym_i32] = ACTIONS(550), + [anon_sym_u64] = ACTIONS(550), + [anon_sym_i64] = ACTIONS(550), + [anon_sym_u128] = ACTIONS(550), + [anon_sym_i128] = ACTIONS(550), + [anon_sym_usize] = ACTIONS(550), + [anon_sym_bool] = ACTIONS(550), + [anon_sym_ByteArray] = ACTIONS(550), + [anon_sym_felt252] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(548), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_PLUS_EQ] = ACTIONS(548), + [anon_sym_DASH_EQ] = ACTIONS(548), + [anon_sym_STAR_EQ] = ACTIONS(548), + [anon_sym_SLASH_EQ] = ACTIONS(548), + [anon_sym_PERCENT_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(548), + [anon_sym_break] = ACTIONS(550), + [anon_sym_continue] = ACTIONS(550), + [anon_sym_default] = ACTIONS(550), + [anon_sym_if] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(550), + [anon_sym_loop] = ACTIONS(550), + [anon_sym_match] = ACTIONS(550), + [anon_sym_pub] = ACTIONS(550), + [anon_sym_return] = ACTIONS(550), + [anon_sym_while] = ACTIONS(550), + [anon_sym_for] = ACTIONS(550), + [sym_numeric_literal] = ACTIONS(550), + [aux_sym_string_literal_token1] = ACTIONS(548), + [sym_shortstring_literal] = ACTIONS(548), + [anon_sym_true] = ACTIONS(550), + [anon_sym_false] = ACTIONS(550), + [anon_sym_ref] = ACTIONS(550), + [sym_identifier] = ACTIONS(550), + [sym_super] = ACTIONS(550), [sym_line_comment] = ACTIONS(3), }, [79] = { - [ts_builtin_sym_end] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_impl] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_trait] = ACTIONS(543), - [anon_sym_type] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_EQ] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(543), - [anon_sym_POUND] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(541), - [anon_sym_RBRACK] = ACTIONS(541), - [anon_sym_mod] = ACTIONS(543), - [anon_sym_struct] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(541), - [anon_sym_fn] = ACTIONS(543), - [anon_sym_let] = ACTIONS(543), - [anon_sym_use] = ACTIONS(543), - [anon_sym_COLON_COLON] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_u8] = ACTIONS(543), - [anon_sym_i8] = ACTIONS(543), - [anon_sym_u16] = ACTIONS(543), - [anon_sym_i16] = ACTIONS(543), - [anon_sym_u32] = ACTIONS(543), - [anon_sym_i32] = ACTIONS(543), - [anon_sym_u64] = ACTIONS(543), - [anon_sym_i64] = ACTIONS(543), - [anon_sym_u128] = ACTIONS(543), - [anon_sym_i128] = ACTIONS(543), - [anon_sym_usize] = ACTIONS(543), - [anon_sym_bool] = ACTIONS(543), - [anon_sym_ByteArray] = ACTIONS(543), - [anon_sym_felt252] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_SLASH] = ACTIONS(543), - [anon_sym_PERCENT] = ACTIONS(543), - [anon_sym_CARET] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), - [anon_sym_PIPE] = ACTIONS(543), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_LT_LT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_STAR_EQ] = ACTIONS(541), - [anon_sym_SLASH_EQ] = ACTIONS(541), - [anon_sym_PERCENT_EQ] = ACTIONS(541), - [anon_sym_EQ_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AT] = ACTIONS(541), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(541), - [anon_sym_break] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_default] = ACTIONS(543), - [anon_sym_if] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(543), - [anon_sym_loop] = ACTIONS(543), - [anon_sym_match] = ACTIONS(543), - [anon_sym_pub] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [sym_numeric_literal] = ACTIONS(543), - [aux_sym_string_literal_token1] = ACTIONS(541), - [sym_shortstring_literal] = ACTIONS(541), - [anon_sym_true] = ACTIONS(543), - [anon_sym_false] = ACTIONS(543), - [anon_sym_ref] = ACTIONS(543), - [sym_identifier] = ACTIONS(543), - [sym_super] = ACTIONS(543), + [ts_builtin_sym_end] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(554), + [anon_sym_type] = ACTIONS(554), + [anon_sym_const] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(552), + [anon_sym_LBRACK] = ACTIONS(552), + [anon_sym_RBRACK] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(554), + [anon_sym_struct] = ACTIONS(554), + [anon_sym_enum] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(554), + [anon_sym_let] = ACTIONS(554), + [anon_sym_use] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_RPAREN] = ACTIONS(552), + [anon_sym_u8] = ACTIONS(554), + [anon_sym_i8] = ACTIONS(554), + [anon_sym_u16] = ACTIONS(554), + [anon_sym_i16] = ACTIONS(554), + [anon_sym_u32] = ACTIONS(554), + [anon_sym_i32] = ACTIONS(554), + [anon_sym_u64] = ACTIONS(554), + [anon_sym_i64] = ACTIONS(554), + [anon_sym_u128] = ACTIONS(554), + [anon_sym_i128] = ACTIONS(554), + [anon_sym_usize] = ACTIONS(554), + [anon_sym_bool] = ACTIONS(554), + [anon_sym_ByteArray] = ACTIONS(554), + [anon_sym_felt252] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(552), + [anon_sym_PIPE_PIPE] = ACTIONS(552), + [anon_sym_LT_LT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(552), + [anon_sym_PLUS_EQ] = ACTIONS(552), + [anon_sym_DASH_EQ] = ACTIONS(552), + [anon_sym_STAR_EQ] = ACTIONS(552), + [anon_sym_SLASH_EQ] = ACTIONS(552), + [anon_sym_PERCENT_EQ] = ACTIONS(552), + [anon_sym_EQ_EQ] = ACTIONS(552), + [anon_sym_BANG_EQ] = ACTIONS(552), + [anon_sym_GT_EQ] = ACTIONS(552), + [anon_sym_LT_EQ] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(552), + [anon_sym_break] = ACTIONS(554), + [anon_sym_continue] = ACTIONS(554), + [anon_sym_default] = ACTIONS(554), + [anon_sym_if] = ACTIONS(554), + [anon_sym_extern] = ACTIONS(554), + [anon_sym_loop] = ACTIONS(554), + [anon_sym_match] = ACTIONS(554), + [anon_sym_pub] = ACTIONS(554), + [anon_sym_return] = ACTIONS(554), + [anon_sym_while] = ACTIONS(554), + [anon_sym_for] = ACTIONS(554), + [sym_numeric_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(552), + [sym_shortstring_literal] = ACTIONS(552), + [anon_sym_true] = ACTIONS(554), + [anon_sym_false] = ACTIONS(554), + [anon_sym_ref] = ACTIONS(554), + [sym_identifier] = ACTIONS(554), + [sym_super] = ACTIONS(554), [sym_line_comment] = ACTIONS(3), }, [80] = { - [ts_builtin_sym_end] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_impl] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_trait] = ACTIONS(547), - [anon_sym_type] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_POUND] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_RBRACK] = ACTIONS(545), - [anon_sym_mod] = ACTIONS(547), - [anon_sym_struct] = ACTIONS(547), - [anon_sym_enum] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_fn] = ACTIONS(547), - [anon_sym_let] = ACTIONS(547), - [anon_sym_use] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(545), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_u8] = ACTIONS(547), - [anon_sym_i8] = ACTIONS(547), - [anon_sym_u16] = ACTIONS(547), - [anon_sym_i16] = ACTIONS(547), - [anon_sym_u32] = ACTIONS(547), - [anon_sym_i32] = ACTIONS(547), - [anon_sym_u64] = ACTIONS(547), - [anon_sym_i64] = ACTIONS(547), - [anon_sym_u128] = ACTIONS(547), - [anon_sym_i128] = ACTIONS(547), - [anon_sym_usize] = ACTIONS(547), - [anon_sym_bool] = ACTIONS(547), - [anon_sym_ByteArray] = ACTIONS(547), - [anon_sym_felt252] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_PERCENT] = ACTIONS(547), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(545), - [anon_sym_DASH_EQ] = ACTIONS(545), - [anon_sym_STAR_EQ] = ACTIONS(545), - [anon_sym_SLASH_EQ] = ACTIONS(545), - [anon_sym_PERCENT_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(547), - [anon_sym_default] = ACTIONS(547), - [anon_sym_if] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_loop] = ACTIONS(547), - [anon_sym_match] = ACTIONS(547), - [anon_sym_pub] = ACTIONS(547), - [anon_sym_return] = ACTIONS(547), - [anon_sym_while] = ACTIONS(547), - [sym_numeric_literal] = ACTIONS(547), - [aux_sym_string_literal_token1] = ACTIONS(545), - [sym_shortstring_literal] = ACTIONS(545), - [anon_sym_true] = ACTIONS(547), - [anon_sym_false] = ACTIONS(547), - [anon_sym_ref] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [sym_super] = ACTIONS(547), + [ts_builtin_sym_end] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_impl] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(556), + [anon_sym_trait] = ACTIONS(558), + [anon_sym_type] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_POUND] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(556), + [anon_sym_RBRACK] = ACTIONS(556), + [anon_sym_mod] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(558), + [anon_sym_enum] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_fn] = ACTIONS(558), + [anon_sym_let] = ACTIONS(558), + [anon_sym_use] = ACTIONS(558), + [anon_sym_COLON_COLON] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(556), + [anon_sym_u8] = ACTIONS(558), + [anon_sym_i8] = ACTIONS(558), + [anon_sym_u16] = ACTIONS(558), + [anon_sym_i16] = ACTIONS(558), + [anon_sym_u32] = ACTIONS(558), + [anon_sym_i32] = ACTIONS(558), + [anon_sym_u64] = ACTIONS(558), + [anon_sym_i64] = ACTIONS(558), + [anon_sym_u128] = ACTIONS(558), + [anon_sym_i128] = ACTIONS(558), + [anon_sym_usize] = ACTIONS(558), + [anon_sym_bool] = ACTIONS(558), + [anon_sym_ByteArray] = ACTIONS(558), + [anon_sym_felt252] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(556), + [anon_sym_PIPE_PIPE] = ACTIONS(556), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_PERCENT_EQ] = ACTIONS(556), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(556), + [anon_sym_DOT] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(556), + [anon_sym_break] = ACTIONS(558), + [anon_sym_continue] = ACTIONS(558), + [anon_sym_default] = ACTIONS(558), + [anon_sym_if] = ACTIONS(558), + [anon_sym_extern] = ACTIONS(558), + [anon_sym_loop] = ACTIONS(558), + [anon_sym_match] = ACTIONS(558), + [anon_sym_pub] = ACTIONS(558), + [anon_sym_return] = ACTIONS(558), + [anon_sym_while] = ACTIONS(558), + [anon_sym_for] = ACTIONS(558), + [sym_numeric_literal] = ACTIONS(558), + [aux_sym_string_literal_token1] = ACTIONS(556), + [sym_shortstring_literal] = ACTIONS(556), + [anon_sym_true] = ACTIONS(558), + [anon_sym_false] = ACTIONS(558), + [anon_sym_ref] = ACTIONS(558), + [sym_identifier] = ACTIONS(558), + [sym_super] = ACTIONS(558), [sym_line_comment] = ACTIONS(3), }, [81] = { - [ts_builtin_sym_end] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_impl] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_trait] = ACTIONS(551), - [anon_sym_type] = ACTIONS(551), - [anon_sym_const] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_POUND] = ACTIONS(549), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_RBRACK] = ACTIONS(549), - [anon_sym_mod] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_enum] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_fn] = ACTIONS(551), - [anon_sym_let] = ACTIONS(551), - [anon_sym_use] = ACTIONS(551), - [anon_sym_COLON_COLON] = ACTIONS(549), - [anon_sym_STAR] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u128] = ACTIONS(551), - [anon_sym_i128] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_ByteArray] = ACTIONS(551), - [anon_sym_felt252] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_PERCENT] = ACTIONS(551), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(549), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_PLUS_EQ] = ACTIONS(549), - [anon_sym_DASH_EQ] = ACTIONS(549), - [anon_sym_STAR_EQ] = ACTIONS(549), - [anon_sym_SLASH_EQ] = ACTIONS(549), - [anon_sym_PERCENT_EQ] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(549), - [anon_sym_QMARK] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_default] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_extern] = ACTIONS(551), - [anon_sym_loop] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_pub] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [sym_numeric_literal] = ACTIONS(551), - [aux_sym_string_literal_token1] = ACTIONS(549), - [sym_shortstring_literal] = ACTIONS(549), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [anon_sym_ref] = ACTIONS(551), - [sym_identifier] = ACTIONS(551), - [sym_super] = ACTIONS(551), + [ts_builtin_sym_end] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(560), + [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_impl] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_trait] = ACTIONS(562), + [anon_sym_type] = ACTIONS(562), + [anon_sym_const] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_POUND] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_RBRACK] = ACTIONS(560), + [anon_sym_mod] = ACTIONS(562), + [anon_sym_struct] = ACTIONS(562), + [anon_sym_enum] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(562), + [anon_sym_let] = ACTIONS(562), + [anon_sym_use] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(560), + [anon_sym_RPAREN] = ACTIONS(560), + [anon_sym_u8] = ACTIONS(562), + [anon_sym_i8] = ACTIONS(562), + [anon_sym_u16] = ACTIONS(562), + [anon_sym_i16] = ACTIONS(562), + [anon_sym_u32] = ACTIONS(562), + [anon_sym_i32] = ACTIONS(562), + [anon_sym_u64] = ACTIONS(562), + [anon_sym_i64] = ACTIONS(562), + [anon_sym_u128] = ACTIONS(562), + [anon_sym_i128] = ACTIONS(562), + [anon_sym_usize] = ACTIONS(562), + [anon_sym_bool] = ACTIONS(562), + [anon_sym_ByteArray] = ACTIONS(562), + [anon_sym_felt252] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(560), + [anon_sym_PIPE_PIPE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_PLUS_EQ] = ACTIONS(560), + [anon_sym_DASH_EQ] = ACTIONS(560), + [anon_sym_STAR_EQ] = ACTIONS(560), + [anon_sym_SLASH_EQ] = ACTIONS(560), + [anon_sym_PERCENT_EQ] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(560), + [anon_sym_BANG_EQ] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(562), + [anon_sym_default] = ACTIONS(562), + [anon_sym_if] = ACTIONS(562), + [anon_sym_extern] = ACTIONS(562), + [anon_sym_loop] = ACTIONS(562), + [anon_sym_match] = ACTIONS(562), + [anon_sym_pub] = ACTIONS(562), + [anon_sym_return] = ACTIONS(562), + [anon_sym_while] = ACTIONS(562), + [anon_sym_for] = ACTIONS(562), + [sym_numeric_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(560), + [sym_shortstring_literal] = ACTIONS(560), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_ref] = ACTIONS(562), + [sym_identifier] = ACTIONS(562), + [sym_super] = ACTIONS(562), [sym_line_comment] = ACTIONS(3), }, [82] = { - [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_while] = 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_ref] = ACTIONS(555), - [sym_identifier] = ACTIONS(555), - [sym_super] = ACTIONS(555), + [ts_builtin_sym_end] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(564), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_impl] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_trait] = ACTIONS(566), + [anon_sym_type] = ACTIONS(566), + [anon_sym_const] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_mod] = ACTIONS(566), + [anon_sym_struct] = ACTIONS(566), + [anon_sym_enum] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(566), + [anon_sym_let] = ACTIONS(566), + [anon_sym_use] = ACTIONS(566), + [anon_sym_COLON_COLON] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_u8] = ACTIONS(566), + [anon_sym_i8] = ACTIONS(566), + [anon_sym_u16] = ACTIONS(566), + [anon_sym_i16] = ACTIONS(566), + [anon_sym_u32] = ACTIONS(566), + [anon_sym_i32] = ACTIONS(566), + [anon_sym_u64] = ACTIONS(566), + [anon_sym_i64] = ACTIONS(566), + [anon_sym_u128] = ACTIONS(566), + [anon_sym_i128] = ACTIONS(566), + [anon_sym_usize] = ACTIONS(566), + [anon_sym_bool] = ACTIONS(566), + [anon_sym_ByteArray] = ACTIONS(566), + [anon_sym_felt252] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_break] = ACTIONS(566), + [anon_sym_continue] = ACTIONS(566), + [anon_sym_default] = ACTIONS(566), + [anon_sym_if] = ACTIONS(566), + [anon_sym_extern] = ACTIONS(566), + [anon_sym_loop] = ACTIONS(566), + [anon_sym_match] = ACTIONS(566), + [anon_sym_pub] = ACTIONS(566), + [anon_sym_return] = ACTIONS(566), + [anon_sym_while] = ACTIONS(566), + [anon_sym_for] = ACTIONS(566), + [sym_numeric_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(564), + [sym_shortstring_literal] = ACTIONS(564), + [anon_sym_true] = ACTIONS(566), + [anon_sym_false] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(566), + [sym_identifier] = ACTIONS(566), + [sym_super] = ACTIONS(566), [sym_line_comment] = ACTIONS(3), }, [83] = { - [sym_else_clause] = STATE(69), - [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_mod] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(559), - [anon_sym_enum] = ACTIONS(559), - [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_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_while] = 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_else] = ACTIONS(561), - [anon_sym_ref] = ACTIONS(559), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(559), + [ts_builtin_sym_end] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_impl] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_trait] = ACTIONS(510), + [anon_sym_type] = ACTIONS(510), + [anon_sym_const] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_POUND] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(508), + [anon_sym_RBRACK] = ACTIONS(508), + [anon_sym_mod] = ACTIONS(510), + [anon_sym_struct] = ACTIONS(510), + [anon_sym_enum] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_fn] = ACTIONS(510), + [anon_sym_let] = ACTIONS(510), + [anon_sym_use] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym_RPAREN] = ACTIONS(508), + [anon_sym_u8] = ACTIONS(510), + [anon_sym_i8] = ACTIONS(510), + [anon_sym_u16] = ACTIONS(510), + [anon_sym_i16] = ACTIONS(510), + [anon_sym_u32] = ACTIONS(510), + [anon_sym_i32] = ACTIONS(510), + [anon_sym_u64] = ACTIONS(510), + [anon_sym_i64] = ACTIONS(510), + [anon_sym_u128] = ACTIONS(510), + [anon_sym_i128] = ACTIONS(510), + [anon_sym_usize] = ACTIONS(510), + [anon_sym_bool] = ACTIONS(510), + [anon_sym_ByteArray] = ACTIONS(510), + [anon_sym_felt252] = ACTIONS(510), + [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(508), + [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_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] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_break] = ACTIONS(510), + [anon_sym_continue] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_if] = ACTIONS(510), + [anon_sym_extern] = ACTIONS(510), + [anon_sym_loop] = ACTIONS(510), + [anon_sym_match] = ACTIONS(510), + [anon_sym_pub] = ACTIONS(510), + [anon_sym_return] = ACTIONS(510), + [anon_sym_while] = ACTIONS(510), + [anon_sym_for] = ACTIONS(510), + [sym_numeric_literal] = ACTIONS(510), + [aux_sym_string_literal_token1] = ACTIONS(508), + [sym_shortstring_literal] = ACTIONS(508), + [anon_sym_true] = ACTIONS(510), + [anon_sym_false] = ACTIONS(510), + [anon_sym_ref] = ACTIONS(510), + [sym_identifier] = ACTIONS(510), + [sym_super] = ACTIONS(510), [sym_line_comment] = ACTIONS(3), }, [84] = { - [ts_builtin_sym_end] = ACTIONS(525), - [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_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_mod] = ACTIONS(527), - [anon_sym_struct] = ACTIONS(527), - [anon_sym_enum] = ACTIONS(527), - [anon_sym_fn] = ACTIONS(527), - [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_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(525), - [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_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] = 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_loop] = ACTIONS(527), - [anon_sym_match] = ACTIONS(527), - [anon_sym_pub] = ACTIONS(527), - [anon_sym_return] = ACTIONS(527), - [anon_sym_while] = 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_else] = ACTIONS(527), - [anon_sym_ref] = ACTIONS(527), - [sym_identifier] = ACTIONS(527), - [sym_super] = ACTIONS(527), + [sym_else_clause] = STATE(82), + [ts_builtin_sym_end] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(568), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_POUND] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_ByteArray] = ACTIONS(570), + [anon_sym_felt252] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(570), + [anon_sym_PERCENT] = ACTIONS(570), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_AT] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_extern] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [sym_numeric_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(568), + [sym_shortstring_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(570), + [anon_sym_false] = ACTIONS(570), + [anon_sym_else] = ACTIONS(572), + [anon_sym_ref] = ACTIONS(570), + [sym_identifier] = ACTIONS(570), + [sym_super] = ACTIONS(570), [sym_line_comment] = ACTIONS(3), }, [85] = { - [ts_builtin_sym_end] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_impl] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_trait] = ACTIONS(543), - [anon_sym_type] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_EQ] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(543), - [anon_sym_POUND] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(541), - [anon_sym_mod] = ACTIONS(543), - [anon_sym_struct] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(543), - [anon_sym_fn] = ACTIONS(543), - [anon_sym_let] = ACTIONS(543), - [anon_sym_use] = ACTIONS(543), - [anon_sym_COLON_COLON] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_u8] = ACTIONS(543), - [anon_sym_i8] = ACTIONS(543), - [anon_sym_u16] = ACTIONS(543), - [anon_sym_i16] = ACTIONS(543), - [anon_sym_u32] = ACTIONS(543), - [anon_sym_i32] = ACTIONS(543), - [anon_sym_u64] = ACTIONS(543), - [anon_sym_i64] = ACTIONS(543), - [anon_sym_u128] = ACTIONS(543), - [anon_sym_i128] = ACTIONS(543), - [anon_sym_usize] = ACTIONS(543), - [anon_sym_bool] = ACTIONS(543), - [anon_sym_ByteArray] = ACTIONS(543), - [anon_sym_felt252] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_SLASH] = ACTIONS(543), - [anon_sym_PERCENT] = ACTIONS(543), - [anon_sym_CARET] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), - [anon_sym_PIPE] = ACTIONS(543), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_LT_LT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_STAR_EQ] = ACTIONS(541), - [anon_sym_SLASH_EQ] = ACTIONS(541), - [anon_sym_PERCENT_EQ] = ACTIONS(541), - [anon_sym_EQ_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AT] = ACTIONS(541), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(541), - [anon_sym_break] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_default] = ACTIONS(543), - [anon_sym_if] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(543), - [anon_sym_loop] = ACTIONS(543), - [anon_sym_match] = ACTIONS(543), - [anon_sym_pub] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [sym_numeric_literal] = ACTIONS(543), - [aux_sym_string_literal_token1] = ACTIONS(541), - [sym_shortstring_literal] = ACTIONS(541), - [anon_sym_true] = ACTIONS(543), - [anon_sym_false] = ACTIONS(543), - [anon_sym_else] = ACTIONS(543), - [anon_sym_ref] = ACTIONS(543), - [sym_identifier] = ACTIONS(543), - [sym_super] = ACTIONS(543), + [ts_builtin_sym_end] = ACTIONS(536), + [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_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_mod] = ACTIONS(538), + [anon_sym_struct] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(538), + [anon_sym_fn] = ACTIONS(538), + [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_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(536), + [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_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] = 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_loop] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_pub] = ACTIONS(538), + [anon_sym_return] = 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_else] = ACTIONS(538), + [anon_sym_ref] = ACTIONS(538), + [sym_identifier] = ACTIONS(538), + [sym_super] = ACTIONS(538), [sym_line_comment] = ACTIONS(3), }, [86] = { - [ts_builtin_sym_end] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_impl] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_trait] = ACTIONS(551), - [anon_sym_type] = ACTIONS(551), - [anon_sym_const] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_POUND] = ACTIONS(549), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_mod] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_enum] = ACTIONS(551), - [anon_sym_fn] = ACTIONS(551), - [anon_sym_let] = ACTIONS(551), - [anon_sym_use] = ACTIONS(551), - [anon_sym_COLON_COLON] = ACTIONS(549), - [anon_sym_STAR] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u128] = ACTIONS(551), - [anon_sym_i128] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_ByteArray] = ACTIONS(551), - [anon_sym_felt252] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_PERCENT] = ACTIONS(551), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(549), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_PLUS_EQ] = ACTIONS(549), - [anon_sym_DASH_EQ] = ACTIONS(549), - [anon_sym_STAR_EQ] = ACTIONS(549), - [anon_sym_SLASH_EQ] = ACTIONS(549), - [anon_sym_PERCENT_EQ] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(549), - [anon_sym_QMARK] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_default] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_extern] = ACTIONS(551), - [anon_sym_loop] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_pub] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [sym_numeric_literal] = ACTIONS(551), - [aux_sym_string_literal_token1] = ACTIONS(549), - [sym_shortstring_literal] = ACTIONS(549), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_ref] = ACTIONS(551), - [sym_identifier] = ACTIONS(551), - [sym_super] = ACTIONS(551), + [ts_builtin_sym_end] = ACTIONS(540), + [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_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_mod] = ACTIONS(542), + [anon_sym_struct] = ACTIONS(542), + [anon_sym_enum] = ACTIONS(542), + [anon_sym_fn] = ACTIONS(542), + [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_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(540), + [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_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] = 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_loop] = ACTIONS(542), + [anon_sym_match] = ACTIONS(542), + [anon_sym_pub] = ACTIONS(542), + [anon_sym_return] = ACTIONS(542), + [anon_sym_while] = ACTIONS(542), + [anon_sym_for] = ACTIONS(542), + [sym_numeric_literal] = ACTIONS(542), + [aux_sym_string_literal_token1] = ACTIONS(540), + [sym_shortstring_literal] = ACTIONS(540), + [anon_sym_true] = ACTIONS(542), + [anon_sym_false] = ACTIONS(542), + [anon_sym_else] = ACTIONS(542), + [anon_sym_ref] = ACTIONS(542), + [sym_identifier] = ACTIONS(542), + [sym_super] = ACTIONS(542), [sym_line_comment] = ACTIONS(3), }, [87] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(102), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(581), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(560), + [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_impl] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_trait] = ACTIONS(562), + [anon_sym_type] = ACTIONS(562), + [anon_sym_const] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_POUND] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_mod] = ACTIONS(562), + [anon_sym_struct] = ACTIONS(562), + [anon_sym_enum] = ACTIONS(562), + [anon_sym_fn] = ACTIONS(562), + [anon_sym_let] = ACTIONS(562), + [anon_sym_use] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(560), + [anon_sym_u8] = ACTIONS(562), + [anon_sym_i8] = ACTIONS(562), + [anon_sym_u16] = ACTIONS(562), + [anon_sym_i16] = ACTIONS(562), + [anon_sym_u32] = ACTIONS(562), + [anon_sym_i32] = ACTIONS(562), + [anon_sym_u64] = ACTIONS(562), + [anon_sym_i64] = ACTIONS(562), + [anon_sym_u128] = ACTIONS(562), + [anon_sym_i128] = ACTIONS(562), + [anon_sym_usize] = ACTIONS(562), + [anon_sym_bool] = ACTIONS(562), + [anon_sym_ByteArray] = ACTIONS(562), + [anon_sym_felt252] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(560), + [anon_sym_PIPE_PIPE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_PLUS_EQ] = ACTIONS(560), + [anon_sym_DASH_EQ] = ACTIONS(560), + [anon_sym_STAR_EQ] = ACTIONS(560), + [anon_sym_SLASH_EQ] = ACTIONS(560), + [anon_sym_PERCENT_EQ] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(560), + [anon_sym_BANG_EQ] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(562), + [anon_sym_default] = ACTIONS(562), + [anon_sym_if] = ACTIONS(562), + [anon_sym_extern] = ACTIONS(562), + [anon_sym_loop] = ACTIONS(562), + [anon_sym_match] = ACTIONS(562), + [anon_sym_pub] = ACTIONS(562), + [anon_sym_return] = ACTIONS(562), + [anon_sym_while] = ACTIONS(562), + [anon_sym_for] = ACTIONS(562), + [sym_numeric_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(560), + [sym_shortstring_literal] = ACTIONS(560), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_else] = ACTIONS(562), + [anon_sym_ref] = ACTIONS(562), + [sym_identifier] = ACTIONS(562), + [sym_super] = ACTIONS(562), + [sym_line_comment] = ACTIONS(3), + }, + [88] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(105), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(600), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1311), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(102), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1298), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(105), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(578), [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(580), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18375,232 +18701,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [88] = { - [ts_builtin_sym_end] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(573), - [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(579), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_POUND] = ACTIONS(573), - [anon_sym_LBRACK] = ACTIONS(575), - [anon_sym_mod] = ACTIONS(577), - [anon_sym_struct] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(577), - [anon_sym_fn] = ACTIONS(577), - [anon_sym_let] = ACTIONS(577), - [anon_sym_use] = ACTIONS(577), - [anon_sym_COLON_COLON] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_LPAREN] = 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(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [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(573), - [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_while] = ACTIONS(577), - [sym_numeric_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(573), - [sym_shortstring_literal] = ACTIONS(573), - [anon_sym_true] = ACTIONS(577), - [anon_sym_false] = ACTIONS(577), - [anon_sym_ref] = ACTIONS(577), - [sym_identifier] = ACTIONS(577), - [sym_super] = ACTIONS(577), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [89] = { - [ts_builtin_sym_end] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_impl] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_trait] = ACTIONS(583), - [anon_sym_type] = ACTIONS(583), - [anon_sym_const] = ACTIONS(583), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(583), - [anon_sym_POUND] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_mod] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(583), - [anon_sym_enum] = ACTIONS(583), - [anon_sym_fn] = ACTIONS(583), - [anon_sym_let] = ACTIONS(583), - [anon_sym_use] = ACTIONS(583), - [anon_sym_COLON_COLON] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(581), - [anon_sym_u8] = ACTIONS(583), - [anon_sym_i8] = ACTIONS(583), - [anon_sym_u16] = ACTIONS(583), - [anon_sym_i16] = ACTIONS(583), - [anon_sym_u32] = ACTIONS(583), - [anon_sym_i32] = ACTIONS(583), - [anon_sym_u64] = ACTIONS(583), - [anon_sym_i64] = ACTIONS(583), - [anon_sym_u128] = ACTIONS(583), - [anon_sym_i128] = ACTIONS(583), - [anon_sym_usize] = ACTIONS(583), - [anon_sym_bool] = ACTIONS(583), - [anon_sym_ByteArray] = ACTIONS(583), - [anon_sym_felt252] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [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(581), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(583), - [anon_sym_default] = ACTIONS(583), - [anon_sym_if] = ACTIONS(583), - [anon_sym_extern] = ACTIONS(583), - [anon_sym_loop] = ACTIONS(583), - [anon_sym_match] = ACTIONS(583), - [anon_sym_pub] = ACTIONS(583), - [anon_sym_return] = ACTIONS(583), - [anon_sym_while] = ACTIONS(583), - [sym_numeric_literal] = ACTIONS(583), - [aux_sym_string_literal_token1] = ACTIONS(581), - [sym_shortstring_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(583), - [anon_sym_false] = ACTIONS(583), - [anon_sym_ref] = ACTIONS(583), - [sym_identifier] = ACTIONS(583), - [sym_super] = ACTIONS(583), - [sym_line_comment] = ACTIONS(3), - }, - [90] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(105), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(577), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(101), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(592), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1287), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(105), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1342), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(101), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(584), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(586), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18621,67 +18785,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [90] = { + [ts_builtin_sym_end] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_impl] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(588), + [anon_sym_trait] = ACTIONS(590), + [anon_sym_type] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_POUND] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(588), + [anon_sym_mod] = ACTIONS(590), + [anon_sym_struct] = ACTIONS(590), + [anon_sym_enum] = ACTIONS(590), + [anon_sym_fn] = ACTIONS(590), + [anon_sym_let] = ACTIONS(590), + [anon_sym_use] = ACTIONS(590), + [anon_sym_COLON_COLON] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_u8] = ACTIONS(590), + [anon_sym_i8] = ACTIONS(590), + [anon_sym_u16] = ACTIONS(590), + [anon_sym_i16] = ACTIONS(590), + [anon_sym_u32] = ACTIONS(590), + [anon_sym_i32] = ACTIONS(590), + [anon_sym_u64] = ACTIONS(590), + [anon_sym_i64] = ACTIONS(590), + [anon_sym_u128] = ACTIONS(590), + [anon_sym_i128] = ACTIONS(590), + [anon_sym_usize] = ACTIONS(590), + [anon_sym_bool] = ACTIONS(590), + [anon_sym_ByteArray] = ACTIONS(590), + [anon_sym_felt252] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_break] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_default] = ACTIONS(590), + [anon_sym_if] = ACTIONS(590), + [anon_sym_extern] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(590), + [anon_sym_match] = ACTIONS(590), + [anon_sym_pub] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [sym_numeric_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_shortstring_literal] = ACTIONS(588), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_ref] = ACTIONS(590), + [sym_identifier] = ACTIONS(590), + [sym_super] = ACTIONS(590), [sym_line_comment] = ACTIONS(3), }, [91] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [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(589), + [anon_sym_RPAREN] = ACTIONS(596), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18702,67 +18951,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [92] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [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(591), + [anon_sym_RPAREN] = ACTIONS(598), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18783,67 +19034,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [93] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [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(600), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18864,148 +19117,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [94] = { - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_RBRACE] = ACTIONS(573), - [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(579), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_POUND] = ACTIONS(573), - [anon_sym_LBRACK] = ACTIONS(575), - [anon_sym_mod] = ACTIONS(577), - [anon_sym_struct] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(577), - [anon_sym_fn] = ACTIONS(577), - [anon_sym_let] = ACTIONS(577), - [anon_sym_use] = ACTIONS(577), - [anon_sym_COLON_COLON] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_LPAREN] = 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(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [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(573), - [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_while] = ACTIONS(577), - [sym_numeric_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(573), - [sym_shortstring_literal] = ACTIONS(573), - [anon_sym_true] = ACTIONS(577), - [anon_sym_false] = ACTIONS(577), - [anon_sym_ref] = ACTIONS(577), - [sym_identifier] = ACTIONS(577), - [sym_super] = ACTIONS(577), - [sym_line_comment] = ACTIONS(3), - }, - [95] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [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(595), + [anon_sym_RPAREN] = ACTIONS(602), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -19026,67 +19200,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [95] = { + [ts_builtin_sym_end] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_impl] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_trait] = ACTIONS(606), + [anon_sym_type] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_mod] = ACTIONS(606), + [anon_sym_struct] = ACTIONS(606), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_fn] = ACTIONS(606), + [anon_sym_let] = ACTIONS(606), + [anon_sym_use] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_ByteArray] = ACTIONS(606), + [anon_sym_felt252] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_break] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_extern] = ACTIONS(606), + [anon_sym_loop] = ACTIONS(606), + [anon_sym_match] = ACTIONS(606), + [anon_sym_pub] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [sym_numeric_literal] = ACTIONS(606), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_shortstring_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [anon_sym_ref] = ACTIONS(606), + [sym_identifier] = ACTIONS(606), + [sym_super] = ACTIONS(606), [sym_line_comment] = ACTIONS(3), }, [96] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [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(597), + [anon_sym_RPAREN] = ACTIONS(608), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -19107,67 +19366,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [97] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [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(599), + [anon_sym_RPAREN] = ACTIONS(610), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -19188,63 +19449,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [98] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(103), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(528), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(103), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(603), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19268,143 +19531,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [99] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(575), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(608), - [anon_sym_POUND] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(622), - [anon_sym_u8] = ACTIONS(625), - [anon_sym_i8] = ACTIONS(625), - [anon_sym_u16] = ACTIONS(625), - [anon_sym_i16] = ACTIONS(625), - [anon_sym_u32] = ACTIONS(625), - [anon_sym_i32] = ACTIONS(625), - [anon_sym_u64] = ACTIONS(625), - [anon_sym_i64] = ACTIONS(625), - [anon_sym_u128] = ACTIONS(625), - [anon_sym_i128] = ACTIONS(625), - [anon_sym_usize] = ACTIONS(625), - [anon_sym_bool] = ACTIONS(625), - [anon_sym_ByteArray] = ACTIONS(625), - [anon_sym_felt252] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(628), - [anon_sym_TILDE] = ACTIONS(608), - [anon_sym_AT] = ACTIONS(608), - [anon_sym_break] = ACTIONS(631), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_default] = ACTIONS(637), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(643), - [anon_sym_match] = ACTIONS(646), - [anon_sym_return] = ACTIONS(649), - [anon_sym_while] = ACTIONS(652), - [sym_numeric_literal] = ACTIONS(655), - [aux_sym_string_literal_token1] = ACTIONS(658), - [sym_shortstring_literal] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_ref] = ACTIONS(667), - [sym_identifier] = ACTIONS(670), - [sym_super] = ACTIONS(673), - [sym_line_comment] = ACTIONS(3), - }, - [100] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(661), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(103), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(499), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1439), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(103), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(614), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19428,143 +19613,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [101] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(588), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(608), - [anon_sym_POUND] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(622), - [anon_sym_u8] = ACTIONS(625), - [anon_sym_i8] = ACTIONS(625), - [anon_sym_u16] = ACTIONS(625), - [anon_sym_i16] = ACTIONS(625), - [anon_sym_u32] = ACTIONS(625), - [anon_sym_i32] = ACTIONS(625), - [anon_sym_u64] = ACTIONS(625), - [anon_sym_i64] = ACTIONS(625), - [anon_sym_u128] = ACTIONS(625), - [anon_sym_i128] = ACTIONS(625), - [anon_sym_usize] = ACTIONS(625), - [anon_sym_bool] = ACTIONS(625), - [anon_sym_ByteArray] = ACTIONS(625), - [anon_sym_felt252] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(628), - [anon_sym_TILDE] = ACTIONS(608), - [anon_sym_AT] = ACTIONS(608), - [anon_sym_break] = ACTIONS(631), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_default] = ACTIONS(637), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(643), - [anon_sym_match] = ACTIONS(646), - [anon_sym_return] = ACTIONS(649), - [anon_sym_while] = ACTIONS(652), - [sym_numeric_literal] = ACTIONS(655), - [aux_sym_string_literal_token1] = ACTIONS(658), - [sym_shortstring_literal] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_ref] = ACTIONS(667), - [sym_identifier] = ACTIONS(670), - [sym_super] = ACTIONS(673), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [102] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(589), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [100] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(106), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(551), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1234), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(618), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19588,63 +19695,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [103] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(101), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(544), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [101] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(597), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(101), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1240), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(678), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19668,63 +19777,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [102] = { + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_impl] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_trait] = ACTIONS(606), + [anon_sym_type] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_mod] = ACTIONS(606), + [anon_sym_struct] = ACTIONS(606), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_fn] = ACTIONS(606), + [anon_sym_let] = ACTIONS(606), + [anon_sym_use] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_ByteArray] = ACTIONS(606), + [anon_sym_felt252] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_break] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_extern] = ACTIONS(606), + [anon_sym_loop] = ACTIONS(606), + [anon_sym_match] = ACTIONS(606), + [anon_sym_pub] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [sym_numeric_literal] = ACTIONS(606), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_shortstring_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [anon_sym_ref] = ACTIONS(606), + [sym_identifier] = ACTIONS(606), + [sym_super] = ACTIONS(606), + [sym_line_comment] = ACTIONS(3), + }, + [103] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(598), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(632), + [anon_sym_COMMA] = ACTIONS(632), + [anon_sym_COLON_COLON] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_u8] = ACTIONS(640), + [anon_sym_i8] = ACTIONS(640), + [anon_sym_u16] = ACTIONS(640), + [anon_sym_i16] = ACTIONS(640), + [anon_sym_u32] = ACTIONS(640), + [anon_sym_i32] = ACTIONS(640), + [anon_sym_u64] = ACTIONS(640), + [anon_sym_i64] = ACTIONS(640), + [anon_sym_u128] = ACTIONS(640), + [anon_sym_i128] = ACTIONS(640), + [anon_sym_usize] = ACTIONS(640), + [anon_sym_bool] = ACTIONS(640), + [anon_sym_ByteArray] = ACTIONS(640), + [anon_sym_felt252] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_break] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(649), + [anon_sym_default] = ACTIONS(652), + [anon_sym_if] = ACTIONS(655), + [anon_sym_loop] = ACTIONS(658), + [anon_sym_match] = ACTIONS(661), + [anon_sym_return] = ACTIONS(664), + [anon_sym_while] = ACTIONS(667), + [anon_sym_for] = ACTIONS(670), + [sym_numeric_literal] = ACTIONS(673), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_shortstring_literal] = ACTIONS(679), + [anon_sym_true] = ACTIONS(682), + [anon_sym_false] = ACTIONS(682), + [anon_sym_ref] = ACTIONS(685), + [sym_identifier] = ACTIONS(688), + [sym_super] = ACTIONS(691), [sym_line_comment] = ACTIONS(3), }, [104] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(106), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(534), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(659), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(106), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1418), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(682), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19748,62 +20023,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [105] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(574), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(587), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1327), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1346), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -19828,143 +20105,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [106] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(99), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(493), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(591), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(99), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(686), - [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_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(632), + [anon_sym_COMMA] = ACTIONS(632), + [anon_sym_COLON_COLON] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_u8] = ACTIONS(640), + [anon_sym_i8] = ACTIONS(640), + [anon_sym_u16] = ACTIONS(640), + [anon_sym_i16] = ACTIONS(640), + [anon_sym_u32] = ACTIONS(640), + [anon_sym_i32] = ACTIONS(640), + [anon_sym_u64] = ACTIONS(640), + [anon_sym_i64] = ACTIONS(640), + [anon_sym_u128] = ACTIONS(640), + [anon_sym_i128] = ACTIONS(640), + [anon_sym_usize] = ACTIONS(640), + [anon_sym_bool] = ACTIONS(640), + [anon_sym_ByteArray] = ACTIONS(640), + [anon_sym_felt252] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_break] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(649), + [anon_sym_default] = ACTIONS(652), + [anon_sym_if] = ACTIONS(655), + [anon_sym_loop] = ACTIONS(658), + [anon_sym_match] = ACTIONS(661), + [anon_sym_return] = ACTIONS(664), + [anon_sym_while] = ACTIONS(667), + [anon_sym_for] = ACTIONS(670), + [sym_numeric_literal] = ACTIONS(673), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_shortstring_literal] = ACTIONS(679), + [anon_sym_true] = ACTIONS(682), + [anon_sym_false] = ACTIONS(682), + [anon_sym_ref] = ACTIONS(685), + [sym_identifier] = ACTIONS(688), + [sym_super] = ACTIONS(691), [sym_line_comment] = ACTIONS(3), }, [107] = { - [sym_macro_invocation] = STATE(467), + [sym_macro_invocation] = STATE(485), [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(542), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [aux_sym_enum_variant_list_repeat1] = STATE(100), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(696), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19988,62 +20269,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [108] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(99), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(544), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(99), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(688), + [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(700), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20067,62 +20351,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [109] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_RBRACK] = ACTIONS(702), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20146,62 +20432,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [110] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(704), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20225,62 +20513,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [111] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(706), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20304,62 +20594,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [112] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(696), + [anon_sym_RBRACK] = ACTIONS(708), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20383,65 +20675,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [113] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(127), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(625), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(127), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(710), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(698), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20462,62 +20756,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [114] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_RBRACK] = ACTIONS(712), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20541,65 +20837,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [115] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(124), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(685), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(119), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(699), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(124), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(119), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [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(702), + [anon_sym_RPAREN] = ACTIONS(714), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20620,65 +20918,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [116] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(122), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(635), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(122), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(704), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20699,62 +20999,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [117] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(706), + [anon_sym_RBRACK] = ACTIONS(718), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20778,217 +21080,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [118] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1422), - [sym_let_condition] = STATE(1422), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [119] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1434), - [sym_let_condition] = STATE(1434), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [120] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(612), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(720), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -21012,216 +21161,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [121] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1416), - [sym_let_condition] = STATE(1416), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [122] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1453), - [sym_let_condition] = STATE(1453), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [123] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [119] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(765), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -21246,60 +21241,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [124] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(732), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [120] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -21324,216 +21321,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [125] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [121] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1417), - [sym_let_condition] = STATE(1417), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1466), + [sym_let_condition] = STATE(1466), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [126] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(740), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym__condition] = STATE(1516), - [sym_let_condition] = STATE(1516), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_let] = ACTIONS(712), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [127] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(734), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [122] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(778), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -21558,219 +21481,546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [128] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [123] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1435), - [sym_let_condition] = STATE(1435), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1441), + [sym_let_condition] = STATE(1441), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [129] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [124] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1467), + [sym_let_condition] = STATE(1467), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [125] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1419), - [sym_let_condition] = STATE(1419), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1432), + [sym_let_condition] = STATE(1432), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [130] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(604), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [126] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(756), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym__condition] = STATE(1542), + [sym_let_condition] = STATE(1542), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_let] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [127] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1438), + [sym_let_condition] = STATE(1438), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [128] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(137), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1430), + [sym_let_condition] = STATE(1430), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [129] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(674), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(576), [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(716), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21791,63 +22041,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [130] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1464), + [sym_let_condition] = STATE(1464), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [131] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(687), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(684), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(132), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(136), [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(718), + [anon_sym_RPAREN] = ACTIONS(730), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21868,63 +22200,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [132] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(675), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(138), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(136), [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(720), + [anon_sym_RPAREN] = ACTIONS(732), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21945,63 +22279,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [133] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(635), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(691), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(134), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(138), [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(722), + [anon_sym_RPAREN] = ACTIONS(734), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22022,63 +22358,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [134] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(604), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(687), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(138), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(139), [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(716), + [anon_sym_RPAREN] = ACTIONS(736), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22099,63 +22437,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [135] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(660), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(608), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(138), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(132), [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(724), + [anon_sym_RPAREN] = ACTIONS(738), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22176,63 +22516,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [136] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(675), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(743), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(136), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(746), + [anon_sym_COLON_COLON] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_u8] = ACTIONS(757), + [anon_sym_i8] = ACTIONS(757), + [anon_sym_u16] = ACTIONS(757), + [anon_sym_i16] = ACTIONS(757), + [anon_sym_u32] = ACTIONS(757), + [anon_sym_i32] = ACTIONS(757), + [anon_sym_u64] = ACTIONS(757), + [anon_sym_i64] = ACTIONS(757), + [anon_sym_u128] = ACTIONS(757), + [anon_sym_i128] = ACTIONS(757), + [anon_sym_usize] = ACTIONS(757), + [anon_sym_bool] = ACTIONS(757), + [anon_sym_ByteArray] = ACTIONS(757), + [anon_sym_felt252] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), + [anon_sym_break] = ACTIONS(763), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_default] = ACTIONS(769), + [anon_sym_if] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(775), + [anon_sym_match] = ACTIONS(778), + [anon_sym_return] = ACTIONS(781), + [anon_sym_while] = ACTIONS(784), + [anon_sym_for] = ACTIONS(787), + [sym_numeric_literal] = ACTIONS(790), + [aux_sym_string_literal_token1] = ACTIONS(793), + [sym_shortstring_literal] = ACTIONS(796), + [anon_sym_true] = ACTIONS(799), + [anon_sym_false] = ACTIONS(799), + [anon_sym_ref] = ACTIONS(802), + [sym_identifier] = ACTIONS(805), + [sym_super] = ACTIONS(808), + [sym_line_comment] = ACTIONS(3), + }, + [137] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(611), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(135), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(131), [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(720), + [anon_sym_RPAREN] = ACTIONS(811), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22253,63 +22674,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [137] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [138] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(608), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(138), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(136), [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(726), + [anon_sym_RPAREN] = ACTIONS(738), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22330,290 +22753,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [138] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(735), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(138), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_BANG] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_COLON_COLON] = ACTIONS(737), - [anon_sym_STAR] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(740), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(745), - [anon_sym_i8] = ACTIONS(745), - [anon_sym_u16] = ACTIONS(745), - [anon_sym_i16] = ACTIONS(745), - [anon_sym_u32] = ACTIONS(745), - [anon_sym_i32] = ACTIONS(745), - [anon_sym_u64] = ACTIONS(745), - [anon_sym_i64] = ACTIONS(745), - [anon_sym_u128] = ACTIONS(745), - [anon_sym_i128] = ACTIONS(745), - [anon_sym_usize] = ACTIONS(745), - [anon_sym_bool] = ACTIONS(745), - [anon_sym_ByteArray] = ACTIONS(745), - [anon_sym_felt252] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_AT] = ACTIONS(731), - [anon_sym_break] = ACTIONS(751), - [anon_sym_continue] = ACTIONS(754), - [anon_sym_default] = ACTIONS(757), - [anon_sym_if] = ACTIONS(760), - [anon_sym_loop] = ACTIONS(763), - [anon_sym_match] = ACTIONS(766), - [anon_sym_return] = ACTIONS(769), - [anon_sym_while] = ACTIONS(772), - [sym_numeric_literal] = ACTIONS(775), - [aux_sym_string_literal_token1] = ACTIONS(778), - [sym_shortstring_literal] = ACTIONS(781), - [anon_sym_true] = ACTIONS(784), - [anon_sym_false] = ACTIONS(784), - [anon_sym_ref] = ACTIONS(787), - [sym_identifier] = ACTIONS(790), - [sym_super] = ACTIONS(793), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [139] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(423), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(611), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_mutable_specifier] = ACTIONS(796), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [140] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(746), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_mutable_specifier] = ACTIONS(798), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [141] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(423), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(136), [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(811), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22634,206 +22832,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_mutable_specifier] = ACTIONS(800), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [142] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(755), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [143] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(702), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [140] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(446), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_mutable_specifier] = ACTIONS(813), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [144] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(737), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [141] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(764), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_mutable_specifier] = ACTIONS(815), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [142] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(446), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -22860,130 +23065,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_mutable_specifier] = ACTIONS(817), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [145] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(698), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [143] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(722), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [144] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(637), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [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_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [146] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(440), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [145] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(475), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23010,55 +23297,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [147] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(486), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [146] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(471), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23085,55 +23374,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [148] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(483), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [147] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(453), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23160,55 +23451,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [149] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(466), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [148] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(782), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23235,55 +23528,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [149] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(710), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [150] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(464), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(769), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23310,55 +23682,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [151] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(454), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(729), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(819), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [152] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(432), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23385,55 +23836,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [152] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(447), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [153] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(742), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23460,205 +23913,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [153] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(697), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [154] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(720), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(478), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [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_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [155] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(446), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(479), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23685,130 +24067,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [156] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(425), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(711), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [157] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(441), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(480), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23835,130 +24221,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [158] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(706), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(481), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [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_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [159] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(428), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(482), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23985,130 +24375,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [160] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(696), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [161] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(751), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(436), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24135,55 +24452,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [162] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(756), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [161] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(738), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24210,55 +24529,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [163] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(715), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [162] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(492), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24285,55 +24606,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [163] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(678), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [164] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(728), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(733), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24360,280 +24760,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [165] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(758), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [166] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(759), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [167] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(760), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [168] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(451), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(777), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24660,55 +24837,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [169] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(714), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [166] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(748), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24735,356 +24914,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [170] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(762), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [171] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(683), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [167] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(715), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [172] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(707), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [168] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(709), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [173] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(699), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [169] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(714), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [174] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(757), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(255), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [170] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(698), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(255), - [sym_if_expression] = STATE(255), - [sym_match_expression] = STATE(255), - [sym_while_expression] = STATE(255), - [sym_loop_expression] = STATE(255), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(802), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -25110,131 +25222,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [175] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(766), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [176] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(742), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(251), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [171] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(730), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(339), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(251), - [sym_if_expression] = STATE(251), - [sym_match_expression] = STATE(251), - [sym_while_expression] = STATE(251), - [sym_loop_expression] = STATE(251), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(802), + [sym_block] = STATE(339), + [sym_if_expression] = STATE(339), + [sym_match_expression] = STATE(339), + [sym_while_expression] = STATE(339), + [sym_for_expression] = STATE(339), + [sym_loop_expression] = STATE(339), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(821), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -25260,55 +25299,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), + [anon_sym_if] = ACTIONS(823), + [anon_sym_loop] = ACTIONS(825), + [anon_sym_match] = ACTIONS(827), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_while] = ACTIONS(829), + [anon_sym_for] = ACTIONS(831), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [177] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(739), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [172] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(751), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25335,55 +25376,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [178] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(712), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [173] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(750), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25410,55 +25453,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [179] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(730), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [174] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(661), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25485,55 +25530,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [180] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(731), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [175] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(665), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25560,55 +25607,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [181] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(425), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [176] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(432), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25635,355 +25684,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(833), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [182] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(700), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [183] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(713), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [184] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(725), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(812), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [185] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(701), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [186] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(716), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [177] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(695), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26010,130 +25761,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [187] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(708), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [178] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(716), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [188] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(621), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [179] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(619), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [180] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(669), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [181] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(444), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26160,55 +26069,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [189] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(622), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [182] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(740), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26235,130 +26146,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [190] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(658), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [183] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(432), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [191] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(750), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [184] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(770), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26385,55 +26300,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [192] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(434), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [185] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(726), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26460,55 +26377,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [193] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(592), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [186] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(739), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26535,206 +26454,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [194] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(428), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [195] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(627), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [196] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(744), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [187] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(683), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(316), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), + [sym_block] = STATE(316), + [sym_if_expression] = STATE(316), + [sym_match_expression] = STATE(316), + [sym_while_expression] = STATE(316), + [sym_for_expression] = STATE(316), + [sym_loop_expression] = STATE(316), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(821), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -26760,280 +26531,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(823), + [anon_sym_loop] = ACTIONS(825), + [anon_sym_match] = ACTIONS(827), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(829), + [anon_sym_for] = ACTIONS(831), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [188] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(432), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(833), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [197] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(743), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [189] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(717), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [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_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [198] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(425), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [190] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(718), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(814), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [199] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(703), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [191] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(771), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [200] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(663), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [192] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(477), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27060,131 +26916,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [201] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(705), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [202] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(761), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [193] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(734), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(316), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), + [sym_block] = STATE(316), + [sym_if_expression] = STATE(316), + [sym_match_expression] = STATE(316), + [sym_while_expression] = STATE(316), + [sym_for_expression] = STATE(316), + [sym_loop_expression] = STATE(316), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(821), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -27210,205 +26993,596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(823), + [anon_sym_loop] = ACTIONS(825), + [anon_sym_match] = ACTIONS(827), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(829), + [anon_sym_for] = ACTIONS(831), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [194] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(616), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [203] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(747), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [195] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(752), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [196] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(753), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [197] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(759), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [198] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(762), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [199] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(719), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [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_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [204] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(676), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(251), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [200] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(720), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(251), - [sym_if_expression] = STATE(251), - [sym_match_expression] = STATE(251), - [sym_while_expression] = STATE(251), - [sym_loop_expression] = STATE(251), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(19), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [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_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [205] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(633), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [201] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(772), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27435,205 +27609,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [206] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(725), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [202] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(667), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [207] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(425), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [203] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(763), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [204] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(444), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [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_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(814), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [208] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [205] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), [sym_expression] = STATE(727), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [206] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(773), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27660,55 +27994,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [209] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(767), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [207] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(754), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27735,55 +28071,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [208] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(768), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [209] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(774), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [210] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(741), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(629), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27810,55 +28302,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [211] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(634), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(630), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27885,131 +28379,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [212] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(434), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(723), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [213] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(605), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(255), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(776), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [214] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(767), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(255), - [sym_if_expression] = STATE(255), - [sym_match_expression] = STATE(255), - [sym_while_expression] = STATE(255), - [sym_loop_expression] = STATE(255), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(802), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -28035,355 +28610,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [214] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(765), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [215] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(749), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(729), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [216] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(752), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(779), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [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_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_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [217] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(754), - [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_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_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(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(766), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [218] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(668), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(671), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(339), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(339), + [sym_if_expression] = STATE(339), + [sym_match_expression] = STATE(339), + [sym_while_expression] = STATE(339), + [sym_for_expression] = STATE(339), + [sym_loop_expression] = STATE(339), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(821), + [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_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_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(823), + [anon_sym_loop] = ACTIONS(825), + [anon_sym_match] = ACTIONS(827), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(829), + [anon_sym_for] = ACTIONS(831), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [219] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(436), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [220] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(780), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28410,55 +29072,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [219] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(726), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [221] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(758), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [222] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(713), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [223] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(781), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28485,55 +29303,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [220] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(729), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), + [224] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(737), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28560,19 +29380,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, }; @@ -28581,7 +29402,7 @@ static const uint16_t ts_small_parse_table[] = { [0] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(478), 23, + ACTIONS(544), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28605,7 +29426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(480), 39, + ACTIONS(546), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28648,7 +29469,7 @@ static const uint16_t ts_small_parse_table[] = { [70] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(553), 23, + ACTIONS(489), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28672,7 +29493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(555), 39, + ACTIONS(491), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28715,7 +29536,7 @@ static const uint16_t ts_small_parse_table[] = { [140] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(529), 23, + ACTIONS(508), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28739,7 +29560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(531), 39, + ACTIONS(510), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28782,7 +29603,7 @@ static const uint16_t ts_small_parse_table[] = { [210] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(525), 23, + ACTIONS(540), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28806,7 +29627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(527), 39, + ACTIONS(542), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28849,7 +29670,7 @@ static const uint16_t ts_small_parse_table[] = { [280] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(549), 23, + ACTIONS(560), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28873,7 +29694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(551), 39, + ACTIONS(562), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28916,7 +29737,7 @@ static const uint16_t ts_small_parse_table[] = { [350] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(541), 23, + ACTIONS(524), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28940,7 +29761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(543), 39, + ACTIONS(526), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28983,7 +29804,7 @@ static const uint16_t ts_small_parse_table[] = { [420] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(486), 23, + ACTIONS(536), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -29007,7 +29828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(488), 39, + ACTIONS(538), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -29047,86 +29868,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [490] = 34, + [490] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(53), 1, + anon_sym_extern, + ACTIONS(59), 1, + anon_sym_pub, + ACTIONS(835), 1, + anon_sym_RBRACE, + ACTIONS(837), 1, + anon_sym_impl, + ACTIONS(839), 1, + anon_sym_SEMI, + ACTIONS(841), 1, + anon_sym_trait, + ACTIONS(843), 1, + anon_sym_type, + ACTIONS(845), 1, + anon_sym_const, + ACTIONS(847), 1, anon_sym_POUND, - ACTIONS(818), 1, - anon_sym_LBRACK, - ACTIONS(820), 1, - anon_sym_COMMA, - ACTIONS(822), 1, + ACTIONS(849), 1, + anon_sym_mod, + ACTIONS(851), 1, + anon_sym_struct, + ACTIONS(853), 1, + anon_sym_enum, + ACTIONS(855), 1, + anon_sym_let, + ACTIONS(857), 1, + anon_sym_use, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(826), 1, - anon_sym__, - ACTIONS(828), 1, - anon_sym_RPAREN, - ACTIONS(832), 1, - anon_sym_DASH, - ACTIONS(834), 1, - anon_sym_PIPE, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(838), 1, + ACTIONS(863), 1, anon_sym_default, - ACTIONS(840), 1, - sym_numeric_literal, - ACTIONS(842), 1, - aux_sym_string_literal_token1, - ACTIONS(844), 1, - sym_shortstring_literal, - ACTIONS(848), 1, - anon_sym_ref, - ACTIONS(850), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(852), 1, - sym_mutable_specifier, - ACTIONS(854), 1, - sym_super, - STATE(340), 1, - sym_attribute_item, - STATE(387), 1, - sym_ref_specifier, - STATE(871), 1, - sym_generic_type, - STATE(945), 1, - sym_negative_literal, - STATE(957), 1, - sym_scoped_type_identifier, - STATE(1013), 1, + STATE(518), 1, + sym_extern_type, + STATE(876), 1, + sym_visibility_modifier, + STATE(1217), 1, + sym_extern, + STATE(1218), 1, + sym_function, + STATE(1434), 1, sym_scoped_identifier, - STATE(1044), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - STATE(1138), 1, - sym_macro_invocation, - STATE(1432), 1, - sym__pattern, - ACTIONS(846), 2, - anon_sym_true, - anon_sym_false, - STATE(946), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1164), 2, - sym_parameter, - sym__type, - STATE(881), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(953), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(861), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29141,123 +29934,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [618] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(856), 1, - anon_sym_else, - STATE(254), 1, - sym_else_clause, - ACTIONS(557), 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, - anon_sym_QMARK, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(559), 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, - anon_sym_DASH, - anon_sym_SLASH, - 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, - [688] = 27, + STATE(240), 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, + [604] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(858), 1, - anon_sym_RBRACE, - ACTIONS(860), 1, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(53), 1, + anon_sym_extern, + ACTIONS(59), 1, + anon_sym_pub, + ACTIONS(837), 1, anon_sym_impl, - ACTIONS(863), 1, + ACTIONS(839), 1, anon_sym_SEMI, - ACTIONS(866), 1, + ACTIONS(841), 1, anon_sym_trait, - ACTIONS(869), 1, + ACTIONS(843), 1, anon_sym_type, - ACTIONS(872), 1, + ACTIONS(845), 1, anon_sym_const, - ACTIONS(875), 1, + ACTIONS(847), 1, anon_sym_POUND, - ACTIONS(878), 1, + ACTIONS(849), 1, anon_sym_mod, - ACTIONS(881), 1, + ACTIONS(851), 1, anon_sym_struct, - ACTIONS(884), 1, + ACTIONS(853), 1, anon_sym_enum, - ACTIONS(887), 1, - anon_sym_fn, - ACTIONS(890), 1, + ACTIONS(855), 1, anon_sym_let, - ACTIONS(893), 1, + ACTIONS(857), 1, anon_sym_use, - ACTIONS(896), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(863), 1, anon_sym_default, - ACTIONS(905), 1, - anon_sym_extern, - ACTIONS(908), 1, - anon_sym_pub, - ACTIONS(911), 1, + ACTIONS(865), 1, sym_identifier, - STATE(566), 1, + ACTIONS(867), 1, + anon_sym_RBRACE, + STATE(518), 1, sym_extern_type, - STATE(858), 1, + STATE(876), 1, sym_visibility_modifier, - STATE(1160), 1, + STATE(1217), 1, sym_extern, - STATE(1207), 1, + STATE(1218), 1, sym_function, - STATE(1462), 1, + STATE(1434), 1, sym_scoped_identifier, - STATE(1533), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(899), 15, + ACTIONS(861), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29273,10 +30022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(230), 18, + STATE(240), 19, sym_impl_item, sym_trait_item, sym_associated_type, + sym_associated_impl, sym_const_item, sym_macro_invocation, sym_empty_statement, @@ -29292,84 +30042,38 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [801] = 33, + [718] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(560), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, - ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(822), 1, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(824), 1, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(832), 1, + anon_sym_GT, anon_sym_DASH, - ACTIONS(834), 1, - anon_sym_PIPE, - ACTIONS(836), 1, + anon_sym_TILDE, anon_sym_AT, - ACTIONS(838), 1, - anon_sym_default, - ACTIONS(840), 1, - sym_numeric_literal, - ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, sym_shortstring_literal, - ACTIONS(848), 1, - anon_sym_ref, - ACTIONS(850), 1, - sym_identifier, - ACTIONS(852), 1, - sym_mutable_specifier, - ACTIONS(854), 1, - sym_super, - ACTIONS(914), 1, - anon_sym__, - ACTIONS(916), 1, - anon_sym_RPAREN, - STATE(338), 1, - sym_attribute_item, - STATE(387), 1, - sym_ref_specifier, - STATE(871), 1, - sym_generic_type, - STATE(945), 1, - sym_negative_literal, - STATE(957), 1, - sym_scoped_type_identifier, - STATE(1013), 1, - sym_scoped_identifier, - STATE(1044), 1, - sym_generic_type_with_turbofish, - STATE(1138), 1, - sym_macro_invocation, - STATE(1432), 1, - sym__pattern, - ACTIONS(846), 2, - anon_sym_true, - anon_sym_false, - STATE(946), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1355), 2, - sym_parameter, - sym__type, - STATE(881), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(953), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(562), 41, + 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, @@ -29384,7 +30088,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [926] = 27, + 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_ref, + sym_identifier, + sym_super, + [784] = 27, ACTIONS(3), 1, sym_line_comment, ACTIONS(31), 1, @@ -29393,49 +30114,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(59), 1, anon_sym_pub, - ACTIONS(918), 1, - anon_sym_RBRACE, - ACTIONS(920), 1, + ACTIONS(837), 1, anon_sym_impl, - ACTIONS(922), 1, + ACTIONS(839), 1, anon_sym_SEMI, - ACTIONS(924), 1, + ACTIONS(841), 1, anon_sym_trait, - ACTIONS(926), 1, + ACTIONS(843), 1, anon_sym_type, - ACTIONS(928), 1, + ACTIONS(845), 1, anon_sym_const, - ACTIONS(930), 1, + ACTIONS(847), 1, anon_sym_POUND, - ACTIONS(932), 1, + ACTIONS(849), 1, anon_sym_mod, - ACTIONS(934), 1, + ACTIONS(851), 1, anon_sym_struct, - ACTIONS(936), 1, + ACTIONS(853), 1, anon_sym_enum, - ACTIONS(938), 1, + ACTIONS(855), 1, anon_sym_let, - ACTIONS(940), 1, + ACTIONS(857), 1, anon_sym_use, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(863), 1, anon_sym_default, - ACTIONS(948), 1, + ACTIONS(865), 1, sym_identifier, - STATE(566), 1, + ACTIONS(869), 1, + anon_sym_RBRACE, + STATE(518), 1, sym_extern_type, - STATE(858), 1, + STATE(876), 1, sym_visibility_modifier, - STATE(1160), 1, + STATE(1217), 1, sym_extern, - STATE(1207), 1, + STATE(1218), 1, sym_function, - STATE(1462), 1, + STATE(1434), 1, sym_scoped_identifier, - STATE(1533), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(944), 15, + ACTIONS(861), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29451,10 +30172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(230), 18, + STATE(232), 19, sym_impl_item, sym_trait_item, sym_associated_type, + sym_associated_impl, sym_const_item, sym_macro_invocation, sym_empty_statement, @@ -29470,10 +30192,10 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [1039] = 3, + [898] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(525), 17, + ACTIONS(536), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29491,7 +30213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(527), 40, + ACTIONS(538), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -29526,64 +30248,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [1104] = 27, + [964] = 34, ACTIONS(3), 1, sym_line_comment, - ACTIONS(31), 1, - anon_sym_fn, - ACTIONS(53), 1, - anon_sym_extern, - ACTIONS(59), 1, - anon_sym_pub, - ACTIONS(920), 1, - anon_sym_impl, - ACTIONS(922), 1, - anon_sym_SEMI, - ACTIONS(924), 1, - anon_sym_trait, - ACTIONS(926), 1, - anon_sym_type, - ACTIONS(928), 1, - anon_sym_const, - ACTIONS(930), 1, + ACTIONS(871), 1, anon_sym_POUND, - ACTIONS(932), 1, - anon_sym_mod, - ACTIONS(934), 1, - anon_sym_struct, - ACTIONS(936), 1, - anon_sym_enum, - ACTIONS(938), 1, - anon_sym_let, - ACTIONS(940), 1, - anon_sym_use, - ACTIONS(942), 1, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(875), 1, + anon_sym_COMMA, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(879), 1, + anon_sym_LPAREN, + ACTIONS(881), 1, + anon_sym__, + ACTIONS(883), 1, + anon_sym_RPAREN, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(893), 1, anon_sym_default, - ACTIONS(948), 1, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(903), 1, + anon_sym_ref, + ACTIONS(905), 1, sym_identifier, - ACTIONS(950), 1, - anon_sym_RBRACE, - STATE(566), 1, - sym_extern_type, - STATE(858), 1, - sym_visibility_modifier, - STATE(1160), 1, - sym_extern, - STATE(1207), 1, - sym_function, - STATE(1462), 1, + ACTIONS(907), 1, + sym_mutable_specifier, + ACTIONS(909), 1, + sym_super, + STATE(343), 1, + sym_attribute_item, + STATE(383), 1, + sym_ref_specifier, + STATE(881), 1, + sym_generic_type, + STATE(927), 1, + sym_negative_literal, + STATE(973), 1, + sym_scoped_type_identifier, + STATE(1038), 1, sym_scoped_identifier, - STATE(1533), 1, + STATE(1152), 1, sym_generic_type_with_turbofish, - ACTIONS(944), 15, + STATE(1153), 1, + sym_macro_invocation, + STATE(1388), 1, + sym__pattern, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(925), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1183), 2, + sym_parameter, + sym__type, + STATE(892), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(921), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(885), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29598,30 +30349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - STATE(232), 18, - sym_impl_item, - sym_trait_item, - sym_associated_type, - 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, - [1217] = 3, + [1092] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(541), 17, + ACTIONS(540), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29639,7 +30370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(543), 40, + ACTIONS(542), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -29674,90 +30405,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [1282] = 33, + [1158] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(53), 1, + anon_sym_extern, + ACTIONS(59), 1, + anon_sym_pub, + ACTIONS(837), 1, + anon_sym_impl, + ACTIONS(839), 1, + anon_sym_SEMI, + ACTIONS(841), 1, + anon_sym_trait, + ACTIONS(843), 1, + anon_sym_type, + ACTIONS(845), 1, + anon_sym_const, + ACTIONS(847), 1, anon_sym_POUND, - ACTIONS(818), 1, - anon_sym_LBRACK, - ACTIONS(822), 1, + ACTIONS(849), 1, + anon_sym_mod, + ACTIONS(851), 1, + anon_sym_struct, + ACTIONS(853), 1, + anon_sym_enum, + ACTIONS(855), 1, + anon_sym_let, + ACTIONS(857), 1, + anon_sym_use, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(832), 1, - anon_sym_DASH, - ACTIONS(834), 1, - anon_sym_PIPE, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(838), 1, + ACTIONS(863), 1, anon_sym_default, - ACTIONS(840), 1, - sym_numeric_literal, - ACTIONS(842), 1, - aux_sym_string_literal_token1, - ACTIONS(844), 1, - sym_shortstring_literal, - ACTIONS(848), 1, - anon_sym_ref, - ACTIONS(850), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(852), 1, - sym_mutable_specifier, - ACTIONS(854), 1, + ACTIONS(911), 1, + anon_sym_RBRACE, + STATE(518), 1, + sym_extern_type, + STATE(876), 1, + sym_visibility_modifier, + STATE(1217), 1, + sym_extern, + STATE(1218), 1, + sym_function, + STATE(1434), 1, + sym_scoped_identifier, + STATE(1547), 1, + sym_generic_type_with_turbofish, + ACTIONS(861), 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, - ACTIONS(914), 1, - anon_sym__, - ACTIONS(952), 1, - anon_sym_RPAREN, - STATE(338), 1, + STATE(233), 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, - STATE(387), 1, - sym_ref_specifier, - STATE(871), 1, - sym_generic_type, - STATE(945), 1, - sym_negative_literal, - STATE(957), 1, - sym_scoped_type_identifier, - STATE(1013), 1, + 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, + [1272] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(913), 1, + anon_sym_RBRACE, + ACTIONS(915), 1, + anon_sym_impl, + ACTIONS(918), 1, + anon_sym_SEMI, + ACTIONS(921), 1, + anon_sym_trait, + ACTIONS(924), 1, + anon_sym_type, + ACTIONS(927), 1, + anon_sym_const, + ACTIONS(930), 1, + anon_sym_POUND, + ACTIONS(933), 1, + anon_sym_mod, + ACTIONS(936), 1, + anon_sym_struct, + ACTIONS(939), 1, + anon_sym_enum, + ACTIONS(942), 1, + anon_sym_fn, + ACTIONS(945), 1, + anon_sym_let, + ACTIONS(948), 1, + anon_sym_use, + ACTIONS(951), 1, + anon_sym_COLON_COLON, + ACTIONS(957), 1, + anon_sym_default, + ACTIONS(960), 1, + anon_sym_extern, + ACTIONS(963), 1, + anon_sym_pub, + ACTIONS(966), 1, + sym_identifier, + STATE(518), 1, + sym_extern_type, + STATE(876), 1, + sym_visibility_modifier, + STATE(1217), 1, + sym_extern, + STATE(1218), 1, + sym_function, + STATE(1434), 1, sym_scoped_identifier, - STATE(1044), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - STATE(1138), 1, - sym_macro_invocation, - STATE(1432), 1, - sym__pattern, - ACTIONS(846), 2, - anon_sym_true, - anon_sym_false, - STATE(946), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1355), 2, - sym_parameter, - sym__type, - STATE(881), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(953), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(954), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29772,10 +30565,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [1407] = 3, + sym_super, + STATE(240), 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, + [1386] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(541), 24, + ACTIONS(969), 1, + anon_sym_else, + STATE(254), 1, + sym_else_clause, + ACTIONS(568), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29800,7 +30618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(543), 33, + ACTIONS(570), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -29830,14 +30648,13 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_else, sym_identifier, sym_mutable_specifier, sym_super, - [1472] = 3, + [1456] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(549), 24, + ACTIONS(536), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29862,7 +30679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(551), 33, + ACTIONS(538), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -29896,10 +30713,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [1537] = 3, + [1521] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(525), 24, + ACTIONS(560), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29924,7 +30741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(527), 33, + ACTIONS(562), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -29958,58 +30775,38 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [1602] = 27, + [1586] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(31), 1, - anon_sym_fn, - ACTIONS(53), 1, - anon_sym_extern, - ACTIONS(59), 1, - anon_sym_pub, - ACTIONS(920), 1, - anon_sym_impl, - ACTIONS(922), 1, - anon_sym_SEMI, - ACTIONS(924), 1, - anon_sym_trait, - ACTIONS(926), 1, - anon_sym_type, - ACTIONS(928), 1, - anon_sym_const, - ACTIONS(930), 1, + ACTIONS(540), 24, + anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(932), 1, - anon_sym_mod, - ACTIONS(934), 1, - anon_sym_struct, - ACTIONS(936), 1, - anon_sym_enum, - ACTIONS(938), 1, - anon_sym_let, - ACTIONS(940), 1, - anon_sym_use, - ACTIONS(942), 1, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(946), 1, - anon_sym_default, - ACTIONS(948), 1, - sym_identifier, - ACTIONS(954), 1, - anon_sym_RBRACE, - STATE(566), 1, - sym_extern_type, - STATE(858), 1, - sym_visibility_modifier, - STATE(1160), 1, - sym_extern, - STATE(1207), 1, - sym_function, - STATE(1462), 1, - sym_scoped_identifier, - STATE(1533), 1, - sym_generic_type_with_turbofish, - ACTIONS(944), 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, + 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(542), 33, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30024,96 +30821,92 @@ 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, + anon_sym_true, + anon_sym_false, + anon_sym_else, + sym_identifier, + sym_mutable_specifier, sym_super, - STATE(243), 18, - sym_impl_item, - sym_trait_item, - sym_associated_type, - 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, - [1715] = 33, + [1651] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(871), 1, anon_sym_POUND, - ACTIONS(818), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(824), 1, + ACTIONS(879), 1, anon_sym_LPAREN, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(838), 1, + ACTIONS(893), 1, anon_sym_default, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(848), 1, + ACTIONS(903), 1, anon_sym_ref, - ACTIONS(850), 1, + ACTIONS(905), 1, sym_identifier, - ACTIONS(852), 1, + ACTIONS(907), 1, sym_mutable_specifier, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(914), 1, + ACTIONS(971), 1, anon_sym__, - ACTIONS(956), 1, + ACTIONS(973), 1, anon_sym_RPAREN, - STATE(338), 1, + STATE(345), 1, sym_attribute_item, - STATE(387), 1, + STATE(383), 1, sym_ref_specifier, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(957), 1, + STATE(973), 1, sym_scoped_type_identifier, - STATE(1013), 1, + STATE(1038), 1, sym_scoped_identifier, - STATE(1044), 1, + STATE(1152), 1, sym_generic_type_with_turbofish, - STATE(1138), 1, + STATE(1153), 1, sym_macro_invocation, - STATE(1432), 1, + STATE(1388), 1, sym__pattern, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1355), 2, + STATE(1482), 2, sym_parameter, sym__type, - STATE(881), 4, + STATE(892), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -30121,7 +30914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(885), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30136,38 +30929,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [1840] = 3, + [1776] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(549), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, + ACTIONS(871), 1, anon_sym_POUND, + ACTIONS(873), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(877), 1, anon_sym_COLON_COLON, - anon_sym_STAR, + ACTIONS(879), 1, anon_sym_LPAREN, - anon_sym_GT, + ACTIONS(887), 1, anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(891), 1, anon_sym_AT, + ACTIONS(893), 1, + anon_sym_default, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, aux_sym_string_literal_token1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(551), 40, - 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(903), 1, + anon_sym_ref, + ACTIONS(905), 1, + sym_identifier, + ACTIONS(907), 1, + sym_mutable_specifier, + ACTIONS(909), 1, + sym_super, + ACTIONS(971), 1, + anon_sym__, + ACTIONS(975), 1, + anon_sym_RPAREN, + STATE(345), 1, + sym_attribute_item, + STATE(383), 1, + sym_ref_specifier, + STATE(881), 1, + sym_generic_type, + STATE(927), 1, + sym_negative_literal, + STATE(973), 1, + sym_scoped_type_identifier, + STATE(1038), 1, + sym_scoped_identifier, + STATE(1152), 1, + sym_generic_type_with_turbofish, + STATE(1153), 1, + sym_macro_invocation, + STATE(1388), 1, + sym__pattern, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(925), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1482), 2, + sym_parameter, + sym__type, + STATE(892), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(921), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(885), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30182,74 +31021,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + [1901] = 33, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(871), 1, + anon_sym_POUND, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(879), 1, + anon_sym_LPAREN, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(893), 1, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, + ACTIONS(895), 1, sym_numeric_literal, - anon_sym_true, - anon_sym_false, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(903), 1, anon_sym_ref, + ACTIONS(905), 1, sym_identifier, + ACTIONS(907), 1, + sym_mutable_specifier, + ACTIONS(909), 1, sym_super, - [1905] = 27, + ACTIONS(971), 1, + anon_sym__, + ACTIONS(977), 1, + anon_sym_RPAREN, + STATE(345), 1, + sym_attribute_item, + STATE(383), 1, + sym_ref_specifier, + STATE(881), 1, + sym_generic_type, + STATE(927), 1, + sym_negative_literal, + STATE(973), 1, + sym_scoped_type_identifier, + STATE(1038), 1, + sym_scoped_identifier, + STATE(1152), 1, + sym_generic_type_with_turbofish, + STATE(1153), 1, + sym_macro_invocation, + STATE(1388), 1, + sym__pattern, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(925), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1482), 2, + sym_parameter, + sym__type, + STATE(892), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(921), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(885), 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, + [2026] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(31), 1, - anon_sym_fn, - ACTIONS(53), 1, - anon_sym_extern, - ACTIONS(59), 1, - anon_sym_pub, - ACTIONS(920), 1, - anon_sym_impl, - ACTIONS(922), 1, + ACTIONS(979), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(924), 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_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(981), 41, + anon_sym_impl, anon_sym_trait, - ACTIONS(926), 1, anon_sym_type, - ACTIONS(928), 1, anon_sym_const, - ACTIONS(930), 1, - anon_sym_POUND, - ACTIONS(932), 1, anon_sym_mod, - ACTIONS(934), 1, anon_sym_struct, - ACTIONS(936), 1, anon_sym_enum, - ACTIONS(938), 1, + anon_sym_fn, anon_sym_let, - ACTIONS(940), 1, anon_sym_use, - ACTIONS(942), 1, - anon_sym_COLON_COLON, - ACTIONS(946), 1, - anon_sym_default, - ACTIONS(948), 1, - sym_identifier, - ACTIONS(958), 1, - anon_sym_RBRACE, - STATE(566), 1, - sym_extern_type, - STATE(858), 1, - sym_visibility_modifier, - STATE(1160), 1, - sym_extern, - STATE(1207), 1, - sym_function, - STATE(1462), 1, - sym_scoped_identifier, - STATE(1533), 1, - sym_generic_type_with_turbofish, - ACTIONS(944), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30264,58 +31157,53 @@ 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_ref, + sym_identifier, sym_super, - STATE(230), 18, - sym_impl_item, - sym_trait_item, - sym_associated_type, - 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, - [2018] = 3, + [2090] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(521), 24, + ACTIONS(983), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, 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, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(523), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(985), 41, + 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, @@ -30330,97 +31218,53 @@ 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_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_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2082] = 32, + [2154] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(987), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, - ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(824), 1, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(834), 1, - anon_sym_PIPE, - ACTIONS(836), 1, + anon_sym_TILDE, anon_sym_AT, - ACTIONS(838), 1, - anon_sym_default, - ACTIONS(840), 1, - sym_numeric_literal, - ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, sym_shortstring_literal, - ACTIONS(848), 1, - anon_sym_ref, - ACTIONS(850), 1, - sym_identifier, - ACTIONS(852), 1, - sym_mutable_specifier, - ACTIONS(854), 1, - sym_super, - ACTIONS(914), 1, - anon_sym__, - STATE(338), 1, - sym_attribute_item, - STATE(387), 1, - sym_ref_specifier, - STATE(871), 1, - sym_generic_type, - STATE(945), 1, - sym_negative_literal, - STATE(957), 1, - sym_scoped_type_identifier, - STATE(1013), 1, - sym_scoped_identifier, - STATE(1044), 1, - sym_generic_type_with_turbofish, - STATE(1138), 1, - sym_macro_invocation, - STATE(1432), 1, - sym__pattern, - ACTIONS(846), 2, - anon_sym_true, - anon_sym_false, - STATE(946), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1355), 2, - sym_parameter, - sym__type, - STATE(881), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(953), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(989), 41, + 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, @@ -30435,38 +31279,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [2204] = 3, + 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_ref, + sym_identifier, + sym_super, + [2218] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(525), 24, + ACTIONS(991), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, 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, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(527), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(993), 41, + 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, @@ -30481,53 +31340,53 @@ 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_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_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2268] = 3, + [2282] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(549), 24, + ACTIONS(995), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, 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, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(551), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(997), 41, + 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, @@ -30542,53 +31401,53 @@ 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_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_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2332] = 3, + [2346] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(541), 24, + ACTIONS(999), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, 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, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(543), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(1001), 41, + 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, @@ -30603,25 +31462,27 @@ 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_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_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2396] = 3, + [2410] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(513), 24, + ACTIONS(564), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30646,7 +31507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(515), 32, + ACTIONS(566), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30679,10 +31540,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2460] = 3, + [2474] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(533), 24, + ACTIONS(556), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30707,7 +31568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(535), 32, + ACTIONS(558), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30740,46 +31601,36 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2524] = 5, + [2538] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(960), 6, + ACTIONS(1003), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + 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_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(579), 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(575), 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(962), 24, - anon_sym__, + ACTIONS(1005), 41, + 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, @@ -30794,19 +31645,27 @@ 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_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_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2592] = 3, + [2602] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(517), 24, + ACTIONS(520), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30831,7 +31690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(519), 32, + ACTIONS(522), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30864,10 +31723,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2656] = 3, + [2666] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(505), 24, + ACTIONS(528), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30892,7 +31751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(507), 32, + ACTIONS(530), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30925,44 +31784,42 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2720] = 3, + [2730] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(509), 24, + ACTIONS(1007), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, 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, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(511), 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, + ACTIONS(1009), 41, + 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, @@ -30971,61 +31828,114 @@ 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_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_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2784] = 5, + [2794] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(964), 6, + ACTIONS(1011), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + 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_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(579), 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(575), 18, + ACTIONS(1013), 41, + 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_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_ref, + sym_identifier, + sym_super, + [2858] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1015), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, 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(966), 24, - anon_sym__, + anon_sym_SEMI, + 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_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1017), 41, + 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, @@ -31040,19 +31950,88 @@ 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_ref, + sym_identifier, + sym_super, + [2922] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1019), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1021), 41, + 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_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_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2852] = 3, + [2986] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(545), 24, + ACTIONS(516), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31077,7 +32056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(547), 32, + ACTIONS(518), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -31110,10 +32089,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2916] = 3, + [3050] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(537), 24, + ACTIONS(552), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31138,7 +32117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(539), 32, + ACTIONS(554), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -31171,10 +32150,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2980] = 3, + [3114] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(968), 15, + ACTIONS(1023), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31190,7 +32169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(970), 40, + ACTIONS(1025), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31225,16 +32204,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3043] = 3, + [3178] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(972), 15, + ACTIONS(1027), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31250,7 +32230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(974), 40, + ACTIONS(1029), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31285,16 +32265,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3106] = 3, + [3242] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(976), 15, + ACTIONS(1031), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31310,7 +32291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(978), 40, + ACTIONS(1033), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31345,16 +32326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3169] = 3, + [3306] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(980), 15, + ACTIONS(1035), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31370,7 +32352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(982), 40, + ACTIONS(1037), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31405,16 +32387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3232] = 3, + [3370] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(984), 15, + ACTIONS(1039), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31430,7 +32413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(986), 40, + ACTIONS(1041), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31465,16 +32448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3295] = 3, + [3434] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(988), 15, + ACTIONS(1043), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31490,7 +32474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(990), 40, + ACTIONS(1045), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31525,16 +32509,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3358] = 3, + [3498] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(992), 15, + ACTIONS(1047), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31550,7 +32535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(994), 40, + ACTIONS(1049), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31585,16 +32570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3421] = 3, + [3562] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(996), 15, + ACTIONS(1051), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31610,7 +32596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(998), 40, + ACTIONS(1053), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31645,16 +32631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3484] = 3, + [3626] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1000), 15, + ACTIONS(1055), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31670,7 +32657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1002), 40, + ACTIONS(1057), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31705,16 +32692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3547] = 3, + [3690] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1004), 15, + ACTIONS(1059), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31730,7 +32718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1006), 40, + ACTIONS(1061), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31765,16 +32753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3610] = 3, + [3754] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1008), 15, + ACTIONS(1063), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31790,7 +32779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1010), 40, + ACTIONS(1065), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31825,16 +32814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3673] = 3, + [3818] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1012), 15, + ACTIONS(1067), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31850,7 +32840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1014), 40, + ACTIONS(1069), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31885,16 +32875,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3736] = 3, + [3882] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1016), 15, + ACTIONS(1071), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31910,7 +32901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1018), 40, + ACTIONS(1073), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31945,16 +32936,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3799] = 3, + [3946] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1020), 15, + ACTIONS(1075), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31970,7 +32962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1022), 40, + ACTIONS(1077), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32005,16 +32997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3862] = 3, + [4010] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1024), 15, + ACTIONS(1079), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32030,7 +33023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1026), 40, + ACTIONS(1081), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32065,16 +33058,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3925] = 3, + [4074] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1028), 15, + ACTIONS(1083), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32090,7 +33084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1030), 40, + ACTIONS(1085), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32125,16 +33119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3988] = 3, + [4138] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1032), 15, + ACTIONS(1087), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32150,7 +33145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1034), 40, + ACTIONS(1089), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32185,16 +33180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4051] = 3, + [4202] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1036), 15, + ACTIONS(1091), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32210,7 +33206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1038), 40, + ACTIONS(1093), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32245,16 +33241,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4114] = 3, + [4266] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1040), 15, + ACTIONS(1095), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32270,7 +33267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1042), 40, + ACTIONS(1097), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32305,16 +33302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4177] = 3, + [4330] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1044), 15, + ACTIONS(1099), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32330,7 +33328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1046), 40, + ACTIONS(1101), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32365,16 +33363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4240] = 3, + [4394] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1048), 15, + ACTIONS(1103), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32390,7 +33389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1050), 40, + ACTIONS(1105), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32425,42 +33424,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4303] = 3, + [4458] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1052), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(512), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + 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(1054), 40, - 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(514), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -32475,26 +33477,25 @@ 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_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, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [4366] = 3, + [4522] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1056), 15, + ACTIONS(1107), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32510,7 +33511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1058), 40, + ACTIONS(1109), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32545,16 +33546,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4429] = 3, + [4586] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1060), 15, + ACTIONS(1111), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32570,7 +33572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1062), 40, + ACTIONS(1113), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32605,16 +33607,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4492] = 3, + [4650] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1064), 15, + ACTIONS(1115), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32630,7 +33633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1066), 40, + ACTIONS(1117), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32665,16 +33668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4555] = 3, + [4714] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1068), 15, + ACTIONS(1119), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32690,7 +33694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1070), 40, + ACTIONS(1121), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32725,16 +33729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4618] = 3, + [4778] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1072), 15, + ACTIONS(1123), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32750,7 +33755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1074), 40, + ACTIONS(1125), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32785,16 +33790,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4681] = 3, + [4842] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1076), 15, + ACTIONS(1127), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32810,7 +33816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1078), 40, + ACTIONS(1129), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32845,16 +33851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4744] = 3, + [4906] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1080), 15, + ACTIONS(1131), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32870,7 +33877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1082), 40, + ACTIONS(1133), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32905,102 +33912,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4807] = 3, + [4970] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1084), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(532), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + 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(1086), 40, - 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_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, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [4870] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1088), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(534), 32, + anon_sym_EQ, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1090), 40, - 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__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -33015,86 +33965,25 @@ 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, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [4933] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1092), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1094), 40, - 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_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [4996] = 3, + [5034] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1096), 15, + ACTIONS(1135), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33110,7 +33999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1098), 40, + ACTIONS(1137), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33145,16 +34034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5059] = 3, + [5098] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1100), 15, + ACTIONS(1139), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33170,7 +34060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1102), 40, + ACTIONS(1141), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33205,42 +34095,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5122] = 3, + [5162] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1104), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(548), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + 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(1106), 40, - 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(550), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -33255,52 +34148,53 @@ 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_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, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [5185] = 3, + [5226] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1108), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(540), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + 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(1110), 40, - 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(542), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -33315,26 +34209,25 @@ 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_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, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [5248] = 3, + [5290] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1112), 15, + ACTIONS(1143), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33350,7 +34243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1114), 40, + ACTIONS(1145), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33385,16 +34278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5311] = 3, + [5354] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1116), 15, + ACTIONS(1147), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33410,7 +34304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1118), 40, + ACTIONS(1149), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33445,16 +34339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5374] = 3, + [5418] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1120), 15, + ACTIONS(1151), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33470,7 +34365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1122), 40, + ACTIONS(1153), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33505,16 +34400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5437] = 3, + [5482] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1124), 15, + ACTIONS(1155), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33530,7 +34426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1126), 40, + ACTIONS(1157), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33565,16 +34461,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5500] = 3, + [5546] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1128), 15, + ACTIONS(1159), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33590,7 +34487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1130), 40, + ACTIONS(1161), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33625,102 +34522,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5563] = 3, + [5610] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1132), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(560), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + 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(1134), 40, - 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_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, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [5626] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1136), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(562), 32, + anon_sym_EQ, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1138), 40, - 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__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -33735,172 +34575,53 @@ 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, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [5689] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1140), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1142), 40, - 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_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [5752] = 3, + [5674] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1144), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(536), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + 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(1146), 40, - 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_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, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [5815] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1148), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(538), 32, + anon_sym_EQ, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1150), 40, - 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__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -33915,26 +34636,25 @@ 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_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, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [5878] = 3, + [5738] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1152), 15, + ACTIONS(1163), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33950,7 +34670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1154), 40, + ACTIONS(1165), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33985,16 +34705,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5941] = 3, + [5802] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1156), 15, + ACTIONS(1167), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34010,7 +34731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1158), 40, + ACTIONS(1169), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34045,16 +34766,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6004] = 3, + [5866] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1160), 15, + ACTIONS(1171), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34070,7 +34792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1162), 40, + ACTIONS(1173), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34105,16 +34827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6067] = 3, + [5930] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1164), 15, + ACTIONS(1175), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34130,7 +34853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1166), 40, + ACTIONS(1177), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34165,16 +34888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6130] = 3, + [5994] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1168), 15, + ACTIONS(1179), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34190,7 +34914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1170), 40, + ACTIONS(1181), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34225,16 +34949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6193] = 3, + [6058] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1172), 15, + ACTIONS(1183), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34250,7 +34975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1174), 40, + ACTIONS(1185), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34285,16 +35010,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6256] = 3, + [6122] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1176), 15, + ACTIONS(1187), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34310,7 +35036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1178), 40, + ACTIONS(1189), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34345,16 +35071,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6319] = 3, + [6186] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1180), 15, + ACTIONS(1191), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34370,7 +35097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1182), 40, + ACTIONS(1193), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34405,16 +35132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6382] = 3, + [6250] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1184), 15, + ACTIONS(1195), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34430,7 +35158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1186), 40, + ACTIONS(1197), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34465,16 +35193,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6445] = 3, + [6314] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1188), 15, + ACTIONS(1199), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34490,7 +35219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1190), 40, + ACTIONS(1201), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34525,16 +35254,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6508] = 3, + [6378] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1192), 15, + ACTIONS(1203), 6, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(592), 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(594), 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(1205), 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, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [6446] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1207), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34550,7 +35343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1194), 40, + ACTIONS(1209), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34585,16 +35378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6571] = 3, + [6510] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 15, + ACTIONS(1211), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34610,7 +35404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1198), 40, + ACTIONS(1213), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34645,16 +35439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6634] = 3, + [6574] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1200), 15, + ACTIONS(1215), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34670,7 +35465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1202), 40, + ACTIONS(1217), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34705,16 +35500,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6697] = 3, + [6638] = 32, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(871), 1, + anon_sym_POUND, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(879), 1, + anon_sym_LPAREN, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(893), 1, + anon_sym_default, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(903), 1, + anon_sym_ref, + ACTIONS(905), 1, + sym_identifier, + ACTIONS(907), 1, + sym_mutable_specifier, + ACTIONS(909), 1, + sym_super, + ACTIONS(971), 1, + anon_sym__, + STATE(345), 1, + sym_attribute_item, + STATE(383), 1, + sym_ref_specifier, + STATE(881), 1, + sym_generic_type, + STATE(927), 1, + sym_negative_literal, + STATE(973), 1, + sym_scoped_type_identifier, + STATE(1038), 1, + sym_scoped_identifier, + STATE(1152), 1, + sym_generic_type_with_turbofish, + STATE(1153), 1, + sym_macro_invocation, + STATE(1388), 1, + sym__pattern, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(925), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1482), 2, + sym_parameter, + sym__type, + STATE(892), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(921), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(885), 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, + [6760] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1204), 15, + ACTIONS(1219), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34730,7 +35616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1206), 40, + ACTIONS(1221), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34765,16 +35651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6760] = 3, + [6824] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1208), 15, + ACTIONS(1223), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34790,7 +35677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1210), 40, + ACTIONS(1225), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34825,16 +35712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6823] = 3, + [6888] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 15, + ACTIONS(1227), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34850,7 +35738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1214), 40, + ACTIONS(1229), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34885,16 +35773,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6886] = 3, + [6952] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 15, + ACTIONS(1231), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34910,7 +35799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1218), 40, + ACTIONS(1233), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34945,16 +35834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6949] = 3, + [7016] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1220), 15, + ACTIONS(1235), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34970,7 +35860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1222), 40, + ACTIONS(1237), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35005,16 +35895,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7012] = 3, + [7080] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1224), 15, + ACTIONS(1239), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35030,7 +35921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1226), 40, + ACTIONS(1241), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35065,16 +35956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7075] = 3, + [7144] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1228), 15, + ACTIONS(1243), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35090,7 +35982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1230), 40, + ACTIONS(1245), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35125,16 +36017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7138] = 3, + [7208] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1232), 15, + ACTIONS(1247), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35150,7 +36043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1234), 40, + ACTIONS(1249), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35185,16 +36078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7201] = 3, + [7272] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1236), 15, + ACTIONS(1251), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35210,7 +36104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1238), 40, + ACTIONS(1253), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35245,16 +36139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7264] = 3, + [7336] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1240), 15, + ACTIONS(1255), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35270,7 +36165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1242), 40, + ACTIONS(1257), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35305,16 +36200,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7327] = 3, + [7400] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1244), 15, + ACTIONS(1259), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35330,7 +36226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1246), 40, + ACTIONS(1261), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35365,16 +36261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7390] = 3, + [7464] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1248), 15, + ACTIONS(1263), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35390,7 +36287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1250), 40, + ACTIONS(1265), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35425,16 +36322,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7453] = 3, + [7528] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1252), 15, + ACTIONS(1267), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35450,7 +36348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1254), 40, + ACTIONS(1269), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35485,16 +36383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7516] = 3, + [7592] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 15, + ACTIONS(1271), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35510,7 +36409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1258), 40, + ACTIONS(1273), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35545,16 +36444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7579] = 3, + [7656] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1260), 15, + ACTIONS(1275), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35570,7 +36470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1262), 40, + ACTIONS(1277), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35605,16 +36505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7642] = 3, + [7720] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1264), 15, + ACTIONS(1279), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35630,7 +36531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1266), 40, + ACTIONS(1281), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35665,16 +36566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7705] = 3, + [7784] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1268), 15, + ACTIONS(1283), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35690,7 +36592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1270), 40, + ACTIONS(1285), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35725,16 +36627,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7768] = 3, + [7848] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1272), 15, + ACTIONS(1287), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35750,7 +36653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1274), 40, + ACTIONS(1289), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35785,16 +36688,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7831] = 3, + [7912] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1291), 6, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(592), 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(594), 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(1293), 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, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [7980] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1276), 15, + ACTIONS(1295), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35810,7 +36777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1278), 40, + ACTIONS(1297), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35845,16 +36812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7894] = 3, + [8044] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1280), 15, + ACTIONS(1299), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35870,7 +36838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1282), 40, + ACTIONS(1301), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35905,84 +36873,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7957] = 30, + [8108] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1284), 1, + ACTIONS(1303), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(1286), 1, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, - ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, - ACTIONS(1298), 1, anon_sym_DASH, - ACTIONS(1300), 1, - anon_sym_PIPE, - ACTIONS(1302), 1, - anon_sym_default, - ACTIONS(1304), 1, - sym_numeric_literal, - ACTIONS(1306), 1, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, - ACTIONS(1308), 1, sym_shortstring_literal, - ACTIONS(1312), 1, - sym_identifier, - ACTIONS(1314), 1, - sym_mutable_specifier, - ACTIONS(1316), 1, - sym_super, - STATE(988), 1, - sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, - sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, - sym_generic_type_with_turbofish, - STATE(1548), 1, - sym_generic_type, - STATE(1559), 1, - sym_match_pattern, - STATE(1579), 1, - sym_last_match_arm, - ACTIONS(1310), 2, - anon_sym_true, - anon_sym_false, - STATE(342), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1190), 2, - sym_string_literal, - sym_boolean_literal, - STATE(350), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1224), 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(1296), 14, + ACTIONS(1305), 41, + 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, @@ -35997,70 +36924,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8073] = 30, + 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_ref, + sym_identifier, + sym_super, + [8172] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(818), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(824), 1, + ACTIONS(879), 1, anon_sym_LPAREN, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(838), 1, + ACTIONS(893), 1, anon_sym_default, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(848), 1, + ACTIONS(903), 1, anon_sym_ref, - ACTIONS(850), 1, + ACTIONS(905), 1, sym_identifier, - ACTIONS(852), 1, + ACTIONS(907), 1, sym_mutable_specifier, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1318), 1, + ACTIONS(1307), 1, anon_sym__, - STATE(387), 1, + STATE(383), 1, sym_ref_specifier, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(957), 1, + STATE(973), 1, sym_scoped_type_identifier, - STATE(1013), 1, + STATE(1038), 1, sym_scoped_identifier, - STATE(1044), 1, + STATE(1152), 1, sym_generic_type_with_turbofish, - STATE(1138), 1, + STATE(1153), 1, sym_macro_invocation, - STATE(1432), 1, + STATE(1388), 1, sym__pattern, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1415), 2, + STATE(1333), 2, sym_parameter, sym__type, - STATE(881), 4, + STATE(892), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36068,7 +37012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(885), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36083,69 +37027,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8189] = 30, + [8288] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1309), 1, + anon_sym_RBRACE, + ACTIONS(1311), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, + ACTIONS(1319), 1, anon_sym__, - ACTIONS(1298), 1, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1327), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1312), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1339), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1341), 1, sym_super, - ACTIONS(1320), 1, - anon_sym_RBRACE, - STATE(988), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1179), 1, sym_negative_literal, - STATE(1221), 1, + STATE(1192), 1, sym__pattern, - STATE(1408), 1, + STATE(1215), 1, + sym_scoped_type_identifier, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, - sym_generic_type, - STATE(1559), 1, + STATE(1561), 1, sym_match_pattern, - STATE(1593), 1, + STATE(1567), 1, + sym_generic_type, + STATE(1569), 1, sym_last_match_arm, - ACTIONS(1310), 2, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(347), 2, + STATE(351), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, + STATE(356), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36154,7 +37098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36169,70 +37113,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8305] = 30, + [8404] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(818), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(824), 1, + ACTIONS(879), 1, anon_sym_LPAREN, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(838), 1, + ACTIONS(893), 1, anon_sym_default, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(848), 1, + ACTIONS(903), 1, anon_sym_ref, - ACTIONS(850), 1, + ACTIONS(905), 1, sym_identifier, - ACTIONS(852), 1, + ACTIONS(907), 1, sym_mutable_specifier, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1322), 1, + ACTIONS(1343), 1, anon_sym__, - STATE(387), 1, + STATE(383), 1, sym_ref_specifier, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(957), 1, + STATE(973), 1, sym_scoped_type_identifier, - STATE(1013), 1, + STATE(1038), 1, sym_scoped_identifier, - STATE(1044), 1, + STATE(1152), 1, sym_generic_type_with_turbofish, - STATE(1138), 1, + STATE(1153), 1, sym_macro_invocation, - STATE(1432), 1, + STATE(1388), 1, sym__pattern, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1315), 2, + STATE(1395), 2, sym_parameter, sym__type, - STATE(881), 4, + STATE(892), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36240,7 +37184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(885), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36255,69 +37199,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8421] = 30, + [8520] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1311), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, + ACTIONS(1319), 1, anon_sym__, - ACTIONS(1298), 1, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1327), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1312), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1339), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1341), 1, sym_super, - ACTIONS(1324), 1, + ACTIONS(1345), 1, anon_sym_RBRACE, - STATE(988), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1179), 1, sym_negative_literal, - STATE(1221), 1, + STATE(1192), 1, sym__pattern, - STATE(1408), 1, + STATE(1215), 1, + sym_scoped_type_identifier, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1499), 1, - sym_last_match_arm, - STATE(1548), 1, - sym_generic_type, - STATE(1559), 1, + STATE(1561), 1, sym_match_pattern, - ACTIONS(1310), 2, + STATE(1567), 1, + sym_generic_type, + STATE(1641), 1, + sym_last_match_arm, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(344), 2, + STATE(352), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, + STATE(356), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36326,7 +37270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36341,153 +37285,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8537] = 29, + [8636] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1311), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, + ACTIONS(1319), 1, anon_sym__, - ACTIONS(1298), 1, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1327), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1312), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1339), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1341), 1, sym_super, - STATE(988), 1, + ACTIONS(1347), 1, + anon_sym_RBRACE, + STATE(992), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1179), 1, sym_negative_literal, - STATE(1221), 1, + STATE(1192), 1, sym__pattern, - STATE(1408), 1, + STATE(1215), 1, + sym_scoped_type_identifier, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1535), 1, + STATE(1510), 1, sym_last_match_arm, - STATE(1548), 1, - sym_generic_type, - STATE(1559), 1, + STATE(1561), 1, sym_match_pattern, - ACTIONS(1310), 2, + STATE(1567), 1, + sym_generic_type, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(349), 2, + STATE(348), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, + STATE(356), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 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(1296), 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, - [8650] = 30, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(818), 1, - anon_sym_LBRACK, - ACTIONS(832), 1, - anon_sym_DASH, - ACTIONS(834), 1, - anon_sym_PIPE, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(840), 1, - sym_numeric_literal, - ACTIONS(842), 1, - aux_sym_string_literal_token1, - ACTIONS(844), 1, - sym_shortstring_literal, - ACTIONS(1326), 1, - anon_sym_COMMA, - ACTIONS(1328), 1, - anon_sym_COLON_COLON, - ACTIONS(1330), 1, - anon_sym_LPAREN, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1334), 1, - anon_sym_RPAREN, - ACTIONS(1338), 1, - anon_sym_default, - ACTIONS(1340), 1, - sym_identifier, - ACTIONS(1342), 1, - sym_mutable_specifier, - ACTIONS(1344), 1, - sym_super, - STATE(871), 1, - sym_generic_type, - STATE(945), 1, - sym_negative_literal, - STATE(957), 1, - sym_scoped_type_identifier, - STATE(977), 1, - sym_scoped_identifier, - STATE(1051), 1, - sym_generic_type_with_turbofish, - STATE(1091), 1, - sym__pattern, - STATE(1148), 1, + STATE(1174), 8, sym_macro_invocation, - STATE(1240), 1, - sym__type, - ACTIONS(846), 2, - anon_sym_true, - anon_sym_false, - STATE(946), 2, - sym_string_literal, - sym_boolean_literal, - STATE(881), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(953), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36495,7 +37356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1336), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36510,67 +37371,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8765] = 29, + [8752] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1311), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, + ACTIONS(1319), 1, anon_sym__, - ACTIONS(1298), 1, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1327), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1312), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1339), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1341), 1, sym_super, - STATE(988), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1179), 1, sym_negative_literal, - STATE(1221), 1, + STATE(1192), 1, sym__pattern, - STATE(1408), 1, + STATE(1215), 1, + sym_scoped_type_identifier, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1498), 1, + STATE(1507), 1, sym_last_match_arm, - STATE(1548), 1, - sym_generic_type, - STATE(1559), 1, + STATE(1561), 1, sym_match_pattern, - ACTIONS(1310), 2, + STATE(1567), 1, + sym_generic_type, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(349), 2, + STATE(355), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, + STATE(356), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36579,7 +37440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36594,69 +37455,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8878] = 30, + [8865] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(818), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1326), 1, + ACTIONS(1349), 1, anon_sym_COMMA, - ACTIONS(1328), 1, + ACTIONS(1351), 1, anon_sym_COLON_COLON, - ACTIONS(1330), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1338), 1, + ACTIONS(1357), 1, + anon_sym_RPAREN, + ACTIONS(1361), 1, anon_sym_default, - ACTIONS(1340), 1, + ACTIONS(1363), 1, sym_identifier, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1344), 1, + ACTIONS(1367), 1, sym_super, - ACTIONS(1346), 1, - anon_sym_RPAREN, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(957), 1, + STATE(973), 1, sym_scoped_type_identifier, - STATE(977), 1, + STATE(1004), 1, sym_scoped_identifier, - STATE(1051), 1, + STATE(1086), 1, sym_generic_type_with_turbofish, - STATE(1091), 1, + STATE(1104), 1, sym__pattern, - STATE(1148), 1, + STATE(1184), 1, sym_macro_invocation, - STATE(1240), 1, + STATE(1269), 1, sym__type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(881), 4, + STATE(892), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36664,7 +37525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1336), 14, + ACTIONS(1359), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36679,69 +37540,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8993] = 30, + [8980] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(818), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1348), 1, + ACTIONS(1369), 1, anon_sym_RBRACK, - ACTIONS(1350), 1, + ACTIONS(1371), 1, anon_sym_COMMA, - ACTIONS(1352), 1, + ACTIONS(1373), 1, anon_sym_COLON_COLON, - ACTIONS(1354), 1, + ACTIONS(1375), 1, anon_sym_LPAREN, - ACTIONS(1358), 1, + ACTIONS(1379), 1, anon_sym_default, - ACTIONS(1360), 1, + ACTIONS(1381), 1, sym_identifier, - ACTIONS(1362), 1, + ACTIONS(1383), 1, sym_super, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(957), 1, + STATE(973), 1, sym_scoped_type_identifier, - STATE(974), 1, + STATE(988), 1, sym_scoped_identifier, - STATE(1043), 1, + STATE(1107), 1, sym__pattern, - STATE(1083), 1, + STATE(1114), 1, sym_macro_invocation, - STATE(1094), 1, + STATE(1147), 1, sym_generic_type_with_turbofish, - STATE(1367), 1, + STATE(1445), 1, sym__type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(881), 4, + STATE(892), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36749,7 +37610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1356), 14, + ACTIONS(1377), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36764,67 +37625,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9108] = 29, + [9095] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1311), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, + ACTIONS(1319), 1, anon_sym__, - ACTIONS(1298), 1, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1327), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1312), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1339), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1341), 1, sym_super, - STATE(988), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1179), 1, sym_negative_literal, - STATE(1221), 1, + STATE(1192), 1, sym__pattern, - STATE(1408), 1, + STATE(1215), 1, + sym_scoped_type_identifier, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, - sym_generic_type, - STATE(1559), 1, - sym_match_pattern, - STATE(1562), 1, + STATE(1556), 1, sym_last_match_arm, - ACTIONS(1310), 2, + STATE(1561), 1, + sym_match_pattern, + STATE(1567), 1, + sym_generic_type, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(349), 2, + STATE(355), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, + STATE(356), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36833,7 +37694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36848,69 +37709,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9221] = 30, + [9208] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(818), 1, + ACTIONS(1311), 1, + anon_sym_POUND, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(832), 1, + ACTIONS(1315), 1, + anon_sym_COLON_COLON, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(840), 1, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1326), 1, - anon_sym_COMMA, - ACTIONS(1328), 1, - anon_sym_COLON_COLON, - ACTIONS(1330), 1, - anon_sym_LPAREN, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1338), 1, - anon_sym_default, - ACTIONS(1340), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1342), 1, + ACTIONS(1339), 1, sym_mutable_specifier, - ACTIONS(1344), 1, + ACTIONS(1341), 1, sym_super, - ACTIONS(1364), 1, - anon_sym_RPAREN, - STATE(871), 1, - sym_generic_type, - STATE(945), 1, + STATE(992), 1, + sym_scoped_identifier, + STATE(1179), 1, sym_negative_literal, - STATE(957), 1, + STATE(1192), 1, + sym__pattern, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(977), 1, - sym_scoped_identifier, - STATE(1051), 1, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1091), 1, - sym__pattern, - STATE(1148), 1, - sym_macro_invocation, - STATE(1240), 1, - sym__type, - ACTIONS(846), 2, + STATE(1561), 1, + sym_match_pattern, + STATE(1567), 1, + sym_generic_type, + STATE(1592), 1, + sym_last_match_arm, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(355), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(881), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(953), 7, + STATE(356), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1174), 8, + sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36918,7 +37778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1336), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36933,66 +37793,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9336] = 28, + [9321] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1366), 1, - anon_sym_POUND, - ACTIONS(1369), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(1372), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - anon_sym_LPAREN, - ACTIONS(1378), 1, - anon_sym__, - ACTIONS(1384), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1387), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1390), 1, - anon_sym_default, - ACTIONS(1393), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1396), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1399), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1405), 1, + ACTIONS(1349), 1, + anon_sym_COMMA, + ACTIONS(1351), 1, + anon_sym_COLON_COLON, + ACTIONS(1353), 1, + anon_sym_LPAREN, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1361), 1, + anon_sym_default, + ACTIONS(1363), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1411), 1, + ACTIONS(1367), 1, sym_super, - STATE(988), 1, - sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + ACTIONS(1385), 1, + anon_sym_RPAREN, + STATE(881), 1, + sym_generic_type, + STATE(927), 1, sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, + STATE(973), 1, + sym_scoped_type_identifier, + STATE(1004), 1, + sym_scoped_identifier, + STATE(1086), 1, sym_generic_type_with_turbofish, - STATE(1513), 1, - sym_match_pattern, - STATE(1548), 1, - sym_generic_type, - ACTIONS(1402), 2, + STATE(1104), 1, + sym__pattern, + STATE(1184), 1, + sym_macro_invocation, + STATE(1269), 1, + sym__type, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(349), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(351), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1224), 8, - sym_macro_invocation, + STATE(892), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -37000,7 +37863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1381), 14, + ACTIONS(1359), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37015,63 +37878,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9446] = 27, + [9436] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, - anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, - anon_sym_COLON_COLON, - ACTIONS(1292), 1, - anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, - ACTIONS(1298), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1302), 1, - anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1312), 1, + ACTIONS(1349), 1, + anon_sym_COMMA, + ACTIONS(1351), 1, + anon_sym_COLON_COLON, + ACTIONS(1353), 1, + anon_sym_LPAREN, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1361), 1, + anon_sym_default, + ACTIONS(1363), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1367), 1, sym_super, - STATE(988), 1, - sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + ACTIONS(1387), 1, + anon_sym_RPAREN, + STATE(881), 1, + sym_generic_type, + STATE(927), 1, sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, + STATE(973), 1, + sym_scoped_type_identifier, + STATE(1004), 1, + sym_scoped_identifier, + STATE(1086), 1, sym_generic_type_with_turbofish, - STATE(1534), 1, - sym_match_pattern, - STATE(1548), 1, - sym_generic_type, - ACTIONS(1310), 2, + STATE(1104), 1, + sym__pattern, + STATE(1184), 1, + sym_macro_invocation, + STATE(1269), 1, + sym__type, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1190), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(516), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1224), 8, - sym_macro_invocation, + STATE(892), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -37079,7 +37948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1359), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37094,62 +37963,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9552] = 27, + [9551] = 28, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1389), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1392), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1395), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1398), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, + ACTIONS(1401), 1, anon_sym__, - ACTIONS(1298), 1, + ACTIONS(1407), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1410), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1413), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1416), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1419), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(1422), 1, sym_shortstring_literal, - ACTIONS(1312), 1, + ACTIONS(1428), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1431), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1434), 1, sym_super, - STATE(988), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1179), 1, sym_negative_literal, - STATE(1221), 1, + STATE(1192), 1, sym__pattern, - STATE(1408), 1, + STATE(1215), 1, + sym_scoped_type_identifier, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, - sym_generic_type, - STATE(1571), 1, + STATE(1545), 1, sym_match_pattern, - ACTIONS(1310), 2, + STATE(1567), 1, + sym_generic_type, + ACTIONS(1425), 2, anon_sym_true, anon_sym_false, - STATE(1190), 2, + STATE(355), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(516), 3, + STATE(357), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37158,7 +38030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1404), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37173,133 +38045,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9658] = 26, + [9661] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, - anon_sym_DASH, - ACTIONS(834), 1, - anon_sym_PIPE, - ACTIONS(840), 1, - sym_numeric_literal, - ACTIONS(842), 1, - aux_sym_string_literal_token1, - ACTIONS(844), 1, - sym_shortstring_literal, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1342), 1, - sym_mutable_specifier, - ACTIONS(1348), 1, - anon_sym_RBRACK, - ACTIONS(1350), 1, - anon_sym_COMMA, - ACTIONS(1414), 1, + ACTIONS(1311), 1, + anon_sym_POUND, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, - anon_sym_default, - ACTIONS(1424), 1, - sym_identifier, - ACTIONS(1426), 1, - sym_super, - STATE(866), 1, - sym_scoped_identifier, - STATE(945), 1, - sym_negative_literal, - STATE(1043), 1, - sym__pattern, - STATE(1145), 1, - sym_scoped_type_identifier, - STATE(1395), 1, - sym_generic_type_with_turbofish, - STATE(1548), 1, - sym_generic_type, - ACTIONS(846), 2, - anon_sym_true, - anon_sym_false, - STATE(946), 2, - sym_string_literal, - sym_boolean_literal, - STATE(953), 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(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, - [9759] = 26, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(832), 1, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1342), 1, - sym_mutable_specifier, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1416), 1, - anon_sym_COLON_COLON, - ACTIONS(1418), 1, - anon_sym_LPAREN, - ACTIONS(1422), 1, - anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1339), 1, + sym_mutable_specifier, + ACTIONS(1341), 1, sym_super, - ACTIONS(1428), 1, - anon_sym_COMMA, - ACTIONS(1430), 1, - anon_sym_RPAREN, - STATE(866), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(1179), 1, sym_negative_literal, - STATE(1132), 1, + STATE(1192), 1, sym__pattern, - STATE(1145), 1, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1549), 1, + sym_match_pattern, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(578), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37308,7 +38109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37323,133 +38124,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9860] = 26, + [9767] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, - anon_sym_DASH, - ACTIONS(834), 1, - anon_sym_PIPE, - ACTIONS(840), 1, - sym_numeric_literal, - ACTIONS(842), 1, - aux_sym_string_literal_token1, - ACTIONS(844), 1, - sym_shortstring_literal, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1342), 1, - sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1311), 1, + anon_sym_POUND, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, - anon_sym_default, - ACTIONS(1424), 1, - sym_identifier, - ACTIONS(1426), 1, - sym_super, - ACTIONS(1432), 1, - anon_sym_COMMA, - ACTIONS(1434), 1, - anon_sym_RPAREN, - STATE(866), 1, - sym_scoped_identifier, - STATE(945), 1, - sym_negative_literal, - STATE(1126), 1, - sym__pattern, - STATE(1145), 1, - sym_scoped_type_identifier, - STATE(1395), 1, - sym_generic_type_with_turbofish, - STATE(1548), 1, - sym_generic_type, - ACTIONS(846), 2, - anon_sym_true, - anon_sym_false, - STATE(946), 2, - sym_string_literal, - sym_boolean_literal, - STATE(953), 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(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, - [9961] = 26, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(832), 1, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1342), 1, - sym_mutable_specifier, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1416), 1, - anon_sym_COLON_COLON, - ACTIONS(1418), 1, - anon_sym_LPAREN, - ACTIONS(1422), 1, - anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1339), 1, + sym_mutable_specifier, + ACTIONS(1341), 1, sym_super, - ACTIONS(1436), 1, - anon_sym_RBRACK, - ACTIONS(1438), 1, - anon_sym_COMMA, - STATE(866), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(1179), 1, sym_negative_literal, - STATE(1075), 1, + STATE(1192), 1, sym__pattern, - STATE(1145), 1, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1509), 1, + sym_match_pattern, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(578), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37458,7 +38188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37473,58 +38203,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10062] = 26, + [9873] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1349), 1, + anon_sym_COMMA, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1443), 1, + anon_sym_RPAREN, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1440), 1, - anon_sym_COMMA, - ACTIONS(1442), 1, - anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1071), 1, + STATE(1104), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37533,7 +38263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37548,58 +38278,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10163] = 26, + [9974] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1444), 1, + ACTIONS(1453), 1, anon_sym_COMMA, - ACTIONS(1446), 1, + ACTIONS(1455), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1048), 1, + STATE(1136), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37608,7 +38338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37623,58 +38353,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10264] = 26, + [10075] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1448), 1, + ACTIONS(1457), 1, + anon_sym_RBRACK, + ACTIONS(1459), 1, anon_sym_COMMA, - ACTIONS(1450), 1, - anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1052), 1, + STATE(1096), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37683,7 +38413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37698,58 +38428,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10365] = 26, + [10176] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1326), 1, - anon_sym_COMMA, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1452), 1, + ACTIONS(1461), 1, + anon_sym_COMMA, + ACTIONS(1463), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1091), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37758,7 +38488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37773,56 +38503,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10466] = 25, + [10277] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1369), 1, + anon_sym_RBRACK, + ACTIONS(1371), 1, + anon_sym_COMMA, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1454), 1, - anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1107), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37831,7 +38563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37846,56 +38578,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10564] = 25, + [10378] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1456), 1, - anon_sym_RBRACK, - STATE(866), 1, + ACTIONS(1465), 1, + anon_sym_COMMA, + ACTIONS(1467), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1132), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37904,7 +38638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37919,56 +38653,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10662] = 25, + [10479] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1458), 1, + ACTIONS(1469), 1, + anon_sym_COMMA, + ACTIONS(1471), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1065), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37977,7 +38713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37992,56 +38728,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10760] = 25, + [10580] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1460), 1, + ACTIONS(1473), 1, + anon_sym_COMMA, + ACTIONS(1475), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1066), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38050,7 +38788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38065,56 +38803,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10858] = 25, + [10681] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1462), 1, - anon_sym_RPAREN, - STATE(866), 1, + ACTIONS(1477), 1, + anon_sym_RBRACK, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38123,7 +38861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38138,56 +38876,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10956] = 25, + [10779] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1464), 1, + ACTIONS(1479), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38196,7 +38934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38211,56 +38949,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11054] = 25, + [10877] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1466), 1, + ACTIONS(1481), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38269,7 +39007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38284,56 +39022,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11152] = 25, + [10975] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1468), 1, - anon_sym_RBRACK, - STATE(866), 1, + ACTIONS(1483), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38342,7 +39080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38357,56 +39095,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11250] = 25, + [11073] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1470), 1, + ACTIONS(1485), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38415,7 +39153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38430,56 +39168,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11348] = 25, + [11171] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1472), 1, + ACTIONS(1487), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38488,7 +39226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38503,56 +39241,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11446] = 25, + [11269] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1474), 1, - anon_sym_RPAREN, - STATE(866), 1, + ACTIONS(1489), 1, + anon_sym_RBRACK, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38561,7 +39299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38576,56 +39314,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11544] = 25, + [11367] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(626), 1, + anon_sym_POUND, + STATE(373), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(632), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_DASH, - ACTIONS(834), 1, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1491), 30, + anon_sym_COLON, + 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_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_ref, + sym_identifier, + sym_super, + [11425] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1476), 1, - anon_sym_RBRACK, - STATE(866), 1, + ACTIONS(1493), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38634,7 +39425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38649,56 +39440,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11642] = 25, + [11523] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1478), 1, + ACTIONS(1495), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38707,7 +39498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38722,56 +39513,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11740] = 25, + [11621] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1480), 1, - anon_sym_RPAREN, - STATE(866), 1, + ACTIONS(1497), 1, + anon_sym_RBRACK, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38780,7 +39571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38795,56 +39586,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11838] = 25, + [11719] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38853,7 +39644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38868,56 +39659,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11936] = 25, + [11817] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1484), 1, + ACTIONS(1501), 1, anon_sym_RBRACK, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38926,7 +39717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38941,54 +39732,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12034] = 24, + [11915] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1414), 1, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1486), 1, - sym_mutable_specifier, - STATE(866), 1, + ACTIONS(1503), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1101), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38997,7 +39790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39012,54 +39805,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12129] = 24, + [12013] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1288), 1, - anon_sym_LBRACK, - ACTIONS(1290), 1, - anon_sym_COLON_COLON, - ACTIONS(1292), 1, - anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, - ACTIONS(1298), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1302), 1, - anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1312), 1, - sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1437), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, + anon_sym_LPAREN, + ACTIONS(1447), 1, + anon_sym_default, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1451), 1, sym_super, - STATE(988), 1, + ACTIONS(1505), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + STATE(927), 1, sym_negative_literal, - STATE(1245), 1, + STATE(1063), 1, sym__pattern, - STATE(1408), 1, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(1310), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1190), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1224), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39068,7 +39863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39083,54 +39878,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12224] = 24, + [12111] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - STATE(866), 1, + ACTIONS(1507), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(952), 1, + STATE(1063), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39139,7 +39936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39154,54 +39951,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12319] = 24, + [12209] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1288), 1, - anon_sym_LBRACK, - ACTIONS(1290), 1, - anon_sym_COLON_COLON, - ACTIONS(1292), 1, - anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, - ACTIONS(1298), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1302), 1, - anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1312), 1, - sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1437), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, + anon_sym_LPAREN, + ACTIONS(1447), 1, + anon_sym_default, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1451), 1, sym_super, - STATE(988), 1, + ACTIONS(1509), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1173), 1, - sym__pattern, - STATE(1184), 1, + STATE(927), 1, sym_negative_literal, - STATE(1408), 1, + STATE(1063), 1, + sym__pattern, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(1310), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1190), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1224), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39210,7 +40009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39225,54 +40024,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12414] = 24, + [12307] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1047), 1, - sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1368), 1, + sym__pattern, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39281,7 +40080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39296,54 +40095,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12509] = 24, + [12402] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(1313), 1, + anon_sym_LBRACK, + ACTIONS(1315), 1, + anon_sym_COLON_COLON, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1342), 1, - sym_mutable_specifier, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1416), 1, - anon_sym_COLON_COLON, - ACTIONS(1418), 1, - anon_sym_LPAREN, - ACTIONS(1422), 1, - anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1339), 1, + sym_mutable_specifier, + ACTIONS(1341), 1, sym_super, - STATE(866), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(1179), 1, sym_negative_literal, - STATE(1145), 1, + STATE(1215), 1, sym_scoped_type_identifier, STATE(1259), 1, sym__pattern, - STATE(1395), 1, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39352,7 +40151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39367,54 +40166,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12604] = 24, + [12497] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1227), 1, + STATE(1356), 1, sym__pattern, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39423,7 +40222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39438,54 +40237,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12699] = 24, + [12592] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(1313), 1, + anon_sym_LBRACK, + ACTIONS(1315), 1, + anon_sym_COLON_COLON, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1342), 1, - sym_mutable_specifier, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1416), 1, - anon_sym_COLON_COLON, - ACTIONS(1418), 1, - anon_sym_LPAREN, - ACTIONS(1422), 1, - anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1339), 1, + sym_mutable_specifier, + ACTIONS(1341), 1, sym_super, - STATE(866), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(935), 1, - sym__pattern, - STATE(945), 1, + STATE(1179), 1, sym_negative_literal, - STATE(1145), 1, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1221), 1, + sym__pattern, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39494,7 +40293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39509,54 +40308,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12794] = 24, + [12687] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1341), 1, + STATE(1224), 1, sym__pattern, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39565,7 +40364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39580,30 +40379,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12889] = 5, + [12782] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(611), 1, - anon_sym_POUND, - STATE(385), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(617), 13, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(1313), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - anon_sym_STAR, + ACTIONS(1317), 1, anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + ACTIONS(1325), 1, + anon_sym_PIPE, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, + sym_numeric_literal, + ACTIONS(1331), 1, aux_sym_string_literal_token1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1488), 29, - anon_sym_COLON, + ACTIONS(1337), 1, + sym_identifier, + ACTIONS(1339), 1, + sym_mutable_specifier, + ACTIONS(1341), 1, + sym_super, + STATE(992), 1, + sym_scoped_identifier, + STATE(1179), 1, + sym_negative_literal, + STATE(1213), 1, + sym__pattern, + STATE(1215), 1, + sym_scoped_type_identifier, + STATE(1428), 1, + sym_generic_type_with_turbofish, + STATE(1567), 1, + sym_generic_type, + ACTIONS(1335), 2, + anon_sym_true, + anon_sym_false, + STATE(1177), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1174), 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(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39618,68 +40450,54 @@ 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_loop, - anon_sym_match, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [12946] = 24, + [12877] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(929), 1, - sym__pattern, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1145), 1, + STATE(1188), 1, + sym__pattern, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39688,7 +40506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39703,54 +40521,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13041] = 24, + [12972] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1349), 1, - sym__pattern, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1444), 1, + sym__pattern, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39759,7 +40577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39774,54 +40592,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13136] = 24, + [13067] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1414), 1, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1490), 1, - sym_mutable_specifier, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1133), 1, - sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1375), 1, + sym__pattern, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39830,7 +40648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39845,54 +40663,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13231] = 24, + [13162] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1065), 1, - sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1468), 1, + sym__pattern, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39901,7 +40719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39916,54 +40734,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13326] = 24, + [13257] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1288), 1, - anon_sym_LBRACK, - ACTIONS(1290), 1, - anon_sym_COLON_COLON, - ACTIONS(1292), 1, - anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, - ACTIONS(1298), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1302), 1, - anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1312), 1, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1437), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, + anon_sym_LPAREN, + ACTIONS(1447), 1, + anon_sym_default, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1314), 1, - sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1451), 1, sym_super, - STATE(988), 1, + ACTIONS(1511), 1, + sym_mutable_specifier, + STATE(874), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + STATE(927), 1, sym_negative_literal, - STATE(1223), 1, + STATE(1110), 1, sym__pattern, - STATE(1408), 1, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(1310), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1190), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1224), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39972,7 +40790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39987,54 +40805,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13421] = 24, + [13352] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1381), 1, + STATE(1362), 1, sym__pattern, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40043,7 +40861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40058,54 +40876,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13516] = 24, + [13447] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, - STATE(1076), 1, + STATE(957), 1, sym__pattern, - STATE(1145), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40114,7 +40932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40129,54 +40947,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13611] = 24, + [13542] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, - sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1451), 1, sym_super, - STATE(866), 1, + ACTIONS(1513), 1, + sym_mutable_specifier, + STATE(874), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(927), 1, sym_negative_literal, STATE(1145), 1, - sym_scoped_type_identifier, - STATE(1360), 1, sym__pattern, - STATE(1395), 1, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40185,7 +41003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40200,61 +41018,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13706] = 23, + [13637] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, - sym_super, - ACTIONS(1492), 1, - anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1500), 1, - anon_sym_GT, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1506), 1, - sym_numeric_literal, - ACTIONS(1508), 1, - sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1449), 1, sym_identifier, - STATE(862), 1, + ACTIONS(1451), 1, + sym_super, + STATE(874), 1, + sym_scoped_identifier, + STATE(927), 1, + sym_negative_literal, + STATE(954), 1, + sym__pattern, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(1567), 1, sym_generic_type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1387), 3, - sym__type, - sym__literal, - sym_block, - STATE(881), 5, + STATE(921), 8, sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40269,61 +41089,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13798] = 23, + [13732] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, - sym_super, - ACTIONS(1492), 1, - anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1506), 1, - sym_numeric_literal, - ACTIONS(1508), 1, - sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1512), 1, - anon_sym_GT, - STATE(862), 1, + ACTIONS(1451), 1, + sym_super, + STATE(874), 1, + sym_scoped_identifier, + STATE(927), 1, + sym_negative_literal, + STATE(1063), 1, + sym__pattern, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(1567), 1, sym_generic_type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1387), 3, - sym__type, - sym__literal, - sym_block, - STATE(881), 5, + STATE(921), 8, sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40338,61 +41160,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13890] = 23, + [13827] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, - sym_super, - ACTIONS(1492), 1, - anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1506), 1, - sym_numeric_literal, - ACTIONS(1508), 1, - sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1514), 1, - anon_sym_GT, - STATE(862), 1, + ACTIONS(1451), 1, + sym_super, + STATE(874), 1, + sym_scoped_identifier, + STATE(927), 1, + sym_negative_literal, + STATE(937), 1, + sym__pattern, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(1567), 1, sym_generic_type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1387), 3, - sym__type, - sym__literal, - sym_block, - STATE(881), 5, + STATE(921), 8, sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40407,61 +41231,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13982] = 23, + [13922] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, - sym_super, - ACTIONS(1492), 1, - anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1506), 1, - sym_numeric_literal, - ACTIONS(1508), 1, - sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1516), 1, - anon_sym_GT, - STATE(862), 1, + ACTIONS(1451), 1, + sym_super, + STATE(874), 1, + sym_scoped_identifier, + STATE(927), 1, + sym_negative_literal, + STATE(1143), 1, + sym__pattern, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(1567), 1, sym_generic_type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1387), 3, - sym__type, - sym__literal, - sym_block, - STATE(881), 5, + STATE(921), 8, sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40476,61 +41302,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14074] = 23, + [14017] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, - sym_super, - ACTIONS(1492), 1, - anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1506), 1, - sym_numeric_literal, - ACTIONS(1508), 1, - sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1518), 1, - anon_sym_GT, - STATE(862), 1, + ACTIONS(1451), 1, + sym_super, + STATE(874), 1, + sym_scoped_identifier, + STATE(927), 1, + sym_negative_literal, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1401), 1, + sym__pattern, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(1567), 1, sym_generic_type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1387), 3, - sym__type, - sym__literal, - sym_block, - STATE(881), 5, + STATE(921), 8, sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40545,61 +41373,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14166] = 23, + [14112] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, - sym_super, - ACTIONS(1492), 1, - anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1506), 1, - sym_numeric_literal, - ACTIONS(1508), 1, - sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1520), 1, - anon_sym_GT, - STATE(862), 1, + ACTIONS(1451), 1, + sym_super, + STATE(874), 1, + sym_scoped_identifier, + STATE(927), 1, + sym_negative_literal, + STATE(1089), 1, + sym__pattern, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(1567), 1, sym_generic_type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1387), 3, - sym__type, - sym__literal, - sym_block, - STATE(881), 5, + STATE(921), 8, sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40614,26 +41444,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14258] = 3, + [14207] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 14, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1515), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_POUND, + ACTIONS(1517), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_STAR, + ACTIONS(1519), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(1523), 1, + anon_sym_GT, + ACTIONS(1525), 1, anon_sym_AT, - aux_sym_string_literal_token1, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1529), 1, + sym_numeric_literal, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1218), 29, - anon_sym_COLON, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(1379), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1449), 3, + sym__type, + sym__literal, + sym_block, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40648,73 +41513,61 @@ 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_loop, - anon_sym_match, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [14309] = 22, + [14299] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(862), 1, + ACTIONS(1535), 1, + anon_sym_GT, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(984), 1, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1214), 3, - sym__type, - sym__literal, - sym_block, - STATE(1372), 3, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(881), 5, + STATE(1449), 3, + sym__type, + sym__literal, + sym_block, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40729,59 +41582,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14398] = 22, + [14391] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(862), 1, + ACTIONS(1537), 1, + anon_sym_GT, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(984), 1, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1387), 3, + STATE(1449), 3, sym__type, sym__literal, sym_block, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40796,59 +41651,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14487] = 22, + [14483] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(862), 1, + ACTIONS(1539), 1, + anon_sym_GT, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(984), 1, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1153), 3, - sym__type, - sym__literal, - sym_block, - STATE(1372), 3, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(881), 5, + STATE(1449), 3, + sym__type, + sym__literal, + sym_block, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40863,59 +41720,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14576] = 22, + [14575] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(862), 1, + ACTIONS(1541), 1, + anon_sym_GT, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(984), 1, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1313), 3, + STATE(1379), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1449), 3, sym__type, sym__literal, sym_block, - STATE(1372), 3, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 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, + [14667] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1515), 1, + anon_sym_LBRACE, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1529), 1, + sym_numeric_literal, + ACTIONS(1531), 1, + sym_shortstring_literal, + ACTIONS(1533), 1, + sym_identifier, + ACTIONS(1543), 1, + anon_sym_GT, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(881), 5, + STATE(1449), 3, + sym__type, + sym__literal, + sym_block, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40930,23 +41858,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14665] = 3, + [14759] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(743), 12, + ACTIONS(1243), 14, anon_sym_LBRACE, anon_sym_BANG, + anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1522), 28, + ACTIONS(1245), 30, + anon_sym_COLON, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40969,60 +41900,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [14713] = 3, + [14811] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(887), 1, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1524), 26, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1515), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1517), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1529), 1, + sym_numeric_literal, + ACTIONS(1531), 1, + sym_shortstring_literal, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(1165), 3, + sym__type, + sym__literal, + sym_block, + STATE(1379), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 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, + [14900] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, anon_sym_COLON_COLON, - anon_sym_as, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1515), 1, + anon_sym_LBRACE, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1529), 1, + sym_numeric_literal, + ACTIONS(1531), 1, + sym_shortstring_literal, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(1254), 3, + sym__type, + sym__literal, + sym_block, + STATE(1379), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 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, + [14989] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1515), 1, + anon_sym_LBRACE, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1529), 1, + sym_numeric_literal, + ACTIONS(1531), 1, + sym_shortstring_literal, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(1328), 3, + sym__type, + sym__literal, + sym_block, + STATE(1379), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 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, + [15078] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1515), 1, + anon_sym_LBRACE, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1529), 1, + sym_numeric_literal, + ACTIONS(1531), 1, + sym_shortstring_literal, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(1379), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1449), 3, + sym__type, + sym__literal, + sym_block, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 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, + [15167] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(755), 12, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, 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, - [14758] = 3, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1545), 29, + 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_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_ref, + sym_identifier, + sym_super, + [15216] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 11, + ACTIONS(1549), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41032,15 +42235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1528), 26, + ACTIONS(1547), 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_as, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41059,18 +42262,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14803] = 7, + anon_sym_nopanic, + [15261] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1532), 1, - anon_sym_LBRACE, - ACTIONS(1534), 1, - anon_sym_BANG, - ACTIONS(1536), 1, - anon_sym_COLON_COLON, - STATE(442), 1, - sym_field_initializer_list, - ACTIONS(579), 10, + ACTIONS(1553), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41081,12 +42277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 23, + ACTIONS(1551), 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, @@ -41105,10 +42304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14856] = 3, + anon_sym_nopanic, + [15306] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1540), 10, + ACTIONS(1557), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41119,7 +42319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1538), 27, + ACTIONS(1555), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41147,10 +42347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_nopanic, - [14901] = 3, + [15351] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 11, + ACTIONS(1561), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41162,7 +42362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1542), 26, + ACTIONS(1559), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41189,11 +42389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14946] = 3, + [15396] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1548), 10, + ACTIONS(1565), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41203,15 +42404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1546), 27, + ACTIONS(1563), 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, @@ -41230,11 +42431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - anon_sym_nopanic, - [14991] = 3, + [15441] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1552), 10, + ACTIONS(1567), 1, + anon_sym_LBRACE, + ACTIONS(1569), 1, + anon_sym_BANG, + ACTIONS(1571), 1, + anon_sym_COLON_COLON, + STATE(449), 1, + sym_field_initializer_list, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41245,15 +42453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1550), 27, - anon_sym_LBRACE, + ACTIONS(594), 23, 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, @@ -41272,11 +42477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - anon_sym_nopanic, - [15036] = 3, + [15494] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 11, + ACTIONS(1575), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41288,7 +42492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1554), 26, + ACTIONS(1573), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41315,12 +42519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15081] = 4, + [15539] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1558), 1, - anon_sym_LBRACE, - ACTIONS(1530), 11, + ACTIONS(1579), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41332,13 +42534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1528), 24, + ACTIONS(1577), 26, + anon_sym_LBRACE, 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, @@ -41357,14 +42561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15127] = 5, + [15584] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1560), 1, + ACTIONS(1581), 1, anon_sym_else, - STATE(69), 1, + STATE(82), 1, sym_else_clause, - ACTIONS(559), 10, + ACTIONS(570), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41375,7 +42579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(557), 24, + ACTIONS(568), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41400,12 +42604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15175] = 4, + [15632] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1562), 1, + ACTIONS(1583), 1, anon_sym_LBRACE, - ACTIONS(1556), 11, + ACTIONS(1565), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41417,7 +42621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1554), 24, + ACTIONS(1563), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41442,12 +42646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15221] = 4, + [15678] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1564), 1, + ACTIONS(1585), 1, anon_sym_LBRACE, - ACTIONS(1526), 11, + ACTIONS(1561), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41459,7 +42663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1524), 24, + ACTIONS(1559), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41484,12 +42688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15267] = 4, + [15724] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1566), 1, + ACTIONS(1587), 1, anon_sym_LBRACE, - ACTIONS(1544), 11, + ACTIONS(1575), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41501,7 +42705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1542), 24, + ACTIONS(1573), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41526,14 +42730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15313] = 4, + [15770] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1568), 2, + ACTIONS(1589), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1572), 10, + ACTIONS(1579), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41543,12 +42747,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 23, + ACTIONS(1577), 24, 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, @@ -41567,47 +42772,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15358] = 18, + [15816] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1576), 1, + ACTIONS(1593), 1, anon_sym_AT, - ACTIONS(1578), 1, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1580), 1, + ACTIONS(1597), 1, anon_sym_nopanic, - ACTIONS(1582), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(975), 1, + STATE(995), 1, sym__type, - STATE(1342), 1, + STATE(1371), 1, sym_nopanic, - STATE(1364), 1, + STATE(1385), 1, sym_scoped_identifier, - ACTIONS(1574), 2, + ACTIONS(1591), 2, anon_sym_LBRACE, anon_sym_SEMI, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41622,10 +42827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15431] = 3, + [15889] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(543), 10, + ACTIONS(1601), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41636,7 +42843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(541), 25, + ACTIONS(594), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41661,98 +42868,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - anon_sym_else, - [15474] = 5, + [15934] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1588), 1, - anon_sym_BANG, - ACTIONS(1590), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(1586), 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(1584), 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, - anon_sym_QMARK, - [15521] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - STATE(469), 1, - sym_arguments, - ACTIONS(1594), 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(1592), 20, + ACTIONS(1593), 1, + anon_sym_AT, + ACTIONS(1595), 1, + anon_sym_default, + ACTIONS(1597), 1, + anon_sym_nopanic, + ACTIONS(1599), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1003), 1, + sym__type, + STATE(1364), 1, + sym_nopanic, + STATE(1385), 1, + sym_scoped_identifier, + ACTIONS(1603), 2, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - 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, - [15574] = 3, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 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, + [16007] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(551), 10, + ACTIONS(538), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41763,7 +42937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(549), 25, + ACTIONS(536), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41789,20 +42963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_else, - [15617] = 8, + [16050] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1606), 10, + ACTIONS(1607), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41813,7 +42987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1604), 20, + ACTIONS(1605), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41834,20 +43008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [15670] = 8, + [16103] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1532), 1, + ACTIONS(1617), 2, anon_sym_LBRACE, - ACTIONS(1534), 1, - anon_sym_BANG, - ACTIONS(1536), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, - anon_sym_COLON, - STATE(442), 1, - sym_field_initializer_list, - ACTIONS(579), 10, + ACTIONS(1621), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41858,8 +43025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 20, + ACTIONS(1619), 23, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -41879,10 +43049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15723] = 3, + [16148] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1612), 10, + ACTIONS(1569), 1, + anon_sym_BANG, + ACTIONS(1623), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41893,14 +43067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1610), 25, - anon_sym_LBRACE, + ACTIONS(594), 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, @@ -41919,57 +43091,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15766] = 8, + [16195] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - STATE(469), 1, - sym_arguments, - ACTIONS(1616), 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(1614), 20, + ACTIONS(1567), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - 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, - [15819] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1618), 1, + ACTIONS(1569), 1, + anon_sym_BANG, + ACTIONS(1571), 1, anon_sym_COLON_COLON, - ACTIONS(579), 10, + ACTIONS(1625), 1, + anon_sym_COLON, + STATE(449), 1, + sym_field_initializer_list, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41980,12 +43115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(594), 20, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -42005,50 +43136,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15864] = 3, + [16248] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(527), 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(525), 25, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1609), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(1611), 1, 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, + ACTIONS(1613), 1, anon_sym_DOT, + ACTIONS(1615), 1, anon_sym_QMARK, - anon_sym_else, - [15907] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1622), 10, + STATE(454), 1, + sym_arguments, + ACTIONS(1629), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42059,15 +43160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1620), 25, + ACTIONS(1627), 20, 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, @@ -42083,16 +43181,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_QMARK, - [15950] = 5, + [16301] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1534), 1, - anon_sym_BANG, - ACTIONS(1624), 1, - anon_sym_COLON_COLON, - ACTIONS(579), 10, + ACTIONS(542), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42103,7 +43195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 23, + ACTIONS(540), 25, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -42127,47 +43220,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15997] = 18, + anon_sym_else, + [16344] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1576), 1, + ACTIONS(1593), 1, anon_sym_AT, - ACTIONS(1578), 1, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1580), 1, + ACTIONS(1597), 1, anon_sym_nopanic, - ACTIONS(1582), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(985), 1, + STATE(1000), 1, sym__type, - STATE(1364), 1, + STATE(1385), 1, sym_scoped_identifier, - STATE(1386), 1, + STATE(1393), 1, sym_nopanic, - ACTIONS(1626), 2, + ACTIONS(1631), 2, anon_sym_LBRACE, anon_sym_SEMI, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42182,20 +43276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [16070] = 8, + [16417] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - STATE(469), 1, - sym_arguments, - ACTIONS(1630), 10, + ACTIONS(1635), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42206,12 +43290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1628), 20, + ACTIONS(1633), 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, @@ -42227,47 +43314,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16123] = 18, + anon_sym_DOT, + anon_sym_QMARK, + [16460] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1576), 1, + ACTIONS(1593), 1, anon_sym_AT, - ACTIONS(1578), 1, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1580), 1, + ACTIONS(1597), 1, anon_sym_nopanic, - ACTIONS(1582), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(989), 1, + STATE(994), 1, sym__type, - STATE(1364), 1, + STATE(1385), 1, sym_scoped_identifier, - STATE(1398), 1, + STATE(1450), 1, sym_nopanic, - ACTIONS(1632), 2, + ACTIONS(1637), 2, anon_sym_LBRACE, anon_sym_SEMI, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42282,13 +43371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [16196] = 4, + [16533] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1634), 2, + ACTIONS(1639), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(1572), 10, + ACTIONS(1621), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42299,7 +43388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 23, + ACTIONS(1619), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -42323,65 +43412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16241] = 18, + [16578] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(1645), 1, + anon_sym_BANG, + ACTIONS(1647), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_AT, - ACTIONS(1578), 1, - anon_sym_default, - ACTIONS(1580), 1, - anon_sym_nopanic, - ACTIONS(1582), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(978), 1, - sym__type, - STATE(1364), 1, - sym_scoped_identifier, - STATE(1433), 1, - sym_nopanic, - ACTIONS(1636), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 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, - [16314] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1640), 10, + ACTIONS(1643), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42392,8 +43430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1638), 24, - anon_sym_LBRACE, + ACTIONS(1641), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -42417,10 +43454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16356] = 3, + [16625] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1644), 10, + ACTIONS(562), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42431,7 +43468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1642), 24, + ACTIONS(560), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42456,32 +43493,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16398] = 9, + anon_sym_else, + [16668] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1616), 7, + ACTIONS(1651), 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(1614), 19, + ACTIONS(1649), 20, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, @@ -42501,60 +43539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16452] = 14, + [16721] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1616), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1614), 16, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [16516] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1660), 10, + ACTIONS(1655), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42565,13 +43553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1658), 24, + ACTIONS(1653), 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, @@ -42590,10 +43579,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16558] = 3, + [16764] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1664), 10, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1659), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42604,14 +43603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1662), 24, + ACTIONS(1657), 20, 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, @@ -42627,12 +43624,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_QMARK, - [16600] = 3, + [16817] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1668), 10, + ACTIONS(1663), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42643,7 +43638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1666), 24, + ACTIONS(1661), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42668,10 +43663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16642] = 3, + [16859] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1572), 10, + ACTIONS(1667), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42682,7 +43677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 24, + ACTIONS(1665), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42707,91 +43702,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16684] = 18, + [16901] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1672), 1, + ACTIONS(1671), 10, anon_sym_EQ, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1670), 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, - [16756] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1646), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 19, + ACTIONS(1669), 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, @@ -42807,10 +43739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16812] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [16943] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1684), 10, + ACTIONS(1675), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42821,7 +43755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1682), 24, + ACTIONS(1673), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42846,10 +43780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16854] = 3, + [16985] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1688), 10, + ACTIONS(1679), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42860,7 +43794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1686), 24, + ACTIONS(1677), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42885,10 +43819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16896] = 3, + [17027] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1692), 10, + ACTIONS(1683), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42899,7 +43833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 24, + ACTIONS(1681), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42924,50 +43858,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16938] = 18, + [17069] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1687), 1, + anon_sym_EQ, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1696), 1, - anon_sym_EQ, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1694), 10, + ACTIONS(1685), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, @@ -42978,10 +43912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [17010] = 3, + [17141] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1700), 10, + ACTIONS(1711), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42992,7 +43926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1698), 24, + ACTIONS(1709), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43017,10 +43951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17052] = 3, + [17183] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1704), 10, + ACTIONS(1715), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43031,7 +43965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1702), 24, + ACTIONS(1713), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43056,63 +43990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17094] = 17, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1616), 1, - anon_sym_EQ, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1614), 11, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [17164] = 3, + [17225] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1708), 10, + ACTIONS(1719), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43123,7 +44004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1706), 24, + ACTIONS(1717), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43148,10 +44029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17206] = 3, + [17267] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1712), 10, + ACTIONS(1723), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43162,7 +44043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1710), 24, + ACTIONS(1721), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43187,10 +44068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17248] = 3, + [17309] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1716), 10, + ACTIONS(1727), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43201,7 +44082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1714), 24, + ACTIONS(1725), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43226,10 +44107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17290] = 3, + [17351] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1720), 10, + ACTIONS(1731), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43240,7 +44121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1718), 24, + ACTIONS(1729), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43265,10 +44146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17332] = 3, + [17393] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(496), 10, + ACTIONS(1735), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43279,7 +44160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(494), 24, + ACTIONS(1733), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43304,10 +44185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17374] = 3, + [17435] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1724), 10, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43318,8 +44201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1722), 24, - anon_sym_LBRACE, + ACTIONS(594), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -43343,50 +44225,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17416] = 18, + [17479] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1728), 1, + ACTIONS(1741), 1, anon_sym_EQ, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1726), 10, + ACTIONS(1739), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, @@ -43397,10 +44279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [17488] = 3, + [17551] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1732), 10, + ACTIONS(1745), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43411,7 +44293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1730), 24, + ACTIONS(1743), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43436,10 +44318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17530] = 3, + [17593] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1736), 10, + ACTIONS(1750), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43450,7 +44332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1734), 24, + ACTIONS(1747), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43475,62 +44357,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17572] = 16, + [17635] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1616), 1, + ACTIONS(1755), 10, anon_sym_EQ, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1753), 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, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1614), 12, + anon_sym_DOT, + anon_sym_QMARK, + [17677] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1759), 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(1757), 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, - [17640] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17719] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(579), 10, + ACTIONS(1763), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43541,7 +44449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 24, + ACTIONS(1761), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43566,46 +44474,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17682] = 13, + [17761] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1767), 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(1765), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, + anon_sym_RPAREN, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1616), 4, + 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, + [17803] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1771), 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(1614), 16, + ACTIONS(1769), 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, @@ -43615,10 +44550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17744] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [17845] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(579), 10, + ACTIONS(1775), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43629,7 +44566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 24, + ACTIONS(1773), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43654,28 +44591,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17786] = 3, + [17887] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1740), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1629), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1738), 24, - anon_sym_LBRACE, + ACTIONS(1627), 19, 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, @@ -43691,12 +44637,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + [17943] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, anon_sym_DOT, + ACTIONS(1615), 1, anon_sym_QMARK, - [17828] = 3, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1777), 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, + [18015] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1744), 10, + ACTIONS(1783), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43707,7 +44705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1742), 24, + ACTIONS(1781), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43732,10 +44730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17870] = 3, + [18057] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1748), 10, + ACTIONS(479), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43746,7 +44744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1746), 24, + ACTIONS(477), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43771,49 +44769,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17912] = 3, + [18099] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1753), 10, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1629), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1750), 24, - anon_sym_LBRACE, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1627), 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, - [17954] = 3, + [18169] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1758), 10, + ACTIONS(1787), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43824,7 +44836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1756), 24, + ACTIONS(1785), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43849,34 +44861,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17996] = 3, + [18211] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(472), 10, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1629), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(470), 24, - anon_sym_LBRACE, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1627), 12, 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [18279] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + STATE(454), 1, + sym_arguments, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1629), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1627), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43886,36 +44962,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, - [18038] = 3, + [18341] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1762), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1629), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1760), 24, - anon_sym_LBRACE, + ACTIONS(1627), 17, 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, @@ -43925,36 +45009,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_QMARK, - [18080] = 3, + [18399] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1766), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1697), 1, + anon_sym_AMP, + STATE(454), 1, + sym_arguments, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + ACTIONS(1629), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(1764), 24, - anon_sym_LBRACE, + ACTIONS(1627), 17, 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, @@ -43964,31 +45057,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, - [18122] = 4, + [18459] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1768), 1, - anon_sym_COLON_COLON, - ACTIONS(579), 10, - anon_sym_EQ, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1689), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1629), 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(575), 23, + ACTIONS(1627), 19, 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, @@ -44004,66 +45102,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_QMARK, - [18166] = 18, + [18513] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1772), 1, - anon_sym_EQ, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1629), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1770), 10, + ACTIONS(1627), 16, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, + 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, - [18238] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [18577] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(484), 10, + ACTIONS(1791), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44074,7 +45166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(482), 24, + ACTIONS(1789), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44099,10 +45191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18280] = 3, + [18619] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1776), 10, + ACTIONS(1795), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44113,7 +45205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1774), 24, + ACTIONS(1793), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44138,10 +45230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18322] = 3, + [18661] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1780), 10, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44152,7 +45244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1778), 24, + ACTIONS(594), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44177,10 +45269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18364] = 3, + [18703] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1784), 10, + ACTIONS(1799), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44191,7 +45283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1782), 24, + ACTIONS(1797), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44216,10 +45308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18406] = 3, + [18745] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1788), 10, + ACTIONS(1803), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44230,7 +45322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1786), 24, + ACTIONS(1801), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44255,44 +45347,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18448] = 11, + [18787] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1807), 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(1805), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1600), 1, + 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, - ACTIONS(1602), 1, anon_sym_QMARK, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, + [18829] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1621), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1646), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 17, + ACTIONS(1619), 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, @@ -44302,10 +45423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18506] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [18871] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1792), 10, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44316,7 +45439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1790), 24, + ACTIONS(594), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44341,10 +45464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18548] = 3, + [18913] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1796), 10, + ACTIONS(1811), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44355,7 +45478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1794), 24, + ACTIONS(1809), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44380,45 +45503,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18590] = 12, + [18955] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1652), 1, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, anon_sym_AMP, - STATE(469), 1, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1815), 1, + anon_sym_EQ, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 4, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1813), 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, + [19027] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(495), 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(1614), 17, + ACTIONS(493), 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, @@ -44428,91 +45594,95 @@ 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, + anon_sym_QMARK, + [19069] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1192), 4, + ACTIONS(499), 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(497), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - ACTIONS(1194), 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, - [18691] = 3, + 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, + [19111] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(992), 4, + ACTIONS(1819), 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(1817), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - ACTIONS(994), 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, - [18732] = 3, + 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, + [19153] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1152), 4, + ACTIONS(1119), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1154), 29, + ACTIONS(1121), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44542,15 +45712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18773] = 3, + [19194] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1016), 4, + ACTIONS(991), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1018), 29, + ACTIONS(993), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44580,15 +45750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18814] = 3, + [19235] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1140), 4, + ACTIONS(1243), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1142), 29, + ACTIONS(1245), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44618,114 +45788,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18855] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1798), 1, - anon_sym_LBRACE, - ACTIONS(1800), 1, - anon_sym_BANG, - ACTIONS(1802), 1, - anon_sym_COLON_COLON, - STATE(785), 1, - sym_field_initializer_list, - ACTIONS(579), 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(575), 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, - [18904] = 22, + [19276] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(694), 1, + ACTIONS(702), 1, anon_sym_RBRACK, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1804), 1, + ACTIONS(1821), 1, anon_sym_SEMI, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1808), 1, + ACTIONS(1825), 1, anon_sym_COMMA, - STATE(469), 1, + STATE(454), 1, sym_arguments, - STATE(1304), 1, + STATE(1317), 1, aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [18983] = 3, + [19355] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 4, + ACTIONS(1171), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1218), 29, + ACTIONS(1173), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44755,15 +45883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19024] = 3, + [19396] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(988), 4, + ACTIONS(1175), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(990), 29, + ACTIONS(1177), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44793,15 +45921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19065] = 3, + [19437] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1024), 4, + ACTIONS(995), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1026), 29, + ACTIONS(997), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44831,15 +45959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19106] = 3, + [19478] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1160), 4, + ACTIONS(1191), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1162), 29, + ACTIONS(1193), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44869,15 +45997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19147] = 3, + [19519] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1272), 4, + ACTIONS(979), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1274), 29, + ACTIONS(981), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44907,15 +46035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19188] = 3, + [19560] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1148), 4, + ACTIONS(1271), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1150), 29, + ACTIONS(1273), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44945,15 +46073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19229] = 3, + [19601] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1068), 4, + ACTIONS(1267), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1070), 29, + ACTIONS(1269), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44983,15 +46111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19270] = 3, + [19642] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 4, + ACTIONS(1259), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1258), 29, + ACTIONS(1261), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45021,15 +46149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19311] = 3, + [19683] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1184), 4, + ACTIONS(1043), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1186), 29, + ACTIONS(1045), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45059,15 +46187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19352] = 3, + [19724] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 4, + ACTIONS(1115), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1198), 29, + ACTIONS(1117), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45097,15 +46225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19393] = 3, + [19765] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1040), 4, + ACTIONS(1047), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1042), 29, + ACTIONS(1049), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45135,15 +46263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19434] = 3, + [19806] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1132), 4, + ACTIONS(1055), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1134), 29, + ACTIONS(1057), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45173,15 +46301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19475] = 3, + [19847] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1116), 4, + ACTIONS(1059), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1118), 29, + ACTIONS(1061), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45211,15 +46339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19516] = 3, + [19888] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1180), 4, + ACTIONS(999), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1182), 29, + ACTIONS(1001), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45249,15 +46377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19557] = 3, + [19929] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1076), 4, + ACTIONS(1019), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1078), 29, + ACTIONS(1021), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45287,15 +46415,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19598] = 3, + [19970] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1829), 1, + anon_sym_LBRACE, + ACTIONS(1831), 1, + anon_sym_BANG, + ACTIONS(1833), 1, + anon_sym_COLON_COLON, + STATE(804), 1, + sym_field_initializer_list, + ACTIONS(592), 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(594), 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, + [20019] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1164), 4, + ACTIONS(1007), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1166), 29, + ACTIONS(1009), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45325,15 +46495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19639] = 3, + [20060] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1072), 4, + ACTIONS(1183), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1074), 29, + ACTIONS(1185), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45363,15 +46533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19680] = 3, + [20101] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1236), 4, + ACTIONS(1295), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1238), 29, + ACTIONS(1297), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45401,15 +46571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19721] = 3, + [20142] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1048), 4, + ACTIONS(1187), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1050), 29, + ACTIONS(1189), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45439,15 +46609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19762] = 3, + [20183] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1252), 4, + ACTIONS(983), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1254), 29, + ACTIONS(985), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45477,15 +46647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19803] = 3, + [20224] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(980), 4, + ACTIONS(1227), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(982), 29, + ACTIONS(1229), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45515,15 +46685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19844] = 3, + [20265] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1188), 4, + ACTIONS(1231), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1190), 29, + ACTIONS(1233), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45553,25 +46723,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19885] = 5, + [20306] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1812), 1, + ACTIONS(1251), 4, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_POUND, - STATE(516), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - ACTIONS(1815), 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(1817), 22, - anon_sym__, + ACTIONS(1253), 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, @@ -45587,21 +46757,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, - [19930] = 3, + [20347] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1084), 4, + ACTIONS(1283), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1086), 29, + ACTIONS(1285), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45631,15 +46799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19971] = 3, + [20388] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1060), 4, + ACTIONS(1287), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1062), 29, + ACTIONS(1289), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45669,15 +46837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20012] = 3, + [20429] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1268), 4, + ACTIONS(1143), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1270), 29, + ACTIONS(1145), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45707,15 +46875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20053] = 3, + [20470] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1248), 4, + ACTIONS(1163), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1250), 29, + ACTIONS(1165), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45745,15 +46913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20094] = 3, + [20511] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1088), 4, + ACTIONS(1063), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1090), 29, + ACTIONS(1065), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45783,15 +46951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20135] = 3, + [20552] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1208), 4, + ACTIONS(1263), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1210), 29, + ACTIONS(1265), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45821,15 +46989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20176] = 3, + [20593] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1200), 4, + ACTIONS(1211), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1202), 29, + ACTIONS(1213), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45859,15 +47027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20217] = 3, + [20634] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1080), 4, + ACTIONS(1107), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1082), 29, + ACTIONS(1109), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45897,15 +47065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20258] = 3, + [20675] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1124), 4, + ACTIONS(1071), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1126), 29, + ACTIONS(1073), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45935,15 +47103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20299] = 3, + [20716] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(972), 4, + ACTIONS(1199), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(974), 29, + ACTIONS(1201), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45973,15 +47141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20340] = 3, + [20757] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(976), 4, + ACTIONS(1051), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(978), 29, + ACTIONS(1053), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46011,72 +47179,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20381] = 22, + [20798] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(676), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1819), 1, + ACTIONS(1015), 4, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1821), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - STATE(1206), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [20460] = 3, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1017), 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, + [20839] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1128), 4, + ACTIONS(1207), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1130), 29, + ACTIONS(1209), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46106,15 +47255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20501] = 3, + [20880] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1260), 4, + ACTIONS(1087), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1262), 29, + ACTIONS(1089), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46144,15 +47293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20542] = 3, + [20921] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1096), 4, + ACTIONS(1167), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1098), 29, + ACTIONS(1169), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46182,15 +47331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20583] = 3, + [20962] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1156), 4, + ACTIONS(1159), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1158), 29, + ACTIONS(1161), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46220,15 +47369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20624] = 3, + [21003] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1220), 4, + ACTIONS(1255), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1222), 29, + ACTIONS(1257), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46258,72 +47407,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20665] = 22, + [21044] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(684), 1, + ACTIONS(1155), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1157), 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, + [21085] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(616), 1, anon_sym_RBRACK, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1835), 1, anon_sym_SEMI, - ACTIONS(1825), 1, + ACTIONS(1837), 1, anon_sym_COMMA, - STATE(469), 1, + STATE(454), 1, sym_arguments, - STATE(1253), 1, + STATE(1237), 1, aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [20744] = 3, + [21164] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1264), 4, + ACTIONS(1279), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1266), 29, + ACTIONS(1281), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46353,15 +47540,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20785] = 3, + [21205] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(612), 1, + anon_sym_RBRACK, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1839), 1, + anon_sym_SEMI, + ACTIONS(1841), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + STATE(1264), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [21284] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1120), 4, + ACTIONS(1147), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1122), 29, + ACTIONS(1149), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46391,15 +47635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20826] = 3, + [21325] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1204), 4, + ACTIONS(1075), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1206), 29, + ACTIONS(1077), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46429,15 +47673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20867] = 3, + [21366] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1144), 4, + ACTIONS(1303), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1146), 29, + ACTIONS(1305), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46467,15 +47711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20908] = 3, + [21407] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1112), 4, + ACTIONS(1151), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1114), 29, + ACTIONS(1153), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46505,15 +47749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20949] = 3, + [21448] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1008), 4, + ACTIONS(1039), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1010), 29, + ACTIONS(1041), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46543,15 +47787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20990] = 3, + [21489] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1172), 4, + ACTIONS(1179), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1174), 29, + ACTIONS(1181), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46581,15 +47825,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21031] = 3, + [21530] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(718), 1, + anon_sym_RBRACK, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1843), 1, + anon_sym_SEMI, + ACTIONS(1845), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + STATE(1207), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [21609] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1280), 4, + ACTIONS(1275), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1282), 29, + ACTIONS(1277), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46619,15 +47920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21072] = 3, + [21650] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1176), 4, + ACTIONS(1139), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1178), 29, + ACTIONS(1141), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46657,72 +47958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21113] = 22, + [21691] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(706), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1827), 1, - anon_sym_SEMI, - ACTIONS(1829), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - STATE(1192), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [21192] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1056), 4, + ACTIONS(1135), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1058), 29, + ACTIONS(1137), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46752,15 +47996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21233] = 3, + [21732] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1224), 4, + ACTIONS(1131), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1226), 29, + ACTIONS(1133), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46790,15 +48034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21274] = 3, + [21773] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 4, + ACTIONS(1127), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1214), 29, + ACTIONS(1129), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46828,15 +48072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21315] = 3, + [21814] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1168), 4, + ACTIONS(1223), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1170), 29, + ACTIONS(1225), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46866,15 +48110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21356] = 3, + [21855] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1136), 4, + ACTIONS(1219), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1138), 29, + ACTIONS(1221), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46904,15 +48148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21397] = 3, + [21896] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1228), 4, + ACTIONS(1239), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1230), 29, + ACTIONS(1241), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46942,15 +48186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21438] = 3, + [21937] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1108), 4, + ACTIONS(1247), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1110), 29, + ACTIONS(1249), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46980,15 +48224,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21479] = 3, + [21978] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(968), 4, + ACTIONS(1235), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(970), 29, + ACTIONS(1237), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47018,15 +48262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21520] = 3, + [22019] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1092), 4, + ACTIONS(1299), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1094), 29, + ACTIONS(1301), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47056,15 +48300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21561] = 3, + [22060] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1052), 4, + ACTIONS(1215), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1054), 29, + ACTIONS(1217), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47094,15 +48338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21602] = 3, + [22101] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1044), 4, + ACTIONS(1123), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1046), 29, + ACTIONS(1125), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47132,15 +48376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21643] = 3, + [22142] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1036), 4, + ACTIONS(1195), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1038), 29, + ACTIONS(1197), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47170,15 +48414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21684] = 3, + [22183] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1240), 4, + ACTIONS(1103), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1242), 29, + ACTIONS(1105), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47208,15 +48452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21725] = 3, + [22224] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1032), 4, + ACTIONS(1095), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1034), 29, + ACTIONS(1097), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47246,15 +48490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21766] = 3, + [22265] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1028), 4, + ACTIONS(987), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1030), 29, + ACTIONS(989), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47284,15 +48528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21807] = 3, + [22306] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1020), 4, + ACTIONS(1111), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1022), 29, + ACTIONS(1113), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47322,15 +48566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21848] = 3, + [22347] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1012), 4, + ACTIONS(1003), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1014), 29, + ACTIONS(1005), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47360,15 +48604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21889] = 3, + [22388] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1244), 4, + ACTIONS(1023), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1246), 29, + ACTIONS(1025), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47398,15 +48642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21930] = 3, + [22429] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1064), 4, + ACTIONS(1027), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1066), 29, + ACTIONS(1029), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47436,15 +48680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21971] = 3, + [22470] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1276), 4, + ACTIONS(1031), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1278), 29, + ACTIONS(1033), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47474,15 +48718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22012] = 3, + [22511] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(984), 4, + ACTIONS(1099), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(986), 29, + ACTIONS(1101), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47512,15 +48756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22053] = 3, + [22552] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1100), 4, + ACTIONS(1083), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1102), 29, + ACTIONS(1085), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47550,15 +48794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22094] = 3, + [22593] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(996), 4, + ACTIONS(1035), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(998), 29, + ACTIONS(1037), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47588,15 +48832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22135] = 3, + [22634] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1104), 4, + ACTIONS(1091), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1106), 29, + ACTIONS(1093), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47626,15 +48870,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22176] = 3, + [22675] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_POUND, + STATE(578), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + ACTIONS(1850), 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(1852), 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, + [22720] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1000), 4, + ACTIONS(1079), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1002), 29, + ACTIONS(1081), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47664,15 +48948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22217] = 3, + [22761] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1004), 4, + ACTIONS(1067), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1006), 29, + ACTIONS(1069), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47702,17 +48986,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22258] = 6, + [22802] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1534), 1, - anon_sym_BANG, - ACTIONS(1831), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - STATE(442), 1, - sym_field_initializer_list, - ACTIONS(579), 10, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1854), 1, + anon_sym_RPAREN, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1032), 1, + sym__type, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 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, + [22868] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1860), 1, + anon_sym_impl, + ACTIONS(1862), 1, + anon_sym_const, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_COLON_COLON, + ACTIONS(1870), 1, + anon_sym_GT, + ACTIONS(1874), 1, + anon_sym_default, + ACTIONS(1876), 1, + sym_identifier, + STATE(1250), 1, + sym_generic_type_with_turbofish, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(670), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1447), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 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, + [22934] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1860), 1, + anon_sym_impl, + ACTIONS(1862), 1, + anon_sym_const, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_COLON_COLON, + ACTIONS(1874), 1, + anon_sym_default, + ACTIONS(1876), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_GT, + STATE(1250), 1, + sym_generic_type_with_turbofish, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(670), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1447), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 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, + [23000] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1587), 1, + anon_sym_LBRACE, + ACTIONS(1575), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -47722,9 +49153,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 19, - anon_sym_LBRACE, + ACTIONS(1573), 20, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -47741,43 +49172,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [22304] = 16, + [23042] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1833), 1, - anon_sym_RPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + ACTIONS(1880), 1, + anon_sym_RPAREN, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(998), 1, + STATE(1032), 1, sym__type, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -47792,14 +49224,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [22370] = 4, + [23108] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1566), 1, - anon_sym_LBRACE, - ACTIONS(1544), 11, + ACTIONS(1860), 1, + anon_sym_impl, + ACTIONS(1862), 1, + anon_sym_const, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_COLON_COLON, + ACTIONS(1874), 1, + anon_sym_default, + ACTIONS(1876), 1, + sym_identifier, + ACTIONS(1882), 1, + anon_sym_GT, + STATE(1250), 1, + sym_generic_type_with_turbofish, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(670), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1447), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 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, + [23174] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(608), 1, + anon_sym_RPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, anon_sym_EQ, + ACTIONS(1884), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + STATE(1297), 1, + aux_sym_arguments_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [23250] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1860), 1, + anon_sym_impl, + ACTIONS(1862), 1, + anon_sym_const, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_COLON_COLON, + ACTIONS(1874), 1, + anon_sym_default, + ACTIONS(1876), 1, + sym_identifier, + ACTIONS(1886), 1, + anon_sym_GT, + STATE(1250), 1, + sym_generic_type_with_turbofish, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(670), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1447), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 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, + [23316] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1569), 1, anon_sym_BANG, + ACTIONS(1888), 1, + anon_sym_COLON_COLON, + STATE(449), 1, + sym_field_initializer_list, + ACTIONS(592), 10, + anon_sym_EQ, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -47809,9 +49399,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1542), 20, + ACTIONS(594), 19, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -47828,124 +49418,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK, - [22412] = 21, + [23362] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(599), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1860), 1, + anon_sym_impl, + ACTIONS(1862), 1, + anon_sym_const, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_COLON_COLON, + ACTIONS(1874), 1, + anon_sym_default, + ACTIONS(1876), 1, + sym_identifier, + ACTIONS(1890), 1, + anon_sym_GT, + STATE(1250), 1, + sym_generic_type_with_turbofish, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(670), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1447), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 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, + [23428] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(708), 1, + anon_sym_RBRACK, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1839), 1, + ACTIONS(1892), 1, anon_sym_COMMA, - STATE(469), 1, + STATE(454), 1, sym_arguments, - STATE(1279), 1, - aux_sym_arguments_repeat1, - ACTIONS(1648), 2, + STATE(1299), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [22488] = 21, + [23504] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(690), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1841), 1, + ACTIONS(1894), 1, anon_sym_COMMA, - STATE(469), 1, + ACTIONS(1896), 1, + anon_sym_RPAREN, + STATE(454), 1, sym_arguments, - STATE(1332), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, + STATE(1239), 1, + aux_sym_arguments_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [22564] = 4, + [23580] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1564), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1526), 11, + ACTIONS(1579), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -47957,7 +49596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1524), 20, + ACTIONS(1577), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -47978,67 +49617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [22606] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, - anon_sym_RPAREN, - STATE(469), 1, - sym_arguments, - STATE(1325), 1, - aux_sym_arguments_repeat1, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [22682] = 4, + [23622] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1562), 1, + ACTIONS(1585), 1, anon_sym_LBRACE, - ACTIONS(1556), 11, + ACTIONS(1561), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -48050,7 +49634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1554), 20, + ACTIONS(1559), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -48071,41 +49655,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [22724] = 16, + [23664] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, + ACTIONS(1860), 1, anon_sym_impl, - ACTIONS(1849), 1, + ACTIONS(1862), 1, anon_sym_const, - ACTIONS(1851), 1, + ACTIONS(1864), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1857), 1, - anon_sym_GT, - ACTIONS(1861), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1876), 1, sym_identifier, + ACTIONS(1898), 1, + anon_sym_GT, + STATE(1250), 1, + sym_generic_type_with_turbofish, STATE(1256), 1, sym_generic_type, - STATE(1266), 1, - sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1859), 2, + ACTIONS(1872), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(662), 2, + STATE(670), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, + STATE(1447), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1855), 15, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48121,41 +49705,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [22790] = 16, + [23730] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, + ACTIONS(1860), 1, anon_sym_impl, - ACTIONS(1849), 1, + ACTIONS(1862), 1, anon_sym_const, - ACTIONS(1851), 1, + ACTIONS(1864), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1876), 1, sym_identifier, - ACTIONS(1865), 1, + ACTIONS(1900), 1, anon_sym_GT, + STATE(1250), 1, + sym_generic_type_with_turbofish, STATE(1256), 1, sym_generic_type, - STATE(1266), 1, - sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1859), 2, + ACTIONS(1872), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(662), 2, + STATE(670), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, + STATE(1447), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1855), 15, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48171,146 +49755,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [22856] = 21, + [23796] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(598), 1, + anon_sym_RPAREN, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1867), 1, + ACTIONS(1902), 1, anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_RPAREN, - STATE(469), 1, + STATE(454), 1, sym_arguments, - STATE(1233), 1, + STATE(1265), 1, aux_sym_arguments_repeat1, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [23872] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(704), 1, + anon_sym_RBRACK, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1904), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + STATE(1331), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [22932] = 16, + [23948] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1583), 1, + anon_sym_LBRACE, + ACTIONS(1565), 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(1563), 20, + anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1861), 1, - anon_sym_default, - ACTIONS(1863), 1, - sym_identifier, - ACTIONS(1871), 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, + [23990] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1906), 1, + anon_sym_COMMA, + ACTIONS(1908), 1, + anon_sym_RPAREN, + STATE(454), 1, + sym_arguments, + STATE(1347), 1, + aux_sym_arguments_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, anon_sym_GT, - STATE(1256), 1, - sym_generic_type, - STATE(1266), 1, - sym_generic_type_with_turbofish, - STATE(1445), 1, - sym_scoped_type_identifier, - STATE(1503), 1, - sym_scoped_identifier, - ACTIONS(1859), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(662), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 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, - [22998] = 16, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24066] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1858), 1, sym_identifier, - ACTIONS(1873), 1, - anon_sym_GT, - STATE(1256), 1, - sym_generic_type, - STATE(1266), 1, + ACTIONS(1910), 1, + anon_sym_RPAREN, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1269), 1, + sym__type, + STATE(1403), 1, sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(662), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48325,42 +50008,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [23064] = 16, + [24132] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1912), 1, + anon_sym_BANG, + ACTIONS(1914), 1, + anon_sym_COLON_COLON, + ACTIONS(1643), 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(1641), 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, + [24175] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1858), 1, sym_identifier, - ACTIONS(1875), 1, - anon_sym_GT, - STATE(1256), 1, - sym_generic_type, - STATE(1266), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1403), 1, sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(662), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, + STATE(1600), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48375,43 +50094,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [23130] = 16, + [24238] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1916), 1, + anon_sym_RBRACE, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24311] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - ACTIONS(1877), 1, - anon_sym_RPAREN, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1240), 1, + STATE(1032), 1, sym__type, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48426,41 +50195,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23196] = 16, + [24374] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, + ACTIONS(1860), 1, anon_sym_impl, - ACTIONS(1849), 1, + ACTIONS(1862), 1, anon_sym_const, - ACTIONS(1851), 1, + ACTIONS(1864), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1876), 1, sym_identifier, - ACTIONS(1879), 1, - anon_sym_GT, + STATE(1250), 1, + sym_generic_type_with_turbofish, STATE(1256), 1, sym_generic_type, - STATE(1266), 1, - sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1859), 2, + ACTIONS(1872), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(662), 2, + STATE(670), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, + STATE(1447), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1855), 15, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48476,41 +50243,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [23262] = 16, + [24437] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1533), 1, sym_identifier, - ACTIONS(1881), 1, - anon_sym_GT, - STATE(1256), 1, - sym_generic_type, - STATE(1266), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(881), 1, + sym_generic_type, + STATE(911), 1, + sym__type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(662), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48525,191 +50291,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [23328] = 21, + [24500] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(688), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, + ACTIONS(732), 1, + anon_sym_RPAREN, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1883), 1, + ACTIONS(1920), 1, anon_sym_COMMA, - STATE(469), 1, + STATE(454), 1, sym_arguments, - STATE(1268), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [23404] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(593), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1885), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - STATE(1166), 1, - aux_sym_arguments_repeat1, - ACTIONS(1648), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [23480] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1558), 1, - anon_sym_LBRACE, - ACTIONS(1530), 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(1528), 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, + ACTIONS(1827), 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, - [23522] = 16, + [24573] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - ACTIONS(1887), 1, - anon_sym_RPAREN, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(998), 1, + STATE(1335), 1, sym__type, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48724,92 +50392,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23588] = 19, + [24636] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(97), 1, + anon_sym_RBRACE, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(469), 1, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24709] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(730), 1, + anon_sym_RPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1920), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1889), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1646), 3, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [23659] = 15, + [24782] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1264), 1, - sym__type, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1629), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48824,22 +50546,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23722] = 4, + [24845] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1891), 1, - anon_sym_RBRACE, - ACTIONS(1893), 8, - anon_sym_POUND, - anon_sym_LBRACK, + ACTIONS(877), 1, anon_sym_COLON_COLON, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1895), 22, - anon_sym__, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1382), 1, + sym__type, + STATE(1386), 1, + sym_scoped_identifier, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48854,47 +50594,40 @@ 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, - [23763] = 15, + [24908] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_AT, - ACTIONS(1578), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1582), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(883), 1, - sym__type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1296), 1, + sym__type, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48909,78 +50642,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23826] = 5, + [24971] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1897), 1, - anon_sym_BANG, - ACTIONS(1899), 1, - anon_sym_COLON_COLON, - ACTIONS(1586), 10, + ACTIONS(81), 1, + anon_sym_RBRACE, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1584), 19, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25044] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, anon_sym_LBRACK, + ACTIONS(1611), 1, anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1922), 1, + anon_sym_LBRACE, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, anon_sym_AMP_AMP, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, + STATE(294), 1, + sym_match_block, + STATE(454), 1, + sym_arguments, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1944), 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, - [23869] = 15, + [25117] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(1544), 1, + STATE(1589), 1, sym__type, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48995,40 +50796,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23932] = 15, + [25180] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(1948), 1, + anon_sym_RBRACE, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25253] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(821), 1, + anon_sym_LBRACE, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, + anon_sym_AMP_AMP, + ACTIONS(1940), 1, + anon_sym_PIPE_PIPE, + STATE(263), 1, + sym_block, + STATE(454), 1, + sym_arguments, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1944), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25326] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(216), 1, + anon_sym_RBRACE, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25399] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1251), 1, - sym__type, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1582), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49043,40 +51003,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23995] = 15, + [25462] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1576), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1578), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1582), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1020), 1, - sym__type, - STATE(1364), 1, + STATE(1386), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1396), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49091,93 +51051,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24058] = 20, + [25525] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(211), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_SEMI, - STATE(469), 1, + ACTIONS(1950), 1, + anon_sym_RBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24131] = 15, + [25598] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(984), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - STATE(1383), 1, + STATE(1273), 1, sym__type, - STATE(881), 5, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49192,40 +51152,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24194] = 15, + [25661] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1404), 1, - sym_scoped_identifier, - STATE(1557), 1, + STATE(1295), 1, sym__type, - STATE(881), 5, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49240,40 +51200,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24257] = 15, + [25724] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, + ACTIONS(93), 1, + anon_sym_RBRACE, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_default, - ACTIONS(1837), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(1278), 1, - sym__type, - STATE(1404), 1, - sym_scoped_identifier, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25797] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1860), 1, + anon_sym_impl, + ACTIONS(1862), 1, + anon_sym_const, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_COLON_COLON, + ACTIONS(1874), 1, + anon_sym_default, + ACTIONS(1952), 1, + sym_identifier, + STATE(1079), 1, + sym_generic_type_with_turbofish, + STATE(1084), 1, + sym_generic_type, + STATE(1483), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(837), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1291), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 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, + [25860] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1363), 1, + sym__type, + STATE(1386), 1, + sym_scoped_identifier, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49288,146 +51349,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24320] = 20, + [25923] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(726), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_COMMA, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1954), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24393] = 20, + [25994] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1905), 1, - anon_sym_RBRACE, - ACTIONS(1907), 1, - anon_sym_COMMA, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1956), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26065] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1958), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24466] = 15, + [26136] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1593), 1, + anon_sym_AT, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1049), 1, sym__type, - STATE(1404), 1, + STATE(1385), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49442,88 +51553,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24529] = 15, + [26199] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, + ACTIONS(1553), 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(1551), 21, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1496), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, - anon_sym_default, - ACTIONS(1510), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - STATE(1369), 1, - sym__type, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 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, - [24592] = 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, + anon_sym_EQ_GT, + anon_sym_QMARK, + [26238] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(1596), 1, + STATE(1459), 1, sym__type, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49538,40 +51637,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24655] = 15, + [26301] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1960), 1, + anon_sym_COMMA, + ACTIONS(1962), 1, + anon_sym_RPAREN, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26374] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1368), 1, - sym__type, - STATE(1404), 1, + STATE(1386), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1471), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49586,21 +51738,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24718] = 4, + [26437] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1909), 1, - anon_sym_RBRACE, - ACTIONS(1911), 8, - anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1964), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26508] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1243), 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(1913), 22, + ACTIONS(1245), 23, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -49620,43 +51822,96 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_ref, sym_identifier, sym_mutable_specifier, sym_super, - [24759] = 15, + [26547] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1966), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26618] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1331), 1, - sym__type, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1566), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49671,115 +51926,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24822] = 19, + [26681] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(222), 1, + anon_sym_RBRACE, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(469), 1, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1915), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24893] = 15, + [26754] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, - anon_sym_default, - ACTIONS(1510), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(883), 1, - sym__type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 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, - [24956] = 5, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(1968), 1, + anon_sym_RBRACE, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26827] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1800), 1, - anon_sym_BANG, - ACTIONS(1917), 1, - anon_sym_COLON_COLON, - ACTIONS(579), 10, + ACTIONS(1579), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -49789,8 +52047,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 19, + ACTIONS(1577), 20, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -49809,40 +52068,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [24999] = 15, + [26866] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(984), 1, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1339), 1, - sym__type, - STATE(1366), 1, + STATE(1386), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1410), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49857,12 +52116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25062] = 3, + [26929] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 11, + ACTIONS(1549), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -49872,7 +52130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1528), 20, + ACTIONS(1547), 21, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -49892,41 +52150,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [25101] = 15, + [26968] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1970), 1, + anon_sym_RBRACE, + ACTIONS(1972), 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(1974), 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, + [27009] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(984), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1363), 1, + STATE(1209), 1, sym__type, - STATE(1366), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49941,76 +52237,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25164] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1530), 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(1528), 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, - anon_sym_EQ_GT, - anon_sym_QMARK, - [25203] = 15, + [27072] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(1583), 1, + STATE(1564), 1, sym__type, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50025,40 +52285,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25266] = 15, + [27135] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(1860), 1, + anon_sym_impl, + ACTIONS(1862), 1, + anon_sym_const, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1976), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(1105), 1, sym_generic_type, - STATE(894), 1, + STATE(1109), 1, + sym_generic_type_with_turbofish, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1297), 1, - sym__type, - STATE(1404), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(627), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1244), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50073,379 +52332,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25329] = 19, + sym_super, + [27198] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1919), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [25400] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1921), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [25471] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1534), 1, - anon_sym_BANG, - ACTIONS(1923), 1, - anon_sym_COLON_COLON, - ACTIONS(579), 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(575), 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, - anon_sym_QMARK, - [25514] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1588), 1, - anon_sym_BANG, - ACTIONS(1925), 1, - anon_sym_COLON_COLON, - ACTIONS(1586), 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(1584), 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, - anon_sym_QMARK, - [25557] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1927), 1, - anon_sym_COMMA, - ACTIONS(1929), 1, - anon_sym_RPAREN, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [25630] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1931), 1, - anon_sym_RBRACE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [25703] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1933), 1, - anon_sym_LBRACE, - ACTIONS(1935), 1, - anon_sym_EQ, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, - anon_sym_AMP, - ACTIONS(1947), 1, - anon_sym_PIPE, - ACTIONS(1949), 1, - anon_sym_AMP_AMP, - ACTIONS(1951), 1, - anon_sym_PIPE_PIPE, - STATE(80), 1, - sym_match_block, - STATE(469), 1, - sym_arguments, - ACTIONS(1939), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1937), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1957), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1955), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [25776] = 15, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1403), 1, + sym_scoped_identifier, + STATE(1539), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 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, + [27261] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(984), 1, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - STATE(1444), 1, + STATE(1381), 1, sym__type, - STATE(881), 5, + STATE(1386), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50460,40 +52429,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25839] = 15, + [27324] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(1494), 1, + STATE(1546), 1, sym__type, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50508,40 +52477,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25902] = 15, + [27387] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1169), 1, + STATE(1288), 1, sym__type, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50556,301 +52525,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25965] = 19, + [27450] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(469), 1, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(1978), 1, + anon_sym_RBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1959), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26036] = 20, + [27523] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + STATE(1415), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 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, + [27586] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1403), 1, + sym_scoped_identifier, + STATE(1599), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 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, + [27649] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(85), 1, anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [26109] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1961), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26180] = 19, + [27722] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(469), 1, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(1980), 1, + anon_sym_RBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26251] = 20, + [27795] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(716), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_COMMA, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1982), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26324] = 15, + [27866] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(1256), 1, - sym_generic_type, - STATE(1266), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1403), 1, sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(662), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, + STATE(1470), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50865,147 +52880,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [26387] = 20, + [27929] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1965), 1, - anon_sym_RBRACE, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1984), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26460] = 20, + [28000] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(217), 1, + ACTIONS(83), 1, anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26533] = 15, + [28073] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1209), 1, - sym__type, - STATE(1404), 1, + STATE(1386), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1413), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51020,40 +53033,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26596] = 15, + [28136] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1386), 1, sym_scoped_identifier, - STATE(1490), 1, + STATE(1411), 1, sym__type, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51068,211 +53081,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26659] = 20, + [28199] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1967), 1, - anon_sym_RBRACE, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1986), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [26732] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1969), 1, - anon_sym_else, - STATE(775), 1, - sym_else_clause, - ACTIONS(559), 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(557), 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, + ACTIONS(1827), 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, - [26775] = 20, + [28270] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1971), 1, - anon_sym_RBRACE, - STATE(469), 1, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1308), 1, + sym__type, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 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, + [28333] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, + anon_sym_AMP_AMP, + ACTIONS(1940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1988), 1, + anon_sym_LBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + STATE(791), 1, + sym_match_block, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1944), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28406] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1617), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1621), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1619), 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, - ACTIONS(1674), 2, + 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, + [28447] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, + anon_sym_AMP_AMP, + ACTIONS(1940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1990), 1, + anon_sym_LBRACE, + STATE(74), 1, + sym_match_block, + STATE(454), 1, + sym_arguments, + ACTIONS(1928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1944), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26848] = 20, + [28520] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(99), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1860), 1, + anon_sym_impl, + ACTIONS(1862), 1, + anon_sym_const, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_COLON_COLON, + ACTIONS(1874), 1, + anon_sym_default, + ACTIONS(1992), 1, + sym_identifier, + STATE(1195), 1, + sym_generic_type_with_turbofish, + STATE(1200), 1, + sym_generic_type, + STATE(1483), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(837), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1407), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 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, + [28583] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(1994), 1, + anon_sym_RBRACE, + ACTIONS(1996), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26921] = 4, + [28656] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1634), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1572), 10, + ACTIONS(1561), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -51282,8 +53440,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 19, + ACTIONS(1559), 20, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -51302,13 +53461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [26962] = 4, + [28695] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1568), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1572), 10, + ACTIONS(1557), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -51319,8 +53475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 19, + ACTIONS(1555), 21, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -51339,285 +53497,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [27003] = 20, + [28734] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1973), 1, - anon_sym_RBRACE, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1998), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27076] = 15, + [28805] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, + ACTIONS(1561), 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(1559), 20, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_default, - ACTIONS(1837), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(1255), 1, - sym__type, - STATE(1404), 1, - sym_scoped_identifier, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 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, - [27139] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_default, - ACTIONS(1837), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(1404), 1, - sym_scoped_identifier, - STATE(1531), 1, - sym__type, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 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, - [27202] = 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, + anon_sym_QMARK, + [28844] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1593), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(984), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - STATE(1384), 1, + STATE(911), 1, sym__type, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 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, - [27265] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, - anon_sym_COLON_COLON, - ACTIONS(1861), 1, - anon_sym_default, - ACTIONS(1975), 1, - sym_identifier, - STATE(1106), 1, - sym_generic_type, - STATE(1109), 1, - sym_generic_type_with_turbofish, - STATE(1445), 1, - sym_scoped_type_identifier, - STATE(1503), 1, - sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(669), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1222), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 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, - [27328] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, - anon_sym_default, - ACTIONS(1510), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1385), 1, sym_scoped_identifier, - STATE(1463), 1, - sym__type, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51632,194 +53633,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27391] = 20, + [28907] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1977), 1, - anon_sym_RBRACE, - STATE(469), 1, + ACTIONS(1920), 1, + anon_sym_COMMA, + ACTIONS(2000), 1, + anon_sym_RPAREN, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27464] = 20, + [28980] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(221), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1934), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1938), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + STATE(798), 1, + sym_block, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1944), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27537] = 15, + [29053] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1593), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(984), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - STATE(1464), 1, + STATE(1047), 1, sym__type, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 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, - [27600] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, - anon_sym_default, - ACTIONS(1510), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1385), 1, sym_scoped_identifier, - STATE(1465), 1, - sym__type, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51834,303 +53787,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27663] = 20, + [29116] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1565), 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(1563), 20, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1979), 1, - anon_sym_RBRACE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27736] = 20, + 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, + [29155] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1935), 1, - anon_sym_EQ, - ACTIONS(1943), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1981), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_match_block, - STATE(469), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(2002), 1, + anon_sym_RBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(1939), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1955), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27809] = 20, + [29228] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(87), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1639), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1621), 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(1619), 19, anon_sym_LBRACK, - ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27882] = 20, + 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, + [29269] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(2004), 1, + anon_sym_RBRACE, + ACTIONS(2006), 1, anon_sym_COMMA, - ACTIONS(1983), 1, - anon_sym_RPAREN, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27955] = 19, + [29342] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(469), 1, + ACTIONS(1920), 1, + anon_sym_COMMA, + ACTIONS(2008), 1, + anon_sym_RPAREN, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1985), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28026] = 15, + [29415] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1987), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(1162), 1, - sym_generic_type, - STATE(1316), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(821), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1352), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, + STATE(1435), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52145,64 +54067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [28089] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1989), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28160] = 3, + [29478] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1548), 10, + ACTIONS(1565), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -52212,7 +54082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1546), 21, + ACTIONS(1563), 20, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -52232,78 +54102,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK, - [28199] = 3, + [29517] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1540), 10, + ACTIONS(811), 1, + anon_sym_RPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1920), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1538), 21, - anon_sym_LBRACE, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29590] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(226), 1, + anon_sym_RBRACE, + ACTIONS(1609), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1611), 1, anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, anon_sym_AMP_AMP, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 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, - [28238] = 15, + [29663] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_AT, - ACTIONS(1578), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1582), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1037), 1, - sym__type, - STATE(1364), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1536), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52318,127 +54257,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28301] = 3, + [29726] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1552), 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(1550), 21, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(877), 1, 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, - anon_sym_EQ_GT, - anon_sym_QMARK, - [28340] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1991), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28411] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, - anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1993), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(1072), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(1073), 1, + STATE(881), 1, sym_generic_type, - STATE(1445), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1263), 1, + sym__type, + STATE(1403), 1, sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(821), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1263), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52453,77 +54305,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [28474] = 3, + [29789] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 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(1554), 20, + ACTIONS(738), 1, + anon_sym_RPAREN, + ACTIONS(1609), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1611), 1, anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, anon_sym_AMP_AMP, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1920), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 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, - [28513] = 15, + [29862] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(998), 1, + STATE(1399), 1, sym__type, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52538,12 +54406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28576] = 3, + [29925] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 11, - anon_sym_EQ, + ACTIONS(1831), 1, anon_sym_BANG, + ACTIONS(2010), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, + anon_sym_EQ, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -52553,9 +54424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1524), 20, + ACTIONS(594), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -52574,76 +54444,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28615] = 3, + [29968] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 11, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(2012), 1, + anon_sym_RBRACE, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1542), 20, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30041] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1611), 1, anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, anon_sym_AMP_AMP, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2014), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 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, - [28654] = 15, + [30112] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2016), 1, + anon_sym_RBRACE, + ACTIONS(2018), 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(2020), 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, + [30153] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(984), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(1380), 1, + STATE(1445), 1, sym__type, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52658,304 +54634,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28717] = 20, + [30216] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(724), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_COMMA, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(2022), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28790] = 20, + [30287] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1995), 1, - anon_sym_RBRACE, - ACTIONS(1997), 1, + ACTIONS(2024), 1, anon_sym_COMMA, - STATE(469), 1, + ACTIONS(2026), 1, + anon_sym_RPAREN, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28863] = 20, + [30360] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1575), 11, anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_COMMA, - ACTIONS(1999), 1, - anon_sym_RPAREN, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, + anon_sym_BANG, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28936] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(219), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1573), 20, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29009] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [30399] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1569), 1, + anon_sym_BANG, + ACTIONS(2028), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 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(594), 19, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2001), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29080] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [30442] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1367), 1, + STATE(911), 1, sym__type, - STATE(1404), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52970,40 +54861,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29143] = 15, + [30505] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1593), 1, + anon_sym_AT, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(883), 1, - sym__type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1032), 1, + sym__type, + STATE(1385), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53018,146 +54909,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29206] = 20, + [30568] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1645), 1, + anon_sym_BANG, + ACTIONS(2030), 1, + anon_sym_COLON_COLON, + ACTIONS(1643), 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(1641), 19, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(2003), 1, - anon_sym_RBRACE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29279] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_QMARK, - ACTIONS(1935), 1, + [30611] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1575), 11, anon_sym_EQ, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, - anon_sym_AMP, - ACTIONS(1947), 1, - anon_sym_PIPE, - ACTIONS(1949), 1, - anon_sym_AMP_AMP, - ACTIONS(1951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2005), 1, - anon_sym_LBRACE, - STATE(469), 1, - sym_arguments, - STATE(805), 1, - sym_match_block, - ACTIONS(1939), 2, + anon_sym_BANG, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1937), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1955), 5, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1573), 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, - [29352] = 15, + 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, + [30650] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(862), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(894), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1404), 1, - sym_scoped_identifier, - STATE(1421), 1, + STATE(1394), 1, sym__type, - STATE(881), 5, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53172,202 +55031,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29415] = 20, + [30713] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1579), 11, anon_sym_EQ, - ACTIONS(2007), 1, - anon_sym_COMMA, - ACTIONS(2009), 1, - anon_sym_RPAREN, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, + anon_sym_BANG, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [29488] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1216), 8, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1218), 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, - [29527] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(720), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1577), 20, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29600] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_default, - ACTIONS(1837), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(1404), 1, - sym_scoped_identifier, - STATE(1405), 1, - sym__type, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 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, - [29663] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [30752] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 11, + ACTIONS(2032), 1, + anon_sym_else, + STATE(814), 1, + sym_else_clause, + ACTIONS(570), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -53377,10 +55085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1524), 20, - anon_sym_LBRACE, + ACTIONS(568), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -53397,234 +55103,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [29702] = 20, + [30795] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(83), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1934), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1938), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, + STATE(69), 1, + sym_block, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1944), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29775] = 3, + [30868] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 11, + ACTIONS(2034), 1, 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(1554), 20, - anon_sym_LBRACE, + ACTIONS(2036), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(2040), 1, anon_sym_LPAREN, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_AMP, + ACTIONS(2050), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, anon_sym_AMP_AMP, + ACTIONS(2054), 1, anon_sym_PIPE_PIPE, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2064), 1, + anon_sym_EQ_GT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, + sym_arguments, + ACTIONS(2042), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2060), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2058), 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, - [29814] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_default, - ACTIONS(1837), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(1404), 1, - sym_scoped_identifier, - STATE(1580), 1, - sym__type, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 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, - [29877] = 15, + [30938] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_AT, - ACTIONS(1578), 1, - anon_sym_default, - ACTIONS(1582), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(998), 1, - sym__type, - STATE(1364), 1, - sym_scoped_identifier, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 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, - [29940] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1544), 11, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, + anon_sym_AMP_AMP, + ACTIONS(1940), 1, + anon_sym_PIPE_PIPE, + STATE(454), 1, + sym_arguments, + ACTIONS(1928), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1942), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1926), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1542), 20, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1685), 6, 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, - anon_sym_QMARK, - [29979] = 4, + [31006] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2011), 1, + ACTIONS(2068), 1, anon_sym_COLON_COLON, - ACTIONS(579), 10, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -53635,7 +55275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 19, + ACTIONS(594), 19, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_LPAREN, @@ -53655,78 +55295,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [30019] = 13, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2013), 1, - anon_sym_LBRACK, - ACTIONS(2017), 1, - anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, - anon_sym_DOT, - ACTIONS(2029), 1, - anon_sym_QMARK, - STATE(792), 1, - sym_arguments, - ACTIONS(2019), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2015), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1616), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1614), 12, - 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30077] = 10, + [31046] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1941), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1937), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 5, + ACTIONS(1629), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 15, + ACTIONS(1627), 15, anon_sym_LBRACE, anon_sym_CARET, anon_sym_AMP_AMP, @@ -53742,48 +55337,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30129] = 17, + [31098] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1616), 1, + ACTIONS(1629), 1, anon_sym_EQ, - ACTIONS(1943), 1, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1934), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1938), 1, anon_sym_AMP_AMP, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1939), 2, + ACTIONS(1928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1614), 7, + ACTIONS(1627), 7, anon_sym_LBRACE, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -53791,46 +55386,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30195] = 16, + [31164] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1616), 1, + ACTIONS(1629), 1, anon_sym_EQ, - ACTIONS(1943), 1, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1934), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1936), 1, anon_sym_PIPE, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1939), 2, + ACTIONS(1928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1614), 8, + ACTIONS(1627), 8, anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -53839,39 +55434,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30259] = 13, + [31228] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1943), 1, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1934), 1, anon_sym_AMP, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1941), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 4, + ACTIONS(1629), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(1614), 12, + ACTIONS(1627), 12, anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -53884,36 +55479,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30317] = 11, + [31286] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1941), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 5, + ACTIONS(1629), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 13, + ACTIONS(1627), 13, anon_sym_LBRACE, anon_sym_CARET, anon_sym_AMP_AMP, @@ -53927,37 +55522,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30371] = 12, + [31340] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1934), 1, anon_sym_AMP, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1941), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 4, + ACTIONS(1629), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(1614), 13, + ACTIONS(1627), 13, anon_sym_LBRACE, anon_sym_CARET, anon_sym_AMP_AMP, @@ -53971,24 +55566,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30427] = 9, + [31396] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1937), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 7, + ACTIONS(1629), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -53996,7 +55591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 15, + ACTIONS(1627), 15, anon_sym_LBRACE, anon_sym_CARET, anon_sym_AMP_AMP, @@ -54012,75 +55607,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30477] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(527), 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(525), 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, - [30515] = 14, + [31446] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1943), 1, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1934), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1936), 1, anon_sym_PIPE, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1941), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1616), 3, + ACTIONS(1629), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1937), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1614), 12, + ACTIONS(1627), 12, anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54093,71 +55653,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30575] = 19, + [31506] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1935), 1, + ACTIONS(2070), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, anon_sym_EQ, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, - anon_sym_AMP, - ACTIONS(1947), 1, - anon_sym_PIPE, - ACTIONS(1949), 1, - anon_sym_AMP_AMP, - ACTIONS(1951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2031), 1, - anon_sym_LBRACE, - STATE(469), 1, - sym_arguments, - ACTIONS(1939), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1937), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1955), 5, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(594), 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, - [30645] = 8, + 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, + [31546] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(820), 1, sym_arguments, - ACTIONS(1616), 10, + ACTIONS(1629), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54168,7 +55713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 15, + ACTIONS(1627), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54184,97 +55729,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [30693] = 18, + [31594] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1696), 1, + ACTIONS(1815), 1, anon_sym_EQ, - ACTIONS(1943), 1, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1934), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1938), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1939), 2, + ACTIONS(1928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1694), 6, + ACTIONS(1813), 6, anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30761] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1216), 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(1218), 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, - [30799] = 4, + [31662] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1568), 1, + ACTIONS(1617), 1, anon_sym_COLON_COLON, - ACTIONS(1572), 10, + ACTIONS(1621), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54285,7 +55795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 19, + ACTIONS(1619), 19, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_LPAREN, @@ -54305,12 +55815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [30839] = 4, + [31702] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1634), 1, + ACTIONS(1639), 1, anon_sym_COLON_COLON, - ACTIONS(1572), 10, + ACTIONS(1621), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54321,7 +55831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 19, + ACTIONS(1619), 19, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_LPAREN, @@ -54341,71 +55851,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [30879] = 19, + [31742] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2033), 1, + ACTIONS(2072), 1, anon_sym_RBRACK, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30949] = 8, + [31812] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(820), 1, sym_arguments, - ACTIONS(1630), 10, + ACTIONS(1651), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54416,7 +55926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1628), 15, + ACTIONS(1649), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54432,199 +55942,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [30997] = 19, + [31860] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2018), 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(2020), 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, + [31898] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2035), 1, - anon_sym_RBRACK, - STATE(469), 1, + STATE(820), 1, sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1607), 10, + anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [31067] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1605), 15, + anon_sym_CARET, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2037), 1, - anon_sym_RBRACK, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31137] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [31946] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2039), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2074), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [31207] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2041), 1, - anon_sym_COLON_COLON, - ACTIONS(579), 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(575), 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, + ACTIONS(1827), 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, - [31247] = 3, + [32016] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1893), 8, + ACTIONS(1972), 8, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -54633,7 +56080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1895), 22, + ACTIONS(1974), 22, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -54656,196 +56103,148 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [31285] = 18, + [32054] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1772), 1, + ACTIONS(2076), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, anon_sym_EQ, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, - anon_sym_AMP, - ACTIONS(1947), 1, - anon_sym_PIPE, - ACTIONS(1949), 1, - anon_sym_AMP_AMP, - ACTIONS(1951), 1, - anon_sym_PIPE_PIPE, - STATE(469), 1, - sym_arguments, - ACTIONS(1939), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1937), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1770), 6, - anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(594), 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, - [31353] = 18, + 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, + [32094] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1672), 1, - anon_sym_EQ, - ACTIONS(1943), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - STATE(469), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2078), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1939), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1670), 6, - anon_sym_LBRACE, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31421] = 18, + [32164] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1728), 1, - anon_sym_EQ, - ACTIONS(1943), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - STATE(469), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2080), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(1939), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1726), 6, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [31489] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2043), 1, - anon_sym_COLON_COLON, - ACTIONS(579), 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(575), 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, + ACTIONS(1827), 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, - [31529] = 3, + [32234] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1612), 10, + ACTIONS(1655), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54856,7 +56255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1610), 20, + ACTIONS(1653), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -54877,10 +56276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [31567] = 3, + [32272] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1622), 10, + ACTIONS(1635), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54891,7 +56290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1620), 20, + ACTIONS(1633), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -54912,407 +56311,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [31605] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2013), 1, - anon_sym_LBRACK, - ACTIONS(2017), 1, - anon_sym_LPAREN, - ACTIONS(2027), 1, - anon_sym_DOT, - ACTIONS(2029), 1, - anon_sym_QMARK, - STATE(792), 1, - sym_arguments, - ACTIONS(1606), 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(1604), 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, - [31653] = 19, + [32310] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2045), 1, - anon_sym_RBRACK, - STATE(469), 1, + ACTIONS(2082), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31723] = 19, + [32380] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2047), 1, + ACTIONS(2084), 1, anon_sym_RBRACK, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31793] = 19, + [32450] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2049), 1, + ACTIONS(2086), 1, anon_sym_RBRACK, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31863] = 19, + [32520] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2051), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2088), 1, + anon_sym_RBRACK, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31933] = 19, + [32590] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1934), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1938), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2053), 1, - anon_sym_SEMI, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1777), 6, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32003] = 19, + [32658] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2055), 1, + ACTIONS(2090), 1, anon_sym_RBRACK, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32073] = 19, + [32728] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2057), 1, + ACTIONS(1920), 1, anon_sym_COMMA, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32143] = 3, + [32798] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(551), 10, + ACTIONS(542), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -55323,7 +56681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(549), 20, + ACTIONS(540), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -55344,112 +56702,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_else, - [32181] = 19, + [32836] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1039), 8, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1041), 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, + [32874] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(562), 10, anon_sym_EQ, - ACTIONS(2059), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [32251] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(560), 20, anon_sym_LBRACK, - ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32321] = 3, + 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, + [32912] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(543), 10, + ACTIONS(538), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -55460,7 +56786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(541), 20, + ACTIONS(536), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -55481,768 +56807,822 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_else, - [32359] = 19, + [32950] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2061), 1, - anon_sym_RBRACK, - STATE(469), 1, + ACTIONS(2092), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32429] = 18, + [33020] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1772), 1, - anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(2067), 1, + ACTIONS(1938), 1, anon_sym_AMP_AMP, - ACTIONS(2069), 1, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, - STATE(792), 1, + ACTIONS(2094), 1, + anon_sym_LBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1770), 6, + ACTIONS(1944), 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, - [32497] = 19, + [33090] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2073), 1, + ACTIONS(2096), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32567] = 19, + [33160] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(2067), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(2069), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(2075), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2079), 1, - anon_sym_EQ_GT, - STATE(792), 1, + ACTIONS(2098), 1, + anon_sym_RBRACK, + STATE(454), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2077), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32637] = 19, + [33230] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1687), 1, + anon_sym_EQ, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(2052), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(2054), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2081), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(2042), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1685), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32707] = 19, + anon_sym_EQ_GT, + [33298] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2083), 1, - anon_sym_COMMA, - STATE(469), 1, + STATE(820), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1629), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1627), 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, - [32777] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [33350] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2085), 1, + ACTIONS(2100), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32847] = 19, + [33420] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1741), 1, + anon_sym_EQ, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(2052), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(2054), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2087), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(2042), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1739), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32917] = 18, + anon_sym_EQ_GT, + [33488] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1728), 1, + ACTIONS(2034), 1, anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(2023), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(2027), 1, - anon_sym_DOT, - ACTIONS(2029), 1, - anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(2067), 1, + ACTIONS(2052), 1, anon_sym_AMP_AMP, - ACTIONS(2069), 1, + ACTIONS(2054), 1, anon_sym_PIPE_PIPE, - STATE(792), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + ACTIONS(2094), 1, + anon_sym_EQ_GT, + STATE(820), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2042), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1726), 6, + ACTIONS(2058), 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, - [32985] = 8, + [33558] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(792), 1, - sym_arguments, - ACTIONS(1594), 10, + ACTIONS(1741), 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, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, anon_sym_AMP, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1592), 15, - anon_sym_CARET, + ACTIONS(1938), 1, anon_sym_AMP_AMP, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, + STATE(454), 1, + sym_arguments, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1739), 6, + anon_sym_LBRACE, 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, - [33033] = 19, + [33626] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1815), 1, + anon_sym_EQ, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(2052), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(2054), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2089), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(2042), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1813), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33103] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1096), 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(1098), 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, - [33141] = 18, + anon_sym_EQ_GT, + [33694] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1672), 1, + ACTIONS(1629), 1, anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(2023), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(2027), 1, - anon_sym_DOT, - ACTIONS(2029), 1, - anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(2067), 1, + ACTIONS(2052), 1, anon_sym_AMP_AMP, - ACTIONS(2069), 1, - anon_sym_PIPE_PIPE, - STATE(792), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2042), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1670), 6, + ACTIONS(1627), 7, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_EQ_GT, - [33209] = 19, + [33760] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(2052), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(2054), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2091), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(2042), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1777), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33279] = 19, + anon_sym_EQ_GT, + [33828] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2093), 1, + ACTIONS(1918), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33898] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1629), 1, + anon_sym_EQ, + ACTIONS(2036), 1, + anon_sym_LBRACK, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_AMP, + ACTIONS(2050), 1, + anon_sym_PIPE, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, + sym_arguments, + ACTIONS(2042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(2044), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1627), 8, + 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, - [33349] = 10, + anon_sym_EQ_GT, + [33962] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_AMP, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(820), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2015), 3, + ACTIONS(2056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 5, + ACTIONS(1629), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1627), 12, + 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [34020] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2036), 1, + anon_sym_LBRACK, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, + sym_arguments, + ACTIONS(1659), 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(1614), 15, + ACTIONS(1657), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56258,146 +57638,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [33401] = 19, + [34068] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2102), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33471] = 17, + [34138] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1616), 1, - anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(2023), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(2050), 1, + anon_sym_PIPE, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - ACTIONS(2065), 1, - anon_sym_PIPE, - ACTIONS(2067), 1, - anon_sym_AMP_AMP, - STATE(792), 1, + STATE(820), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, + ACTIONS(1629), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(2038), 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(1614), 7, + ACTIONS(1627), 12, + 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_EQ_GT, - [33537] = 16, + [34198] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1616), 1, - anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - STATE(792), 1, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2104), 1, + anon_sym_RBRACK, + STATE(454), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1614), 8, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [34268] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2036), 1, + anon_sym_LBRACK, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, + sym_arguments, + ACTIONS(2044), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1629), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1627), 13, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56405,183 +57824,297 @@ static const uint16_t ts_small_parse_table[] = { 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, - [33601] = 19, + [34322] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2095), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2106), 1, + anon_sym_RBRACK, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33671] = 19, + [34392] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2097), 1, - anon_sym_COMMA, - STATE(469), 1, + ACTIONS(2108), 1, + anon_sym_RBRACK, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33741] = 11, + [34462] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, + anon_sym_AMP_AMP, + ACTIONS(1940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2064), 1, + anon_sym_LBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2015), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1944), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [34532] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1614), 13, - anon_sym_CARET, + ACTIONS(1701), 1, anon_sym_AMP_AMP, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2110), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + [34602] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2112), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - [33795] = 12, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [34672] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(820), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2015), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 4, + ACTIONS(1629), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(1614), 13, + ACTIONS(1627), 13, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56595,24 +58128,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [33851] = 9, + [34728] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1243), 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(1245), 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, + [34766] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(820), 1, sym_arguments, - ACTIONS(2015), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 7, + ACTIONS(1629), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56620,7 +58188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 15, + ACTIONS(1627), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56636,345 +58204,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [33901] = 19, + [34816] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2099), 1, - anon_sym_RBRACK, - STATE(469), 1, + ACTIONS(2114), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33971] = 14, + [34886] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - STATE(792), 1, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2116), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1616), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1614), 12, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 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, - [34031] = 19, + [34956] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1935), 1, - anon_sym_EQ, - ACTIONS(1943), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(2079), 1, - anon_sym_LBRACE, - STATE(469), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2118), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1939), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1955), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34101] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1911), 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(1913), 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, - [34139] = 19, + [35026] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2031), 1, - anon_sym_EQ_GT, - ACTIONS(2065), 1, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(2067), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(2069), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(2075), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(792), 1, + ACTIONS(2120), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2077), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34209] = 18, + [35096] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(2067), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(2069), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - STATE(792), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2122), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1694), 6, + ACTIONS(1827), 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, - [34277] = 19, + [35166] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2101), 1, + ACTIONS(2124), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34347] = 3, + [35236] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1644), 10, + ACTIONS(1775), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56985,7 +58524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1642), 19, + ACTIONS(1773), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57005,10 +58544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34384] = 3, + [35273] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1788), 10, + ACTIONS(554), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57019,7 +58558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1786), 19, + ACTIONS(552), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57039,10 +58578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34421] = 3, + [35310] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1684), 10, + ACTIONS(1731), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57053,7 +58592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1682), 19, + ACTIONS(1729), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57073,10 +58612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34458] = 3, + [35347] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(519), 10, + ACTIONS(1667), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57087,7 +58626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(517), 19, + ACTIONS(1665), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57107,10 +58646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34495] = 3, + [35384] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1736), 10, + ACTIONS(1771), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57121,7 +58660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1734), 19, + ACTIONS(1769), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57141,10 +58680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34532] = 3, + [35421] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(523), 10, + ACTIONS(1735), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57155,7 +58694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(521), 19, + ACTIONS(1733), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57175,10 +58714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34569] = 3, + [35458] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1732), 10, + ACTIONS(514), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57189,7 +58728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1730), 19, + ACTIONS(512), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57209,10 +58748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34606] = 3, + [35495] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(511), 10, + ACTIONS(1803), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57223,7 +58762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(509), 19, + ACTIONS(1801), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57243,10 +58782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34643] = 3, + [35532] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1704), 10, + ACTIONS(534), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57257,7 +58796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1702), 19, + ACTIONS(532), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57277,10 +58816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34680] = 3, + [35569] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1712), 10, + ACTIONS(522), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57291,7 +58830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1710), 19, + ACTIONS(520), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57311,10 +58850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34717] = 3, + [35606] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(472), 10, + ACTIONS(479), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57325,7 +58864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(470), 19, + ACTIONS(477), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57345,10 +58884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34754] = 3, + [35643] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(484), 10, + ACTIONS(530), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57359,7 +58898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(482), 19, + ACTIONS(528), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57379,10 +58918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34791] = 3, + [35680] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(507), 10, + ACTIONS(495), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57393,7 +58932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(505), 19, + ACTIONS(493), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57413,10 +58952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34828] = 3, + [35717] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1758), 10, + ACTIONS(1723), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57427,7 +58966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1756), 19, + ACTIONS(1721), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57447,10 +58986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34865] = 3, + [35754] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1776), 10, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57461,7 +59000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1774), 19, + ACTIONS(594), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57481,10 +59020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34902] = 3, + [35791] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1692), 10, + ACTIONS(518), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57495,7 +59034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 19, + ACTIONS(516), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57515,53 +59054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34939] = 12, + [35828] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_RBRACE, - ACTIONS(2107), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - anon_sym_COLON_COLON, - ACTIONS(2111), 1, - anon_sym_STAR, - ACTIONS(2115), 1, - anon_sym_default, - ACTIONS(2117), 1, - sym_identifier, - STATE(1005), 1, - sym_scoped_identifier, - STATE(1518), 1, - sym_generic_type_with_turbofish, - STATE(1281), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(2113), 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, - [34994] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1660), 10, + ACTIONS(1679), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57572,7 +59068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1658), 19, + ACTIONS(1677), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57592,44 +59088,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35031] = 3, + [35865] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2119), 7, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, + ACTIONS(1719), 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, - 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, - [35068] = 3, + ACTIONS(1717), 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, + [35902] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1708), 10, + ACTIONS(1715), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57640,7 +59136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1706), 19, + ACTIONS(1713), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57660,10 +59156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35105] = 3, + [35939] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1700), 10, + ACTIONS(1663), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57674,7 +59170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1698), 19, + ACTIONS(1661), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57694,10 +59190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35142] = 3, + [35976] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(515), 10, + ACTIONS(1683), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57708,7 +59204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(513), 19, + ACTIONS(1681), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57728,10 +59224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35179] = 3, + [36013] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1796), 10, + ACTIONS(1671), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57742,7 +59238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1794), 19, + ACTIONS(1669), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57762,10 +59258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35216] = 3, + [36050] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1784), 10, + ACTIONS(1799), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57776,7 +59272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1782), 19, + ACTIONS(1797), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57796,10 +59292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35253] = 3, + [36087] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1744), 10, + ACTIONS(1795), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57810,7 +59306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1742), 19, + ACTIONS(1793), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57830,10 +59326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35290] = 3, + [36124] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(496), 10, + ACTIONS(1621), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57844,7 +59340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(494), 19, + ACTIONS(1619), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57864,10 +59360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35327] = 3, + [36161] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1753), 10, + ACTIONS(1745), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57878,7 +59374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1750), 19, + ACTIONS(1743), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57898,10 +59394,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35364] = 3, + [36198] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2126), 1, + anon_sym_LBRACE, + ACTIONS(2128), 1, + anon_sym_RBRACE, + ACTIONS(2130), 1, + anon_sym_COMMA, + ACTIONS(2132), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_STAR, + ACTIONS(2138), 1, + anon_sym_default, + ACTIONS(2140), 1, + sym_identifier, + STATE(1042), 1, + sym_scoped_identifier, + STATE(1548), 1, + sym_generic_type_with_turbofish, + STATE(1281), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2136), 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, + [36253] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1640), 10, + ACTIONS(1787), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57912,7 +59451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1638), 19, + ACTIONS(1785), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57932,10 +59471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35401] = 3, + [36290] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1762), 10, + ACTIONS(558), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57946,7 +59485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1760), 19, + ACTIONS(556), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57966,10 +59505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35438] = 3, + [36327] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1724), 10, + ACTIONS(550), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57980,7 +59519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1722), 19, + ACTIONS(548), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58000,10 +59539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35475] = 3, + [36364] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(535), 10, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58014,7 +59553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(533), 19, + ACTIONS(594), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58034,10 +59573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35512] = 3, + [36401] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1716), 10, + ACTIONS(566), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58048,7 +59587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1714), 19, + ACTIONS(564), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58068,10 +59607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35549] = 3, + [36438] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1572), 10, + ACTIONS(1750), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58082,7 +59621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 19, + ACTIONS(1747), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58102,10 +59641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35586] = 3, + [36475] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(579), 10, + ACTIONS(1675), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58116,7 +59655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 19, + ACTIONS(1673), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58136,10 +59675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35623] = 3, + [36512] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1792), 10, + ACTIONS(1759), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58150,7 +59689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1790), 19, + ACTIONS(1757), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58170,10 +59709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35660] = 3, + [36549] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1740), 10, + ACTIONS(1755), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58184,7 +59723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1738), 19, + ACTIONS(1753), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58204,10 +59743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35697] = 3, + [36586] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1748), 10, + ACTIONS(1819), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58218,7 +59757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1746), 19, + ACTIONS(1817), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58238,10 +59777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35734] = 3, + [36623] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(547), 10, + ACTIONS(1711), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58252,7 +59791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(545), 19, + ACTIONS(1709), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58272,10 +59811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35771] = 3, + [36660] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(579), 10, + ACTIONS(1763), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58286,7 +59825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 19, + ACTIONS(1761), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58306,10 +59845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35808] = 3, + [36697] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(539), 10, + ACTIONS(1811), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58320,7 +59859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(537), 19, + ACTIONS(1809), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58340,10 +59879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35845] = 3, + [36734] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1720), 10, + ACTIONS(1767), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58354,7 +59893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1718), 19, + ACTIONS(1765), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58374,10 +59913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35882] = 3, + [36771] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1688), 10, + ACTIONS(1807), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58388,7 +59927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1686), 19, + ACTIONS(1805), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58408,10 +59947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35919] = 3, + [36808] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1664), 10, + ACTIONS(1783), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58422,7 +59961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1662), 19, + ACTIONS(1781), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58442,10 +59981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35956] = 3, + [36845] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1668), 10, + ACTIONS(1727), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58456,7 +59995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1666), 19, + ACTIONS(1725), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58476,10 +60015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35993] = 3, + [36882] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1780), 10, + ACTIONS(499), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58490,7 +60029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1778), 19, + ACTIONS(497), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58510,10 +60049,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36030] = 3, + [36919] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2142), 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(2144), 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, + [36956] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1766), 10, + ACTIONS(1791), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58524,7 +60097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1764), 19, + ACTIONS(1789), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58544,32 +60117,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36067] = 11, + [36993] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2115), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2140), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2146), 1, anon_sym_RBRACE, - STATE(1005), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1401), 5, + STATE(1417), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58585,32 +60158,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36119] = 11, + [37045] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2115), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2140), 1, sym_identifier, - ACTIONS(2125), 1, + ACTIONS(2148), 1, anon_sym_RBRACE, - STATE(1005), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1401), 5, + STATE(1417), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58626,30 +60199,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36171] = 10, + [37097] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2115), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(1005), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1401), 5, + STATE(1613), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58665,30 +60238,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36220] = 10, + [37146] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2115), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(1005), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1522), 5, + STATE(1495), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58704,30 +60277,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36269] = 10, + [37195] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2115), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(1005), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1575), 5, + STATE(1417), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58743,30 +60316,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36318] = 10, + [37244] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2115), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(1005), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1572), 5, + STATE(1550), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58782,30 +60355,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36367] = 10, + [37293] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2115), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(1005), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1519), 5, + STATE(1593), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58821,19 +60394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36416] = 5, + [37342] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2127), 1, + ACTIONS(2150), 1, anon_sym_POUND, - STATE(821), 2, + STATE(837), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - ACTIONS(617), 3, + ACTIONS(632), 3, anon_sym_COLON_COLON, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1488), 19, + ACTIONS(1491), 19, anon_sym_impl, anon_sym_const, anon_sym_u8, @@ -58853,15 +60426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_identifier, sym_super, - [36453] = 3, + [37379] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 4, + ACTIONS(1243), 4, anon_sym_POUND, anon_sym_COLON_COLON, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1218), 19, + ACTIONS(1245), 19, anon_sym_impl, anon_sym_const, anon_sym_u8, @@ -58881,24 +60454,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_identifier, sym_super, - [36484] = 9, + [37410] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1853), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(2130), 1, + ACTIONS(2153), 1, sym_identifier, - STATE(1258), 1, + STATE(1277), 1, sym_generic_type, - STATE(1260), 1, + STATE(1278), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1855), 15, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58914,22 +60487,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36526] = 8, + [37452] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(968), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1484), 1, + STATE(1531), 1, sym_attribute, - STATE(1533), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58945,22 +60518,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36565] = 8, + [37491] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(968), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1523), 1, + STATE(1517), 1, sym_attribute, - STATE(1533), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58976,22 +60549,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36604] = 8, + [37530] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(968), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1505), 1, - sym_attribute, - STATE(1533), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + STATE(1606), 1, + sym_attribute, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59007,22 +60580,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36643] = 8, + [37569] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(968), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1533), 1, - sym_generic_type_with_turbofish, - STATE(1592), 1, + STATE(1502), 1, sym_attribute, - ACTIONS(2132), 15, + STATE(1547), 1, + sym_generic_type_with_turbofish, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59038,22 +60611,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36682] = 8, + [37608] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(968), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1507), 1, + STATE(1491), 1, sym_attribute, - STATE(1533), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59069,22 +60642,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36721] = 8, + [37647] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(968), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1479), 1, + STATE(1541), 1, sym_attribute, - STATE(1533), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59100,22 +60673,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36760] = 8, + [37686] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(968), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1533), 1, - sym_generic_type_with_turbofish, - STATE(1536), 1, + STATE(1506), 1, sym_attribute, - ACTIONS(2132), 15, + STATE(1547), 1, + sym_generic_type_with_turbofish, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59131,22 +60704,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36799] = 8, + [37725] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(968), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1475), 1, + STATE(1521), 1, sym_attribute, - STATE(1533), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59162,22 +60735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36838] = 8, + [37764] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(968), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1472), 1, + STATE(1493), 1, sym_attribute, - STATE(1533), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59193,22 +60766,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36877] = 8, + [37803] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(968), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1492), 1, + STATE(1530), 1, sym_attribute, - STATE(1533), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59224,22 +60797,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36916] = 8, + [37842] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(968), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1502), 1, + STATE(1516), 1, sym_attribute, - STATE(1533), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59255,20 +60828,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36955] = 7, + [37881] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2138), 1, + ACTIONS(2161), 1, anon_sym_COLON_COLON, - ACTIONS(2142), 1, + ACTIONS(2165), 1, anon_sym_default, - ACTIONS(2144), 1, + ACTIONS(2167), 1, sym_identifier, - STATE(1338), 1, + STATE(1390), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - ACTIONS(2140), 15, + ACTIONS(2163), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59284,20 +60857,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36991] = 7, + [37917] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2138), 1, + ACTIONS(2161), 1, anon_sym_COLON_COLON, - ACTIONS(2148), 1, + ACTIONS(2171), 1, anon_sym_default, - ACTIONS(2150), 1, + ACTIONS(2173), 1, sym_identifier, - STATE(1375), 1, + STATE(1406), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - ACTIONS(2146), 15, + ACTIONS(2169), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59313,17 +60886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [37027] = 4, + [37953] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 1, + ACTIONS(1579), 1, anon_sym_COLON, - ACTIONS(1542), 4, + ACTIONS(1577), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2152), 11, + ACTIONS(2175), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59335,17 +60908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37053] = 4, + [37979] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 1, + ACTIONS(1561), 1, anon_sym_COLON, - ACTIONS(1524), 4, + ACTIONS(1559), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2154), 11, + ACTIONS(2177), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59357,17 +60930,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37079] = 4, + [38005] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 1, + ACTIONS(1575), 1, anon_sym_COLON, - ACTIONS(1554), 4, + ACTIONS(1573), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2156), 11, + ACTIONS(2179), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59379,17 +60952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37105] = 4, + [38031] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 1, + ACTIONS(1565), 1, anon_sym_COLON, - ACTIONS(1528), 4, + ACTIONS(1563), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2158), 11, + ACTIONS(2181), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59401,24 +60974,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37131] = 9, + [38057] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2160), 1, + ACTIONS(2183), 1, anon_sym_LBRACE, - ACTIONS(2164), 1, + ACTIONS(2187), 1, anon_sym_COLON, - ACTIONS(2166), 1, + ACTIONS(2189), 1, anon_sym_BANG, - ACTIONS(2168), 1, + ACTIONS(2191), 1, anon_sym_COLON_COLON, - ACTIONS(2170), 1, + ACTIONS(2193), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - STATE(865), 1, + STATE(885), 1, sym_type_arguments, - ACTIONS(2162), 7, + ACTIONS(2185), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -59426,15 +60999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [37165] = 4, + anon_sym_in, + [38092] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 1, + ACTIONS(1565), 1, anon_sym_COLON, - ACTIONS(2156), 2, + ACTIONS(2181), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1554), 10, + ACTIONS(1563), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -59445,12 +61019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37188] = 3, + anon_sym_in, + [38116] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 1, + ACTIONS(1579), 1, anon_sym_COLON, - ACTIONS(1554), 12, + ACTIONS(1577), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59463,15 +61038,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37209] = 4, + anon_sym_in, + [38138] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 1, + ACTIONS(1575), 1, anon_sym_COLON, - ACTIONS(2154), 2, + ACTIONS(2179), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1524), 10, + ACTIONS(1573), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -59482,15 +61058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37232] = 4, + anon_sym_in, + [38162] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 1, + ACTIONS(1579), 1, anon_sym_COLON, - ACTIONS(2152), 2, + ACTIONS(2175), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1542), 10, + ACTIONS(1577), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -59501,49 +61078,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37255] = 3, + anon_sym_in, + [38186] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 1, + ACTIONS(1561), 1, anon_sym_COLON, - ACTIONS(1528), 12, + ACTIONS(2177), 2, anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1559), 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, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37276] = 4, + anon_sym_in, + [38210] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 1, + ACTIONS(1565), 1, anon_sym_COLON, - ACTIONS(2158), 2, + ACTIONS(1563), 13, anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(1528), 10, 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_RPAREN, anon_sym_PIPE, - [37299] = 3, + anon_sym_in, + [38232] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 1, + ACTIONS(1561), 1, anon_sym_COLON, - ACTIONS(1542), 12, + ACTIONS(1559), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59556,12 +61136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37320] = 3, + anon_sym_in, + [38254] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 1, + ACTIONS(1575), 1, anon_sym_COLON, - ACTIONS(1524), 12, + ACTIONS(1573), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59574,26 +61155,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37341] = 2, + anon_sym_in, + [38276] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1568), 12, + ACTIONS(508), 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, - [37359] = 2, + anon_sym_in, + [38295] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(478), 12, + ACTIONS(489), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59606,31 +61189,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [37377] = 7, + anon_sym_in, + [38314] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2176), 1, - anon_sym_COLON, - ACTIONS(2178), 1, - anon_sym_BANG, - ACTIONS(2180), 1, - anon_sym_COLON_COLON, - STATE(861), 1, - sym_type_arguments, - ACTIONS(2174), 7, + ACTIONS(544), 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, - [37405] = 2, + anon_sym_nopanic, + anon_sym_in, + [38333] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(486), 12, + ACTIONS(524), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59643,53 +61223,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [37423] = 2, + anon_sym_in, + [38352] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2199), 1, + anon_sym_COLON, + ACTIONS(2201), 1, + anon_sym_BANG, + ACTIONS(2203), 1, + anon_sym_COLON_COLON, + STATE(879), 1, + sym_type_arguments, + ACTIONS(2197), 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, + [38381] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(529), 12, + ACTIONS(1639), 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_LPAREN, anon_sym_RPAREN, anon_sym_GT, - anon_sym_PIPE, anon_sym_nopanic, - [37441] = 13, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2182), 1, - anon_sym_impl, - ACTIONS(2184), 1, - anon_sym_trait, - ACTIONS(2186), 1, - anon_sym_type, - ACTIONS(2188), 1, - anon_sym_const, - ACTIONS(2190), 1, - anon_sym_mod, - ACTIONS(2192), 1, - anon_sym_struct, - ACTIONS(2194), 1, - anon_sym_enum, - ACTIONS(2196), 1, - anon_sym_fn, - ACTIONS(2198), 1, - anon_sym_use, - ACTIONS(2200), 1, - anon_sym_extern, - STATE(1185), 1, - sym_function, - STATE(1198), 1, - sym_extern, - [37481] = 2, + [38399] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1634), 12, + ACTIONS(1617), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59702,53 +61278,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37499] = 2, + [38417] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(553), 12, + ACTIONS(2205), 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_LPAREN, anon_sym_RPAREN, anon_sym_GT, - anon_sym_PIPE, anon_sym_nopanic, - [37517] = 13, + [38435] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_COLON_COLON, + ACTIONS(2185), 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, + [38461] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2209), 1, + anon_sym_impl, + ACTIONS(2211), 1, + anon_sym_trait, + ACTIONS(2213), 1, + anon_sym_type, + ACTIONS(2215), 1, + anon_sym_const, + ACTIONS(2217), 1, + anon_sym_mod, + ACTIONS(2219), 1, + anon_sym_struct, + ACTIONS(2221), 1, + anon_sym_enum, + ACTIONS(2223), 1, + anon_sym_fn, + ACTIONS(2225), 1, + anon_sym_use, + ACTIONS(2227), 1, + anon_sym_extern, + STATE(1226), 1, + sym_function, + STATE(1227), 1, + sym_extern, + [38501] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2196), 1, + ACTIONS(2223), 1, anon_sym_fn, - ACTIONS(2200), 1, + ACTIONS(2227), 1, anon_sym_extern, - ACTIONS(2202), 1, + ACTIONS(2229), 1, anon_sym_impl, - ACTIONS(2204), 1, + ACTIONS(2231), 1, anon_sym_trait, - ACTIONS(2206), 1, + ACTIONS(2233), 1, anon_sym_type, - ACTIONS(2208), 1, + ACTIONS(2235), 1, anon_sym_const, - ACTIONS(2210), 1, + ACTIONS(2237), 1, anon_sym_mod, - ACTIONS(2212), 1, + ACTIONS(2239), 1, anon_sym_struct, - ACTIONS(2214), 1, + ACTIONS(2241), 1, anon_sym_enum, - ACTIONS(2216), 1, + ACTIONS(2243), 1, anon_sym_use, - STATE(1179), 1, + STATE(1212), 1, sym_extern, - STATE(1244), 1, + STATE(1255), 1, sym_function, - [37557] = 2, + [38541] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2218), 12, + ACTIONS(2247), 1, + anon_sym_COLON_COLON, + ACTIONS(2245), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59756,32 +61381,29 @@ 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_nopanic, - [37575] = 4, + [38560] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2220), 1, - anon_sym_RBRACK, - ACTIONS(2152), 3, + ACTIONS(2251), 1, + anon_sym_COLON_COLON, + ACTIONS(2249), 10, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LT2, - ACTIONS(1542), 7, - anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [37596] = 2, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [38579] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2223), 11, + ACTIONS(2253), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59793,12 +61415,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37613] = 3, + [38596] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2227), 1, + ACTIONS(2255), 1, + anon_sym_RBRACK, + ACTIONS(2177), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1559), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [38617] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2258), 1, anon_sym_COLON_COLON, - ACTIONS(2225), 10, + ACTIONS(2245), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59809,12 +61448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37632] = 3, + [38636] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2231), 1, + ACTIONS(2262), 1, anon_sym_LPAREN, - ACTIONS(2229), 10, + ACTIONS(2260), 10, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -59825,32 +61464,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_use, anon_sym_extern, - [37651] = 9, + [38655] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2233), 1, + ACTIONS(2264), 1, anon_sym_RBRACE, - ACTIONS(2235), 1, + ACTIONS(2266), 1, anon_sym_POUND, - ACTIONS(2237), 1, + ACTIONS(2268), 1, anon_sym_COMMA, - ACTIONS(2239), 1, + ACTIONS(2270), 1, anon_sym_DOT_DOT, - ACTIONS(2241), 1, + ACTIONS(2272), 1, sym_numeric_literal, - ACTIONS(2243), 1, + ACTIONS(2274), 1, sym_identifier, - STATE(1006), 2, + STATE(1053), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1283), 3, + STATE(1350), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [37682] = 2, + [38686] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2245), 11, + ACTIONS(2181), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59858,39 +61497,35 @@ 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_nopanic, - [37699] = 6, + anon_sym_LT2, + [38703] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2164), 1, - anon_sym_COLON, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2247), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 7, + ACTIONS(2276), 11, + 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_PIPE, - [37724] = 4, + anon_sym_GT, + anon_sym_nopanic, + [38720] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2249), 1, + ACTIONS(2278), 1, anon_sym_RBRACK, - ACTIONS(2154), 3, + ACTIONS(2181), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1524), 7, + ACTIONS(1563), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -59898,26 +61533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [37745] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2254), 1, - anon_sym_COLON_COLON, - ACTIONS(2252), 10, - 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_nopanic, - [37764] = 2, + [38741] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2156), 11, + ACTIONS(2281), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59925,58 +61544,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_nopanic, - anon_sym_LT2, - [37781] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2235), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_DOT_DOT, - ACTIONS(2241), 1, - sym_numeric_literal, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2256), 1, - anon_sym_RBRACE, - ACTIONS(2258), 1, - anon_sym_COMMA, - STATE(1006), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1319), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [37812] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2260), 1, anon_sym_COLON_COLON, - ACTIONS(2225), 10, - 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_nopanic, - [37831] = 4, + [38758] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2262), 1, + ACTIONS(2283), 1, anon_sym_RBRACK, - ACTIONS(2156), 3, + ACTIONS(2179), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1554), 7, + ACTIONS(1573), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -59984,16 +61565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [37852] = 4, + [38779] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2265), 1, + ACTIONS(2286), 1, anon_sym_RBRACK, - ACTIONS(2158), 3, + ACTIONS(2175), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1528), 7, + ACTIONS(1577), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -60001,53 +61582,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [37873] = 2, + [38800] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2268), 11, - anon_sym_LBRACE, + ACTIONS(2266), 1, + anon_sym_POUND, + ACTIONS(2270), 1, + anon_sym_DOT_DOT, + ACTIONS(2272), 1, + sym_numeric_literal, + ACTIONS(2274), 1, + sym_identifier, + ACTIONS(2289), 1, + anon_sym_RBRACE, + ACTIONS(2291), 1, + anon_sym_COMMA, + STATE(1053), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1294), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [38831] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(493), 10, 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_nopanic, - [37890] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2270), 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, - [37906] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2272), 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, - [37922] = 2, + anon_sym_PIPE, + anon_sym_in, + [38847] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2274), 10, + ACTIONS(2245), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60058,66 +61632,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37938] = 8, + [38863] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, + ACTIONS(2266), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(2270), 1, anon_sym_DOT_DOT, - ACTIONS(2241), 1, + ACTIONS(2272), 1, sym_numeric_literal, - ACTIONS(2243), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2293), 1, anon_sym_RBRACE, - STATE(1006), 2, + STATE(1053), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1402), 3, + STATE(1352), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [37966] = 2, + [38891] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2278), 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, - [37982] = 10, + ACTIONS(2183), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2297), 1, + anon_sym_COLON_COLON, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2295), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38923] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2280), 1, + ACTIONS(2299), 1, anon_sym_RBRACE, - ACTIONS(2282), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2284), 1, + ACTIONS(2303), 1, anon_sym_COMMA, - ACTIONS(2286), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2288), 1, + ACTIONS(2307), 1, sym_identifier, - STATE(1307), 1, + STATE(1196), 1, sym_enum_variant, - STATE(1443), 1, + STATE(1405), 1, sym_field_declaration, - STATE(1500), 1, + STATE(1584), 1, sym_visibility_modifier, - STATE(920), 2, + STATE(969), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38014] = 2, + [38955] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2183), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2295), 1, + anon_sym_SEMI, + ACTIONS(2309), 1, + anon_sym_RBRACK, + ACTIONS(2312), 1, + anon_sym_COLON_COLON, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2185), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [38987] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, + anon_sym_LT2, + STATE(887), 1, + sym_type_arguments, + ACTIONS(2245), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_nopanic, + [39007] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2314), 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, + [39023] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2225), 10, + ACTIONS(2316), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60128,28 +61762,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38030] = 6, + [39039] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2292), 1, - anon_sym_BANG, - ACTIONS(2294), 1, + ACTIONS(2297), 1, anon_sym_COLON_COLON, - STATE(865), 1, + ACTIONS(2318), 1, + anon_sym_BANG, + STATE(885), 1, sym_type_arguments, - ACTIONS(2290), 6, + ACTIONS(2295), 6, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - [38054] = 2, + [39063] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2296), 10, + ACTIONS(2320), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60160,46 +61794,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38070] = 2, + [39079] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2298), 10, - anon_sym_LBRACE, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2322), 1, + anon_sym_COLON_COLON, + ACTIONS(2185), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [39099] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(481), 10, + 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_nopanic, - [38086] = 10, + anon_sym_PIPE, + anon_sym_in, + [39115] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2266), 1, anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, + ACTIONS(2270), 1, + anon_sym_DOT_DOT, + ACTIONS(2272), 1, + sym_numeric_literal, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(2324), 1, anon_sym_RBRACE, - ACTIONS(2302), 1, - anon_sym_COMMA, - STATE(1181), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(913), 2, + STATE(1053), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38118] = 2, + STATE(1352), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [39143] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2304), 10, + ACTIONS(2326), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60210,30 +61858,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38134] = 8, + [39159] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_DOT_DOT, - ACTIONS(2241), 1, - sym_numeric_literal, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2306), 1, + ACTIONS(477), 10, anon_sym_RBRACE, - STATE(1006), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1402), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [38162] = 2, + 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, + [39175] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 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, + [39191] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2330), 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, + [39207] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 10, + ACTIONS(2332), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60244,32 +61914,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38178] = 10, + [39223] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2160), 1, + ACTIONS(2334), 10, anon_sym_LBRACE, - ACTIONS(2162), 1, - anon_sym_PIPE, - ACTIONS(2164), 1, - anon_sym_COLON, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2294), 1, - anon_sym_COLON_COLON, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2290), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_implicits, anon_sym_RPAREN, - [38210] = 2, + anon_sym_GT, + anon_sym_nopanic, + [39239] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2310), 10, + ACTIONS(2336), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60280,174 +61942,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38226] = 8, + [39255] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2307), 1, + sym_identifier, + ACTIONS(2338), 1, + anon_sym_RBRACE, + ACTIONS(2340), 1, + anon_sym_COMMA, + STATE(1322), 1, + sym_enum_variant, + STATE(1405), 1, + sym_field_declaration, + STATE(1584), 1, + sym_visibility_modifier, + STATE(960), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39287] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2266), 1, + anon_sym_POUND, + ACTIONS(2270), 1, anon_sym_DOT_DOT, - ACTIONS(2241), 1, + ACTIONS(2272), 1, sym_numeric_literal, - ACTIONS(2243), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(2312), 1, + ACTIONS(2342), 1, anon_sym_RBRACE, - STATE(1006), 2, + STATE(1053), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1402), 3, + STATE(1352), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [38254] = 8, + [39315] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, + ACTIONS(2266), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(2270), 1, anon_sym_DOT_DOT, - ACTIONS(2241), 1, + ACTIONS(2272), 1, sym_numeric_literal, - ACTIONS(2243), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(2314), 1, + ACTIONS(2344), 1, anon_sym_RBRACE, - STATE(1006), 2, + STATE(1053), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1402), 3, + STATE(1352), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [38282] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2160), 1, - anon_sym_LBRACE, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2290), 1, - anon_sym_SEMI, - ACTIONS(2316), 1, - anon_sym_RBRACK, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2162), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [38314] = 4, + [39343] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - STATE(874), 1, - sym_type_arguments, - ACTIONS(2225), 8, + ACTIONS(2346), 10, 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_nopanic, - [38334] = 2, + [39359] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2321), 10, - anon_sym_LBRACE, + ACTIONS(2348), 9, 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_nopanic, - [38350] = 8, + anon_sym_PIPE, + anon_sym_in, + [39374] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2323), 1, + ACTIONS(2350), 1, anon_sym_LBRACE, - ACTIONS(2325), 1, + ACTIONS(2352), 1, anon_sym_BANG, - ACTIONS(2327), 1, + ACTIONS(2354), 1, anon_sym_COLON_COLON, - ACTIONS(2329), 1, + ACTIONS(2356), 1, anon_sym_LPAREN, - STATE(865), 1, + STATE(885), 1, sym_type_arguments, - ACTIONS(2162), 3, + ACTIONS(2185), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [38377] = 9, + [39401] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2160), 1, - anon_sym_LBRACE, - ACTIONS(2162), 1, - anon_sym_PIPE, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2331), 1, - anon_sym_COLON_COLON, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2316), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [38406] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(494), 9, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2307), 1, + sym_identifier, + ACTIONS(2358), 1, 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, - [38421] = 9, + STATE(1405), 1, + sym_field_declaration, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, + sym_visibility_modifier, + STATE(958), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39430] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2360), 1, anon_sym_RBRACE, - ACTIONS(2335), 1, + ACTIONS(2362), 1, anon_sym_COMMA, - ACTIONS(2337), 1, + ACTIONS(2364), 1, sym_identifier, - STATE(1306), 1, + STATE(1320), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1565), 1, sym_visibility_modifier, - STATE(961), 2, + STATE(976), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38450] = 2, + [39459] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(470), 9, + ACTIONS(2366), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60455,149 +62101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT, anon_sym_PIPE, - [38465] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2294), 1, - anon_sym_COLON_COLON, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2290), 5, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_implicits, - anon_sym_nopanic, - [38488] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - ACTIONS(2339), 1, - anon_sym_RBRACE, - STATE(1350), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(947), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38517] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - ACTIONS(2341), 1, - anon_sym_RBRACE, - STATE(1350), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(947), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38546] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - ACTIONS(2343), 1, - anon_sym_RBRACE, - STATE(1350), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(947), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38575] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2337), 1, - sym_identifier, - ACTIONS(2345), 1, - anon_sym_RBRACE, - ACTIONS(2347), 1, - anon_sym_COMMA, - STATE(1188), 1, - sym_field_declaration, - STATE(1589), 1, - sym_visibility_modifier, - STATE(971), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38604] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - ACTIONS(2349), 1, - anon_sym_RBRACE, - STATE(1350), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(947), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38633] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - ACTIONS(2351), 1, - anon_sym_RBRACE, - STATE(1350), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(947), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38662] = 2, + anon_sym_in, + [39474] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(474), 9, + ACTIONS(2185), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60605,95 +62114,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - [38677] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2235), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_DOT_DOT, - ACTIONS(2241), 1, - sym_numeric_literal, - ACTIONS(2243), 1, - sym_identifier, - STATE(1006), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1402), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [38702] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2164), 1, - anon_sym_COLON, - ACTIONS(2353), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 7, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, - [38721] = 9, + anon_sym_in, + [39489] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2288), 1, + ACTIONS(2307), 1, sym_identifier, - ACTIONS(2355), 1, + ACTIONS(2368), 1, anon_sym_RBRACE, - STATE(1350), 1, - sym_enum_variant, - STATE(1443), 1, + STATE(1405), 1, sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(947), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38750] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2357), 8, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [38764] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - STATE(1298), 1, + STATE(1481), 1, sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, + STATE(1584), 1, sym_visibility_modifier, - STATE(995), 2, + STATE(958), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38790] = 2, + [39518] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2359), 8, + ACTIONS(2370), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60702,10 +62148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38804] = 2, + anon_sym_in, + [39533] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2361), 8, + ACTIONS(2372), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60714,10 +62161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38818] = 2, + anon_sym_in, + [39548] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2363), 8, + ACTIONS(2374), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60726,10 +62174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38832] = 2, + anon_sym_in, + [39563] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2365), 8, + ACTIONS(2376), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60738,10 +62187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38846] = 2, + anon_sym_in, + [39578] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2367), 8, + ACTIONS(2374), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60750,60 +62200,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38860] = 8, + anon_sym_in, + [39593] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2307), 1, sym_identifier, - ACTIONS(2369), 1, + ACTIONS(2378), 1, anon_sym_RBRACE, - STATE(1359), 1, + STATE(1405), 1, sym_field_declaration, - STATE(1589), 1, - sym_visibility_modifier, - STATE(970), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38886] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - STATE(1301), 1, + STATE(1481), 1, sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, + STATE(1584), 1, sym_visibility_modifier, - STATE(995), 2, + STATE(958), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38912] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2156), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2262), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1554), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - [38930] = 2, + [39622] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 8, + ACTIONS(2380), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60812,10 +62233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38944] = 2, + anon_sym_in, + [39637] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2373), 8, + ACTIONS(2382), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60824,24 +62246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38958] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2154), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2249), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1524), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - [38976] = 2, + anon_sym_in, + [39652] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2375), 8, + ACTIONS(2384), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60850,24 +62259,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38990] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2158), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2265), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1528), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - [39008] = 2, + anon_sym_in, + [39667] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2377), 8, + ACTIONS(2386), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60876,28 +62272,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39022] = 8, + anon_sym_in, + [39682] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2307), 1, sym_identifier, - ACTIONS(2379), 1, + ACTIONS(2388), 1, anon_sym_RBRACE, - STATE(1359), 1, + STATE(1405), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, sym_visibility_modifier, - STATE(970), 2, + STATE(958), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39711] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2266), 1, + anon_sym_POUND, + ACTIONS(2270), 1, + anon_sym_DOT_DOT, + ACTIONS(2272), 1, + sym_numeric_literal, + ACTIONS(2274), 1, + sym_identifier, + STATE(1053), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39048] = 2, + STATE(1352), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [39736] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2381), 8, + ACTIONS(2390), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60906,24 +62323,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39062] = 4, + anon_sym_in, + [39751] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2152), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2220), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1542), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - [39080] = 2, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2307), 1, + sym_identifier, + ACTIONS(2392), 1, + anon_sym_RBRACE, + STATE(1405), 1, + sym_field_declaration, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, + sym_visibility_modifier, + STATE(958), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39780] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2383), 8, + ACTIONS(2394), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60932,10 +62356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39094] = 2, + anon_sym_in, + [39795] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2385), 8, + ACTIONS(2396), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60944,10 +62369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39108] = 2, + anon_sym_in, + [39810] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2387), 8, + ACTIONS(2398), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60956,10 +62382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39122] = 2, + anon_sym_in, + [39825] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2389), 8, + ACTIONS(2400), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60968,10 +62395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39136] = 2, + anon_sym_in, + [39840] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2391), 8, + ACTIONS(2402), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60980,28 +62408,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39150] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2337), 1, - sym_identifier, - ACTIONS(2393), 1, - anon_sym_RBRACE, - STATE(1359), 1, - sym_field_declaration, - STATE(1589), 1, - sym_visibility_modifier, - STATE(970), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39176] = 2, + anon_sym_in, + [39855] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2395), 8, + ACTIONS(2404), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61010,28 +62421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39190] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2337), 1, - sym_identifier, - ACTIONS(2397), 1, - anon_sym_RBRACE, - STATE(1359), 1, - sym_field_declaration, - STATE(1589), 1, - sym_visibility_modifier, - STATE(970), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39216] = 2, + anon_sym_in, + [39870] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2399), 8, + ACTIONS(2406), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61040,70 +62434,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39230] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - STATE(1350), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(947), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39256] = 2, + anon_sym_in, + [39885] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2401), 8, - anon_sym_RBRACE, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2297), 1, + anon_sym_COLON_COLON, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2295), 5, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [39270] = 2, + anon_sym_implicits, + anon_sym_nopanic, + [39908] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2403), 8, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, + ACTIONS(2183), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2408), 1, + anon_sym_COLON_COLON, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2309), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - [39284] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2337), 1, - sym_identifier, - ACTIONS(2405), 1, - anon_sym_RBRACE, - STATE(1359), 1, - sym_field_declaration, - STATE(1589), 1, - sym_visibility_modifier, - STATE(970), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39310] = 2, + [39937] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2407), 8, + ACTIONS(2410), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61112,10 +62484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39324] = 2, + anon_sym_in, + [39952] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2409), 8, + ACTIONS(2412), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61124,10 +62497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39338] = 2, + anon_sym_in, + [39967] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2409), 8, + ACTIONS(2414), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61136,62 +62510,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39352] = 8, + anon_sym_in, + [39982] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2288), 1, + ACTIONS(2364), 1, sym_identifier, - STATE(1418), 1, - sym_enum_variant, - STATE(1443), 1, + ACTIONS(2416), 1, + anon_sym_RBRACE, + ACTIONS(2418), 1, + anon_sym_COMMA, + STATE(1204), 1, sym_field_declaration, - STATE(1500), 1, + STATE(1565), 1, sym_visibility_modifier, - STATE(995), 2, + STATE(978), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39378] = 8, + [40011] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2307), 1, sym_identifier, - ACTIONS(2411), 1, + ACTIONS(2420), 1, anon_sym_RBRACE, - STATE(1359), 1, + STATE(1405), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, sym_visibility_modifier, - STATE(970), 2, + STATE(958), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39404] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2413), 1, - anon_sym_COLON_COLON, - ACTIONS(2415), 1, - anon_sym_LT2, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2290), 4, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [39426] = 2, + [40040] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2417), 8, + ACTIONS(2422), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61200,10 +62563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39440] = 2, + anon_sym_in, + [40055] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2419), 8, + ACTIONS(2424), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61212,10 +62576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39454] = 2, + anon_sym_in, + [40070] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2421), 8, + ACTIONS(2426), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61224,10 +62589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39468] = 2, + anon_sym_in, + [40085] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 8, + ACTIONS(2428), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61236,10 +62602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39482] = 2, + anon_sym_in, + [40100] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2423), 8, + ACTIONS(2430), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61248,10 +62615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39496] = 2, + anon_sym_in, + [40115] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2425), 8, + ACTIONS(2432), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61260,10 +62628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39510] = 2, + anon_sym_in, + [40130] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2427), 8, + ACTIONS(2434), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61272,6879 +62641,7184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39524] = 5, + anon_sym_in, + [40145] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(874), 1, - sym_type_arguments, - ACTIONS(2225), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - [39543] = 8, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2307), 1, + sym_identifier, + STATE(1397), 1, + sym_enum_variant, + STATE(1405), 1, + sym_field_declaration, + STATE(1584), 1, + sym_visibility_modifier, + STATE(1025), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40171] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2431), 1, + ACTIONS(2175), 2, anon_sym_LBRACE, - ACTIONS(2433), 1, - anon_sym_EQ, - ACTIONS(2435), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_RBRACK, - ACTIONS(2439), 1, - anon_sym_COLON_COLON, - ACTIONS(2441), 1, - anon_sym_LPAREN, - STATE(1477), 1, - sym_delim_token_tree, - [39568] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2178), 1, - anon_sym_BANG, - ACTIONS(2443), 1, - anon_sym_COLON_COLON, - STATE(861), 1, - sym_type_arguments, - ACTIONS(2174), 3, + ACTIONS(2286), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - [39589] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2178), 1, + ACTIONS(1577), 4, anon_sym_BANG, - ACTIONS(2445), 1, anon_sym_COLON_COLON, - STATE(861), 1, - sym_type_arguments, - ACTIONS(2174), 3, - anon_sym_RBRACK, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PIPE, - [39610] = 7, + [40189] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2307), 1, sym_identifier, - STATE(1334), 1, + STATE(1318), 1, + sym_enum_variant, + STATE(1405), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1584), 1, sym_visibility_modifier, - STATE(995), 2, + STATE(1025), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39633] = 6, + [40215] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2447), 1, - anon_sym_BANG, - ACTIONS(2449), 1, - anon_sym_COLON_COLON, - STATE(861), 1, - sym_type_arguments, - ACTIONS(2174), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [39654] = 7, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + ACTIONS(2436), 1, + anon_sym_RBRACE, + STATE(1473), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(979), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40241] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2307), 1, sym_identifier, - STATE(1359), 1, + STATE(1405), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, sym_visibility_modifier, - STATE(970), 2, + STATE(958), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39677] = 7, + [40267] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, - anon_sym_LBRACE, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2451), 1, - anon_sym_STAR, - STATE(859), 1, - sym_type_arguments, - STATE(1219), 1, - sym_use_list, - ACTIONS(2453), 2, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, sym_identifier, - sym_super, - [39700] = 8, + ACTIONS(2438), 1, + anon_sym_RBRACE, + STATE(1473), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(979), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40293] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2431), 1, - anon_sym_LBRACE, - ACTIONS(2433), 1, - anon_sym_EQ, - ACTIONS(2435), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_RBRACK, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2455), 1, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2440), 1, anon_sym_COLON_COLON, - STATE(1477), 1, - sym_delim_token_tree, - [39725] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2431), 1, - anon_sym_LBRACE, - ACTIONS(2435), 1, - anon_sym_LBRACK, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2442), 1, + anon_sym_LT2, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2295), 4, + anon_sym_SEMI, anon_sym_EQ, - ACTIONS(2459), 1, - anon_sym_RBRACK, - ACTIONS(2461), 1, - anon_sym_COLON_COLON, - STATE(1478), 1, - sym_delim_token_tree, - [39750] = 7, + anon_sym_COMMA, + anon_sym_GT, + [40315] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2177), 2, anon_sym_LBRACE, - ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2463), 1, - anon_sym_STAR, - STATE(856), 1, - sym_type_arguments, - STATE(1205), 1, - sym_use_list, - ACTIONS(2465), 2, - sym_identifier, - sym_super, - [39773] = 8, + ACTIONS(2255), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1559), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [40333] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2431), 1, - anon_sym_LBRACE, - ACTIONS(2433), 1, - anon_sym_EQ, - ACTIONS(2435), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_RBRACK, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2467), 1, - anon_sym_COLON_COLON, - STATE(1477), 1, - sym_delim_token_tree, - [39798] = 7, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + ACTIONS(2444), 1, + anon_sym_RBRACE, + STATE(1473), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(979), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40359] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2181), 2, anon_sym_LBRACE, - ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2463), 1, - anon_sym_STAR, - STATE(850), 1, - sym_type_arguments, - STATE(1205), 1, - sym_use_list, - ACTIONS(2465), 2, - sym_identifier, - sym_super, - [39821] = 7, + ACTIONS(2278), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1563), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [40377] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2364), 1, sym_identifier, - STATE(1425), 1, + ACTIONS(2446), 1, + anon_sym_RBRACE, + STATE(1473), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1565), 1, sym_visibility_modifier, - STATE(995), 2, + STATE(979), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39844] = 7, + [40403] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2307), 1, sym_identifier, - STATE(1286), 1, + STATE(1345), 1, + sym_enum_variant, + STATE(1405), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1584), 1, sym_visibility_modifier, - STATE(995), 2, + STATE(1025), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39867] = 2, + [40429] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1554), 6, + ACTIONS(2179), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2283), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1573), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [39879] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2471), 1, - anon_sym_DASH_GT, - ACTIONS(2473), 1, - anon_sym_implicits, - ACTIONS(2475), 1, - anon_sym_nopanic, - STATE(1438), 1, - sym_nopanic, - ACTIONS(2469), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [39899] = 5, + [40447] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [39917] = 6, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + ACTIONS(2448), 1, + anon_sym_RBRACE, + STATE(1473), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(979), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40473] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, - anon_sym_COMMA, - STATE(980), 1, - aux_sym_function_repeat1, - STATE(1385), 1, - sym_nopanic, - ACTIONS(2479), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [39937] = 6, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + ACTIONS(2450), 1, + anon_sym_RBRACE, + STATE(1473), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(979), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40499] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, - anon_sym_COMMA, - STATE(997), 1, - aux_sym_function_repeat1, - STATE(1357), 1, - sym_nopanic, - ACTIONS(2483), 2, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2452), 1, anon_sym_LBRACE, + STATE(887), 1, + sym_type_arguments, + ACTIONS(2245), 4, anon_sym_SEMI, - [39957] = 5, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [40518] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 1, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2201), 1, anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2454), 1, anon_sym_COLON_COLON, - ACTIONS(2162), 3, + STATE(879), 1, + sym_type_arguments, + ACTIONS(2197), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39975] = 6, + [40539] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, - anon_sym_COMMA, - STATE(976), 1, - aux_sym_function_repeat1, - STATE(1348), 1, - sym_nopanic, - ACTIONS(2487), 2, + ACTIONS(2456), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [39995] = 6, + ACTIONS(2458), 1, + anon_sym_EQ, + ACTIONS(2460), 1, + anon_sym_LBRACK, + ACTIONS(2462), 1, + anon_sym_RBRACK, + ACTIONS(2464), 1, + anon_sym_COLON_COLON, + ACTIONS(2466), 1, + anon_sym_LPAREN, + STATE(1555), 1, + sym_delim_token_tree, + [40564] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, - anon_sym_COMMA, - STATE(997), 1, - aux_sym_function_repeat1, - STATE(1346), 1, - sym_nopanic, - ACTIONS(2489), 2, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + STATE(1321), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(1025), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40587] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2456), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [40015] = 6, + ACTIONS(2460), 1, + anon_sym_LBRACK, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_EQ, + ACTIONS(2470), 1, + anon_sym_RBRACK, + ACTIONS(2472), 1, + anon_sym_COLON_COLON, + STATE(1559), 1, + sym_delim_token_tree, + [40612] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, - anon_sym_COMMA, - STATE(997), 1, - aux_sym_function_repeat1, - STATE(1396), 1, - sym_nopanic, - ACTIONS(2491), 2, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + STATE(1306), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(1025), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40635] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + STATE(1400), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(1025), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40658] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + STATE(1473), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(979), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40681] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2456), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [40035] = 7, + ACTIONS(2458), 1, + anon_sym_EQ, + ACTIONS(2460), 1, + anon_sym_LBRACK, + ACTIONS(2462), 1, + anon_sym_RBRACK, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2474), 1, + anon_sym_COLON_COLON, + STATE(1555), 1, + sym_delim_token_tree, + [40706] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2493), 1, + ACTIONS(2201), 1, + anon_sym_BANG, + ACTIONS(2476), 1, + anon_sym_COLON_COLON, + STATE(879), 1, + sym_type_arguments, + ACTIONS(2197), 3, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(2495), 1, + anon_sym_PIPE, + [40727] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2126), 1, + anon_sym_LBRACE, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2478), 1, + anon_sym_STAR, + STATE(873), 1, + sym_type_arguments, + STATE(1175), 1, + sym_use_list, + ACTIONS(2480), 2, + sym_identifier, + sym_super, + [40750] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2456), 1, + anon_sym_LBRACE, + ACTIONS(2458), 1, + anon_sym_EQ, + ACTIONS(2460), 1, + anon_sym_LBRACK, + ACTIONS(2462), 1, + anon_sym_RBRACK, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2482), 1, anon_sym_COLON_COLON, - ACTIONS(2497), 1, - anon_sym_GT, - STATE(865), 1, + STATE(1555), 1, + sym_delim_token_tree, + [40775] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2484), 1, + anon_sym_BANG, + ACTIONS(2486), 1, + anon_sym_COLON_COLON, + STATE(879), 1, sym_type_arguments, - STATE(1261), 1, - aux_sym_type_parameters_repeat1, - [40057] = 2, + ACTIONS(2197), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [40796] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2126), 1, + anon_sym_LBRACE, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2488), 1, + anon_sym_STAR, + STATE(872), 1, + sym_type_arguments, + STATE(1189), 1, + sym_use_list, + ACTIONS(2490), 2, + sym_identifier, + sym_super, + [40819] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1528), 6, + ACTIONS(2126), 1, + anon_sym_LBRACE, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2488), 1, + anon_sym_STAR, + STATE(871), 1, + sym_type_arguments, + STATE(1189), 1, + sym_use_list, + ACTIONS(2490), 2, + sym_identifier, + sym_super, + [40842] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2492), 1, + anon_sym_COLON_COLON, + ACTIONS(2185), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [40860] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1559), 6, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [40069] = 2, + [40872] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_COMMA, + ACTIONS(2498), 1, + anon_sym_nopanic, + STATE(1021), 1, + aux_sym_function_repeat1, + STATE(1392), 1, + sym_nopanic, + ACTIONS(2494), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40892] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1524), 6, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2197), 1, + anon_sym_PIPE, + ACTIONS(2199), 1, + anon_sym_COLON, + ACTIONS(2201), 1, anon_sym_BANG, + ACTIONS(2500), 1, anon_sym_COLON_COLON, + STATE(879), 1, + sym_type_arguments, + [40914] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2352), 1, + anon_sym_BANG, + ACTIONS(2356), 1, anon_sym_LPAREN, + ACTIONS(2502), 1, + anon_sym_COLON_COLON, + ACTIONS(2185), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [40081] = 4, + [40932] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2442), 1, anon_sym_LT2, - STATE(874), 1, + ACTIONS(2504), 1, + anon_sym_COMMA, + ACTIONS(2506), 1, + anon_sym_COLON_COLON, + ACTIONS(2508), 1, + anon_sym_GT, + STATE(885), 1, sym_type_arguments, - ACTIONS(2225), 4, + STATE(1280), 1, + aux_sym_type_parameters_repeat1, + [40954] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_COMMA, + ACTIONS(2498), 1, + anon_sym_nopanic, + STATE(997), 1, + aux_sym_function_repeat1, + STATE(1389), 1, + sym_nopanic, + ACTIONS(2510), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40974] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_COMMA, + ACTIONS(2498), 1, + anon_sym_nopanic, + STATE(990), 1, + aux_sym_function_repeat1, + STATE(1454), 1, + sym_nopanic, + ACTIONS(2512), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40994] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2442), 1, + anon_sym_LT2, + STATE(887), 1, + sym_type_arguments, + ACTIONS(2245), 4, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [40097] = 6, + [41010] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, + ACTIONS(2496), 1, anon_sym_COMMA, - STATE(986), 1, + ACTIONS(2498), 1, + anon_sym_nopanic, + STATE(1021), 1, aux_sym_function_repeat1, - STATE(1388), 1, + STATE(1367), 1, + sym_nopanic, + ACTIONS(2514), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [41030] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2498), 1, + anon_sym_nopanic, + ACTIONS(2518), 1, + anon_sym_DASH_GT, + ACTIONS(2520), 1, + anon_sym_implicits, + STATE(1380), 1, sym_nopanic, - ACTIONS(2499), 2, + ACTIONS(2516), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40117] = 6, + [41050] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2496), 1, + anon_sym_COMMA, + ACTIONS(2498), 1, anon_sym_nopanic, - ACTIONS(2481), 1, + STATE(1021), 1, + aux_sym_function_repeat1, + STATE(1369), 1, + sym_nopanic, + ACTIONS(2522), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [41070] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, anon_sym_COMMA, - STATE(997), 1, + ACTIONS(2498), 1, + anon_sym_nopanic, + STATE(999), 1, aux_sym_function_repeat1, - STATE(1436), 1, + STATE(1359), 1, sym_nopanic, - ACTIONS(2501), 2, + ACTIONS(2524), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40137] = 2, + [41090] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1542), 6, - anon_sym_BANG, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(2506), 1, anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [40149] = 5, + ACTIONS(2526), 1, + anon_sym_COMMA, + ACTIONS(2528), 1, + anon_sym_GT, + STATE(885), 1, + sym_type_arguments, + STATE(1242), 1, + aux_sym_type_parameters_repeat1, + [41112] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2325), 1, + ACTIONS(1563), 6, anon_sym_BANG, - ACTIONS(2329), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, anon_sym_COLON_COLON, - ACTIONS(2162), 3, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [40167] = 6, + [41124] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, + ACTIONS(2496), 1, anon_sym_COMMA, - STATE(979), 1, + ACTIONS(2498), 1, + anon_sym_nopanic, + STATE(1006), 1, aux_sym_function_repeat1, - STATE(1362), 1, + STATE(1373), 1, sym_nopanic, - ACTIONS(2505), 2, + ACTIONS(2530), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40187] = 7, + [41144] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2174), 1, - anon_sym_PIPE, - ACTIONS(2176), 1, - anon_sym_COLON, - ACTIONS(2178), 1, + ACTIONS(2189), 1, anon_sym_BANG, - ACTIONS(2507), 1, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, anon_sym_COLON_COLON, - STATE(861), 1, - sym_type_arguments, - [40209] = 6, + ACTIONS(2185), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [41162] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2498), 1, anon_sym_nopanic, - ACTIONS(2511), 1, + ACTIONS(2536), 1, anon_sym_DASH_GT, - ACTIONS(2513), 1, + ACTIONS(2538), 1, anon_sym_implicits, - STATE(1420), 1, + STATE(1374), 1, sym_nopanic, - ACTIONS(2509), 2, + ACTIONS(2534), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40229] = 7, + [41182] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(2495), 1, + ACTIONS(2496), 1, + anon_sym_COMMA, + ACTIONS(2498), 1, + anon_sym_nopanic, + STATE(1021), 1, + aux_sym_function_repeat1, + STATE(1377), 1, + sym_nopanic, + ACTIONS(2540), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [41202] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1573), 6, + anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2515), 1, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [41214] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1577), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [41226] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2249), 1, + anon_sym_SEMI, + ACTIONS(2542), 1, + anon_sym_RBRACK, + ACTIONS(2545), 1, + anon_sym_COLON_COLON, + ACTIONS(2185), 2, anon_sym_COMMA, - ACTIONS(2517), 1, - anon_sym_GT, - STATE(865), 1, - sym_type_arguments, - STATE(1288), 1, - aux_sym_type_parameters_repeat1, - [40251] = 4, + anon_sym_PIPE, + [41243] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2521), 1, + ACTIONS(2549), 1, anon_sym_COLON_COLON, - ACTIONS(2523), 1, + ACTIONS(2551), 1, anon_sym_as, - ACTIONS(2519), 3, + ACTIONS(2547), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [40266] = 6, + [41258] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2525), 1, + ACTIONS(2553), 1, anon_sym_RBRACE, - ACTIONS(2527), 1, + ACTIONS(2555), 1, anon_sym_COMMA, - ACTIONS(2529), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2559), 1, sym_mutable_specifier, - STATE(1196), 1, + STATE(1190), 1, sym_field_pattern, - [40285] = 4, + [41277] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2533), 1, - anon_sym_POUND, - ACTIONS(1488), 2, - anon_sym_pub, - sym_identifier, - STATE(995), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [40300] = 6, + ACTIONS(1547), 5, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [41288] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2561), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [41299] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2559), 1, sym_mutable_specifier, - ACTIONS(2536), 1, + ACTIONS(2563), 1, anon_sym_RBRACE, - ACTIONS(2538), 1, + ACTIONS(2565), 1, anon_sym_COMMA, - STATE(1238), 1, + STATE(1338), 1, sym_field_pattern, - [40319] = 4, + [41318] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2542), 1, - anon_sym_COMMA, - STATE(997), 1, - aux_sym_function_repeat1, - ACTIONS(2540), 3, + ACTIONS(2567), 5, anon_sym_LBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_nopanic, - [40334] = 2, + anon_sym_EQ, + anon_sym_LPAREN, + [41329] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2540), 5, + ACTIONS(2569), 5, anon_sym_LBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LPAREN, + [41340] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2571), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, anon_sym_nopanic, - [40345] = 6, + [41351] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2573), 1, + anon_sym_RBRACE, + ACTIONS(2575), 1, + anon_sym_COMMA, + STATE(1330), 1, + sym_field_pattern, + [41370] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2577), 1, anon_sym_LBRACE, - ACTIONS(2547), 1, + ACTIONS(2579), 1, anon_sym_SEMI, - ACTIONS(2549), 1, + ACTIONS(2581), 1, anon_sym_LT, - STATE(525), 1, - sym_declaration_list, - STATE(1328), 1, + STATE(341), 1, + sym_field_declaration_list, + STATE(1245), 1, sym_type_parameters, - [40364] = 5, + [41389] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2495), 1, + ACTIONS(2506), 1, anon_sym_COLON_COLON, - STATE(865), 1, + STATE(885), 1, sym_type_arguments, - ACTIONS(2551), 2, + ACTIONS(2583), 2, anon_sym_COMMA, anon_sym_GT, - [40381] = 6, + [41406] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - ACTIONS(2553), 1, - anon_sym_RBRACE, - ACTIONS(2555), 1, + ACTIONS(2587), 1, anon_sym_COMMA, - STATE(1314), 1, - sym_field_pattern, - [40400] = 2, + STATE(1021), 1, + aux_sym_function_repeat1, + ACTIONS(2585), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_nopanic, + [41421] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2557), 5, + ACTIONS(2590), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40411] = 2, + [41432] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2559), 5, + ACTIONS(2592), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40422] = 2, + [41443] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2561), 5, + ACTIONS(2594), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40433] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2523), 1, - anon_sym_as, - ACTIONS(2563), 1, - anon_sym_COLON_COLON, - ACTIONS(2519), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [40448] = 5, + [41454] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, + ACTIONS(2596), 1, anon_sym_POUND, - ACTIONS(2565), 1, - sym_numeric_literal, - ACTIONS(2567), 1, + ACTIONS(1491), 2, + anon_sym_pub, sym_identifier, - STATE(1015), 2, + STATE(1025), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [40465] = 6, + [41469] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2569), 1, + ACTIONS(2599), 1, anon_sym_LBRACE, - ACTIONS(2571), 1, + ACTIONS(2601), 1, anon_sym_SEMI, - STATE(297), 1, + STATE(311), 1, sym_declaration_list, - STATE(1235), 1, + STATE(1232), 1, sym_type_parameters, - [40484] = 4, + [41488] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2575), 1, - anon_sym_COLON_COLON, - ACTIONS(2577), 1, - anon_sym_as, - ACTIONS(2573), 3, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2603), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2605), 1, anon_sym_COMMA, - [40499] = 6, + STATE(1172), 1, + sym_field_pattern, + [41507] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2579), 1, - anon_sym_LBRACE, ACTIONS(2581), 1, - anon_sym_SEMI, - STATE(265), 1, - sym_field_declaration_list, - STATE(1237), 1, + anon_sym_LT, + ACTIONS(2607), 1, + anon_sym_of, + ACTIONS(2609), 1, + anon_sym_COLON, + ACTIONS(2611), 1, + anon_sym_EQ, + STATE(1479), 1, sym_type_parameters, - [40518] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2583), 5, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40529] = 4, + [41526] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2523), 1, - anon_sym_as, - ACTIONS(2585), 1, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(2506), 1, anon_sym_COLON_COLON, - ACTIONS(2519), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2613), 2, anon_sym_COMMA, - [40544] = 2, + anon_sym_GT, + [41543] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2587), 5, + ACTIONS(2615), 5, anon_sym_LBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40555] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2162), 1, - anon_sym_PIPE, - ACTIONS(2164), 1, - anon_sym_COLON, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, + anon_sym_EQ, anon_sym_LPAREN, - ACTIONS(2589), 1, - anon_sym_COLON_COLON, - [40574] = 5, + [41554] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2591), 1, + ACTIONS(1555), 5, + anon_sym_SEMI, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(2593), 1, - anon_sym_RPAREN, - STATE(1309), 1, - aux_sym_parameters_repeat1, - ACTIONS(2162), 2, - anon_sym_COLON, - anon_sym_PIPE, - [40591] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2595), 1, - anon_sym_POUND, - ACTIONS(1488), 2, - sym_numeric_literal, - sym_identifier, - STATE(1015), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [40606] = 6, + anon_sym_COLON_COLON, + anon_sym_GT, + [41565] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - ACTIONS(2598), 1, - anon_sym_RBRACE, - ACTIONS(2600), 1, + ACTIONS(2585), 5, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1317), 1, - sym_field_pattern, - [40625] = 5, + anon_sym_RPAREN, + anon_sym_nopanic, + [41576] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2495), 1, + ACTIONS(2506), 1, anon_sym_COLON_COLON, - STATE(865), 1, + STATE(885), 1, sym_type_arguments, - ACTIONS(2602), 2, + ACTIONS(2617), 2, anon_sym_COMMA, anon_sym_GT, - [40642] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2162), 1, - anon_sym_PIPE, - ACTIONS(2164), 1, - anon_sym_COLON, - ACTIONS(2254), 1, - anon_sym_COLON_COLON, - ACTIONS(2252), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40659] = 6, + [41593] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2579), 1, + ACTIONS(2619), 5, anon_sym_LBRACE, - ACTIONS(2604), 1, anon_sym_SEMI, - STATE(296), 1, - sym_field_declaration_list, - STATE(1211), 1, - sym_type_parameters, - [40678] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2608), 1, + anon_sym_DASH_GT, anon_sym_implicits, - STATE(1394), 1, - sym_nopanic, - ACTIONS(2606), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [40695] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2610), 1, - anon_sym_LBRACE, - ACTIONS(2612), 1, - anon_sym_SEMI, - STATE(567), 1, - sym_field_declaration_list, - STATE(1329), 1, - sym_type_parameters, - [40714] = 2, + anon_sym_nopanic, + [41604] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1546), 5, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2623), 1, anon_sym_COLON_COLON, - anon_sym_GT, - [40725] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2614), 5, - anon_sym_LBRACE, - anon_sym_of, + ACTIONS(2625), 1, + anon_sym_as, + ACTIONS(2621), 3, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [40736] = 2, + anon_sym_COMMA, + [41619] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2616), 5, - anon_sym_LBRACE, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2627), 1, anon_sym_of, - anon_sym_SEMI, + ACTIONS(2629), 1, + anon_sym_COLON, + ACTIONS(2631), 1, anon_sym_EQ, - anon_sym_LPAREN, - [40747] = 2, + STATE(1361), 1, + sym_type_parameters, + [41638] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2618), 5, - anon_sym_LBRACE, + ACTIONS(2551), 1, + anon_sym_as, + ACTIONS(2633), 1, + anon_sym_COLON_COLON, + ACTIONS(2547), 3, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40758] = 2, + anon_sym_COMMA, + [41653] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2620), 5, - anon_sym_LBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2193), 1, anon_sym_LPAREN, - [40769] = 6, + ACTIONS(2635), 1, + anon_sym_COLON_COLON, + [41672] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2569), 1, + ACTIONS(2637), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, - anon_sym_SEMI, - STATE(326), 1, - sym_declaration_list, - STATE(1199), 1, - sym_type_parameters, - [40788] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2545), 1, - anon_sym_LBRACE, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2624), 1, + ACTIONS(2639), 1, anon_sym_SEMI, - STATE(557), 1, - sym_declaration_list, - STATE(1249), 1, + STATE(562), 1, + sym_field_declaration_list, + STATE(1268), 1, sym_type_parameters, - [40807] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2626), 5, - anon_sym_LBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [40818] = 2, + [41691] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2628), 5, + ACTIONS(2641), 5, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_implicits, anon_sym_nopanic, - [40829] = 6, + [41702] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2610), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, - anon_sym_SEMI, - STATE(536), 1, - sym_field_declaration_list, - STATE(1257), 1, - sym_type_parameters, - [40848] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2103), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2488), 1, anon_sym_STAR, - STATE(1205), 1, + STATE(1189), 1, sym_use_list, - ACTIONS(2465), 2, + ACTIONS(2490), 2, sym_identifier, sym_super, - [40865] = 2, + [41719] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2551), 1, + anon_sym_as, + ACTIONS(2643), 1, + anon_sym_COLON_COLON, + ACTIONS(2547), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [41734] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2632), 5, + ACTIONS(2645), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40876] = 2, + [41745] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2634), 5, + ACTIONS(2647), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40887] = 5, + [41756] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2252), 1, - anon_sym_SEMI, - ACTIONS(2636), 1, - anon_sym_RBRACK, - ACTIONS(2639), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [40904] = 2, + ACTIONS(2649), 1, + anon_sym_POUND, + ACTIONS(1491), 2, + sym_numeric_literal, + sym_identifier, + STATE(1045), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [41771] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2641), 5, + ACTIONS(2652), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40915] = 5, + [41782] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2498), 1, anon_sym_nopanic, - ACTIONS(2645), 1, + ACTIONS(2656), 1, anon_sym_implicits, - STATE(1378), 1, + STATE(1461), 1, sym_nopanic, - ACTIONS(2643), 2, + ACTIONS(2654), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40932] = 5, + [41799] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(2495), 1, - anon_sym_COLON_COLON, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2647), 2, - anon_sym_COMMA, - anon_sym_GT, - [40949] = 2, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(2660), 1, + anon_sym_SEMI, + STATE(517), 1, + sym_declaration_list, + STATE(1260), 1, + sym_type_parameters, + [41818] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2649), 5, + ACTIONS(2498), 1, + anon_sym_nopanic, + ACTIONS(2664), 1, + anon_sym_implicits, + STATE(1391), 1, + sym_nopanic, + ACTIONS(2662), 2, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40960] = 5, + [41835] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(952), 1, + ACTIONS(977), 1, anon_sym_RPAREN, - ACTIONS(2651), 1, + ACTIONS(2666), 1, anon_sym_COMMA, - STATE(1300), 1, + STATE(1230), 1, aux_sym_parameters_repeat1, - ACTIONS(2162), 2, + ACTIONS(2185), 2, anon_sym_COLON, anon_sym_PIPE, - [40977] = 2, + [41852] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1538), 5, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_GT, - [40988] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1550), 5, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_GT, - [40999] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2653), 1, - anon_sym_RBRACK, - ACTIONS(2655), 1, - anon_sym_COMMA, - ACTIONS(2657), 1, + ACTIONS(2185), 1, anon_sym_PIPE, - STATE(1158), 1, - aux_sym_tuple_pattern_repeat1, - [41015] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2227), 1, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2251), 1, anon_sym_COLON_COLON, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2225), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [41029] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2663), 1, + ACTIONS(2249), 2, anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(2661), 2, - anon_sym_RBRACK, anon_sym_RPAREN, - [41043] = 4, + [41869] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(384), 1, + ACTIONS(2668), 5, anon_sym_LBRACE, - ACTIONS(2666), 1, - anon_sym_if, - STATE(771), 2, - sym_block, - sym_if_expression, - [41057] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2661), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - [41069] = 5, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [41880] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2668), 1, - anon_sym_COMMA, + ACTIONS(2266), 1, + anon_sym_POUND, ACTIONS(2670), 1, - anon_sym_RPAREN, - STATE(1285), 1, - aux_sym_tuple_pattern_repeat1, - [41085] = 5, + sym_numeric_literal, + ACTIONS(2672), 1, + sym_identifier, + STATE(1045), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [41897] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_of, + ACTIONS(2599), 1, + anon_sym_LBRACE, ACTIONS(2674), 1, - anon_sym_EQ, - STATE(1340), 1, + anon_sym_SEMI, + STATE(295), 1, + sym_declaration_list, + STATE(1243), 1, sym_type_parameters, - [41101] = 5, + [41916] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(1551), 5, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [41927] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2577), 1, + anon_sym_LBRACE, + ACTIONS(2581), 1, anon_sym_LT, ACTIONS(2676), 1, - anon_sym_of, - ACTIONS(2678), 1, - anon_sym_EQ, - STATE(1343), 1, + anon_sym_SEMI, + STATE(290), 1, + sym_field_declaration_list, + STATE(1248), 1, sym_type_parameters, - [41117] = 4, + [41946] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_COLON_COLON, - ACTIONS(2225), 2, + ACTIONS(2678), 1, anon_sym_COMMA, + ACTIONS(2680), 1, anon_sym_RPAREN, - [41131] = 5, + STATE(1159), 1, + aux_sym_parameters_repeat1, + ACTIONS(2185), 2, + anon_sym_COLON, + anon_sym_PIPE, + [41963] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2682), 1, - anon_sym_COMMA, - ACTIONS(2684), 1, - anon_sym_RPAREN, - STATE(1293), 1, - aux_sym_tuple_pattern_repeat1, - [41147] = 5, + ACTIONS(2682), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [41974] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2686), 1, - anon_sym_of, - ACTIONS(2688), 1, - anon_sym_EQ, - STATE(1374), 1, + ACTIONS(2637), 1, + anon_sym_LBRACE, + ACTIONS(2684), 1, + anon_sym_SEMI, + STATE(496), 1, + sym_field_declaration_list, + STATE(1337), 1, sym_type_parameters, - [41163] = 5, + [41993] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2178), 1, - anon_sym_BANG, - ACTIONS(2507), 1, - anon_sym_COLON_COLON, - STATE(861), 1, - sym_type_arguments, - [41179] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(2686), 1, + anon_sym_SEMI, + STATE(554), 1, + sym_declaration_list, + STATE(1343), 1, + sym_type_parameters, + [42012] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2559), 1, sym_mutable_specifier, - ACTIONS(2690), 1, + ACTIONS(2688), 1, anon_sym_RBRACE, - STATE(1399), 1, + STATE(1437), 1, sym_field_pattern, - [41195] = 3, + [42028] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2274), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2371), 2, - anon_sym_COLON, - anon_sym_PIPE, - [41207] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2178), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(2692), 1, - anon_sym_COLON_COLON, - STATE(861), 1, - sym_type_arguments, - [41223] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2694), 1, - anon_sym_LBRACE, - STATE(569), 1, - sym_enum_variant_list, - STATE(1347), 1, + ACTIONS(2690), 1, + anon_sym_of, + ACTIONS(2692), 1, + anon_sym_EQ, + STATE(1469), 1, sym_type_parameters, - [41239] = 5, + [42044] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, ACTIONS(2696), 1, - anon_sym_LBRACE, - STATE(266), 1, - sym_enum_variant_list, - STATE(1373), 1, - sym_type_parameters, - [41255] = 5, + anon_sym_PIPE, + ACTIONS(2694), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [42056] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2559), 1, sym_mutable_specifier, ACTIONS(2698), 1, anon_sym_RBRACE, - STATE(1399), 1, + STATE(1437), 1, sym_field_pattern, - [41271] = 5, + [42072] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, + ACTIONS(2696), 1, + anon_sym_PIPE, ACTIONS(2700), 1, - sym_identifier, + anon_sym_COMMA, ACTIONS(2702), 1, - sym_super, - STATE(850), 1, - sym_type_arguments, - [41287] = 5, + anon_sym_RPAREN, + STATE(1310), 1, + aux_sym_tuple_pattern_repeat1, + [42088] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2507), 1, - anon_sym_COLON_COLON, + ACTIONS(2696), 1, + anon_sym_PIPE, ACTIONS(2704), 1, - anon_sym_BANG, - STATE(861), 1, - sym_type_arguments, - [41303] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2700), 1, - sym_identifier, - ACTIONS(2702), 1, - sym_super, - STATE(850), 1, - sym_type_arguments, - [41319] = 4, + anon_sym_COMMA, + ACTIONS(2706), 1, + anon_sym_RPAREN, + STATE(1313), 1, + aux_sym_tuple_pattern_repeat1, + [42104] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - STATE(859), 1, - sym_type_arguments, - ACTIONS(2453), 2, + ACTIONS(2557), 1, sym_identifier, - sym_super, - [41333] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2381), 1, - anon_sym_PIPE, - ACTIONS(2706), 1, - anon_sym_SEMI, + ACTIONS(2559), 1, + sym_mutable_specifier, ACTIONS(2708), 1, - anon_sym_COLON, - ACTIONS(2710), 1, - anon_sym_EQ, - [41349] = 4, + anon_sym_RBRACE, + STATE(1437), 1, + sym_field_pattern, + [42120] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - STATE(856), 1, - sym_type_arguments, - ACTIONS(2465), 2, - sym_identifier, - sym_super, - [41363] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2710), 1, + anon_sym_LBRACE, + STATE(288), 1, + sym_enum_variant_list, + STATE(1457), 1, + sym_type_parameters, + [42136] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2700), 1, - sym_identifier, - ACTIONS(2702), 1, - sym_super, - STATE(856), 1, - sym_type_arguments, - [41379] = 5, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(2712), 1, + anon_sym_if, + STATE(792), 2, + sym_block, + sym_if_expression, + [42150] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2201), 1, + anon_sym_BANG, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2712), 1, - sym_identifier, ACTIONS(2714), 1, - sym_super, - STATE(859), 1, + anon_sym_COLON_COLON, + STATE(879), 1, sym_type_arguments, - [41395] = 5, + [42166] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2716), 1, + ACTIONS(2557), 1, sym_identifier, - STATE(850), 1, - sym_type_arguments, - [41411] = 5, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2716), 1, + anon_sym_RBRACE, + STATE(1437), 1, + sym_field_pattern, + [42182] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(2700), 1, - sym_identifier, - ACTIONS(2702), 1, - sym_super, - STATE(856), 1, - sym_type_arguments, - [41427] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2718), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym_enum_variant_list, + STATE(1360), 1, + sym_type_parameters, + [42198] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2718), 1, + ACTIONS(2332), 2, anon_sym_COMMA, - ACTIONS(2720), 1, anon_sym_RPAREN, - STATE(1312), 1, - aux_sym_tuple_pattern_repeat1, - [41443] = 5, + ACTIONS(2382), 2, + anon_sym_COLON, + anon_sym_PIPE, + [42210] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1873), 1, - anon_sym_GT, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2720), 1, + anon_sym_of, ACTIONS(2722), 1, - anon_sym_COMMA, + anon_sym_EQ, + STATE(1358), 1, + sym_type_parameters, + [42226] = 4, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(2724), 1, - anon_sym_COLON_COLON, - STATE(1290), 1, - aux_sym_type_parameters_repeat1, - [41459] = 5, + anon_sym_COMMA, + STATE(1075), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(2694), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + [42240] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1873), 1, - anon_sym_GT, - ACTIONS(2260), 1, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2729), 1, + anon_sym_LBRACK, + ACTIONS(2731), 1, + anon_sym_LPAREN, + STATE(225), 1, + sym_delim_token_tree, + [42256] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2500), 1, anon_sym_COLON_COLON, - ACTIONS(2722), 1, - anon_sym_COMMA, - STATE(1290), 1, - aux_sym_type_parameters_repeat1, - [41475] = 5, + ACTIONS(2733), 1, + anon_sym_BANG, + STATE(879), 1, + sym_type_arguments, + [42272] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2559), 1, sym_mutable_specifier, - ACTIONS(2726), 1, + ACTIONS(2735), 1, anon_sym_RBRACE, - STATE(1399), 1, + STATE(1437), 1, sym_field_pattern, - [41491] = 5, + [42288] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_RBRACK, - ACTIONS(2730), 1, + ACTIONS(1886), 1, + anon_sym_GT, + ACTIONS(2737), 1, anon_sym_COMMA, - STATE(1310), 1, - aux_sym_tuple_pattern_repeat1, - [41507] = 5, + ACTIONS(2739), 1, + anon_sym_COLON_COLON, + STATE(1241), 1, + aux_sym_type_parameters_repeat1, + [42304] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2381), 1, - anon_sym_PIPE, - ACTIONS(2732), 1, + ACTIONS(2332), 1, anon_sym_SEMI, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(2736), 1, - anon_sym_EQ, - [41523] = 4, + ACTIONS(2741), 1, + anon_sym_RBRACK, + ACTIONS(2382), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [42318] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - STATE(850), 1, - sym_type_arguments, - ACTIONS(2465), 2, + ACTIONS(2557), 1, sym_identifier, - sym_super, - [41537] = 5, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2744), 1, + anon_sym_RBRACE, + STATE(1437), 1, + sym_field_pattern, + [42334] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2559), 1, sym_mutable_specifier, - ACTIONS(2738), 1, + ACTIONS(2746), 1, anon_sym_RBRACE, - STATE(1399), 1, + STATE(1437), 1, sym_field_pattern, - [41553] = 5, + [42350] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2712), 1, + ACTIONS(2748), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2750), 1, sym_super, - STATE(859), 1, + STATE(872), 1, sym_type_arguments, - [41569] = 5, + [42366] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2716), 1, - sym_identifier, - STATE(856), 1, - sym_type_arguments, - [41585] = 5, + ACTIONS(1886), 1, + anon_sym_GT, + ACTIONS(2258), 1, + anon_sym_COLON_COLON, + ACTIONS(2737), 1, + anon_sym_COMMA, + STATE(1241), 1, + aux_sym_type_parameters_repeat1, + [42382] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2748), 1, sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - ACTIONS(2740), 1, - anon_sym_RBRACE, - STATE(1399), 1, - sym_field_pattern, - [41601] = 3, + ACTIONS(2750), 1, + sym_super, + STATE(871), 1, + sym_type_arguments, + [42398] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2742), 2, + ACTIONS(2752), 1, + anon_sym_COLON_COLON, + ACTIONS(2754), 1, + anon_sym_LPAREN, + ACTIONS(2245), 2, anon_sym_COMMA, anon_sym_RPAREN, - [41613] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2225), 1, - anon_sym_SEMI, - ACTIONS(2744), 1, - anon_sym_RBRACK, - ACTIONS(2162), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [41627] = 5, + [42412] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2714), 1, + ACTIONS(2750), 1, sym_super, - ACTIONS(2747), 1, + ACTIONS(2756), 1, sym_identifier, - STATE(859), 1, + STATE(872), 1, sym_type_arguments, - [41643] = 5, + [42428] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2465), 1, - sym_super, - ACTIONS(2749), 1, + ACTIONS(2758), 1, sym_identifier, - STATE(710), 1, + ACTIONS(2760), 1, + sym_super, + STATE(873), 1, sym_type_arguments, - [41659] = 5, + [42444] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - ACTIONS(2751), 1, - anon_sym_RBRACE, - STATE(1399), 1, - sym_field_pattern, - [41675] = 5, + ACTIONS(2428), 1, + anon_sym_PIPE, + ACTIONS(2762), 1, + anon_sym_SEMI, + ACTIONS(2764), 1, + anon_sym_COLON, + ACTIONS(2766), 1, + anon_sym_EQ, + [42460] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2465), 1, + ACTIONS(2750), 1, sym_super, - ACTIONS(2749), 1, + ACTIONS(2756), 1, sym_identifier, - STATE(711), 1, + STATE(871), 1, sym_type_arguments, - [41691] = 5, + [42476] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2753), 1, - anon_sym_of, - ACTIONS(2755), 1, - anon_sym_EQ, - STATE(1468), 1, - sym_type_parameters, - [41707] = 5, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2770), 1, + sym_super, + STATE(873), 1, + sym_type_arguments, + [42492] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2757), 1, + ACTIONS(2727), 1, anon_sym_LBRACE, - ACTIONS(2759), 1, + ACTIONS(2729), 1, anon_sym_LBRACK, - ACTIONS(2761), 1, + ACTIONS(2731), 1, anon_sym_LPAREN, - STATE(854), 1, + STATE(230), 1, sym_delim_token_tree, - [41723] = 5, + [42508] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2755), 1, - anon_sym_EQ, - ACTIONS(2763), 1, - anon_sym_SEMI, - STATE(1467), 1, - sym_type_parameters, - [41739] = 5, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2770), 1, + sym_super, + ACTIONS(2772), 1, + sym_identifier, + STATE(873), 1, + sym_type_arguments, + [42524] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2774), 1, + anon_sym_LT2, + ACTIONS(2776), 1, + sym_identifier, + ACTIONS(2778), 1, + sym_super, + STATE(682), 1, + sym_type_arguments, + [42540] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2696), 1, anon_sym_PIPE, - ACTIONS(2765), 1, + ACTIONS(2780), 1, anon_sym_COMMA, - ACTIONS(2767), 1, + ACTIONS(2782), 1, anon_sym_RPAREN, - STATE(1155), 1, + STATE(1327), 1, aux_sym_tuple_pattern_repeat1, - [41755] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2769), 1, - anon_sym_if, - STATE(71), 2, - sym_block, - sym_if_expression, - [41769] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2771), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - anon_sym_LBRACK, - ACTIONS(2775), 1, - anon_sym_LPAREN, - STATE(222), 1, - sym_delim_token_tree, - [41785] = 4, + [42556] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2777), 1, - anon_sym_COLON_COLON, - ACTIONS(2225), 2, - anon_sym_SEMI, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2784), 1, anon_sym_RBRACK, - [41799] = 5, + ACTIONS(2786), 1, + anon_sym_COMMA, + STATE(1325), 1, + aux_sym_tuple_pattern_repeat1, + [42572] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2774), 1, anon_sym_LT2, - ACTIONS(2779), 1, + ACTIONS(2776), 1, sym_identifier, - ACTIONS(2781), 1, + ACTIONS(2778), 1, sym_super, - STATE(859), 1, + STATE(668), 1, sym_type_arguments, - [41815] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2771), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - anon_sym_LBRACK, - ACTIONS(2775), 1, - anon_sym_LPAREN, - STATE(223), 1, - sym_delim_token_tree, - [41831] = 5, + [42588] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2453), 1, + ACTIONS(2480), 1, sym_super, - ACTIONS(2783), 1, + ACTIONS(2768), 1, sym_identifier, - STATE(859), 1, + STATE(873), 1, sym_type_arguments, - [41847] = 5, + [42604] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2757), 1, - anon_sym_LBRACE, - ACTIONS(2759), 1, - anon_sym_LBRACK, - ACTIONS(2761), 1, - anon_sym_LPAREN, - STATE(857), 1, - sym_delim_token_tree, - [41863] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2785), 1, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2787), 1, - sym_identifier, - ACTIONS(2789), 1, + ACTIONS(2490), 1, sym_super, - STATE(645), 1, + ACTIONS(2748), 1, + sym_identifier, + STATE(871), 1, sym_type_arguments, - [41879] = 5, + [42620] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2785), 1, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2787), 1, - sym_identifier, - ACTIONS(2789), 1, + ACTIONS(2490), 1, sym_super, - STATE(646), 1, + ACTIONS(2748), 1, + sym_identifier, + STATE(872), 1, sym_type_arguments, - [41895] = 5, + [42636] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2791), 1, - anon_sym_SEMI, - ACTIONS(2793), 1, - anon_sym_COLON, - ACTIONS(2795), 1, - anon_sym_EQ, - [41911] = 5, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2490), 1, + sym_super, + ACTIONS(2788), 1, + sym_identifier, + STATE(724), 1, + sym_type_arguments, + [42652] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2453), 1, + ACTIONS(2490), 1, sym_super, - ACTIONS(2747), 1, + ACTIONS(2788), 1, sym_identifier, - STATE(859), 1, + STATE(725), 1, sym_type_arguments, - [41927] = 5, + [42668] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2696), 1, + ACTIONS(2790), 1, anon_sym_LBRACE, - STATE(294), 1, - sym_enum_variant_list, - STATE(1440), 1, - sym_type_parameters, - [41943] = 3, + ACTIONS(2792), 1, + anon_sym_LBRACK, + ACTIONS(2794), 1, + anon_sym_LPAREN, + STATE(869), 1, + sym_delim_token_tree, + [42684] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2797), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 3, + ACTIONS(2696), 1, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [41955] = 5, + ACTIONS(2796), 1, + anon_sym_COMMA, + ACTIONS(2798), 1, + anon_sym_RPAREN, + STATE(1167), 1, + aux_sym_tuple_pattern_repeat1, + [42700] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2258), 1, + anon_sym_COLON_COLON, + ACTIONS(2800), 1, + anon_sym_COMMA, + ACTIONS(2802), 1, + anon_sym_GT, + STATE(1289), 1, + aux_sym_type_parameters_repeat1, + [42716] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2465), 1, + ACTIONS(2480), 1, sym_super, - ACTIONS(2716), 1, + ACTIONS(2804), 1, sym_identifier, - STATE(856), 1, + STATE(873), 1, sym_type_arguments, - [41971] = 5, + [42732] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 1, - anon_sym_COLON_COLON, - ACTIONS(2799), 1, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2806), 1, + anon_sym_RBRACK, + ACTIONS(2808), 1, anon_sym_COMMA, - ACTIONS(2801), 1, - anon_sym_GT, - STATE(1262), 1, - aux_sym_type_parameters_repeat1, - [41987] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2803), 1, - anon_sym_if, - STATE(71), 2, - sym_block, - sym_if_expression, - [42001] = 5, + STATE(1169), 1, + aux_sym_tuple_pattern_repeat1, + [42748] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2694), 1, + ACTIONS(2790), 1, anon_sym_LBRACE, - STATE(539), 1, - sym_enum_variant_list, - STATE(1397), 1, - sym_type_parameters, - [42017] = 5, + ACTIONS(2792), 1, + anon_sym_LBRACK, + ACTIONS(2794), 1, + anon_sym_LPAREN, + STATE(868), 1, + sym_delim_token_tree, + [42764] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2724), 1, + ACTIONS(2739), 1, anon_sym_COLON_COLON, - ACTIONS(2799), 1, + ACTIONS(2800), 1, anon_sym_COMMA, - ACTIONS(2801), 1, + ACTIONS(2802), 1, anon_sym_GT, - STATE(1262), 1, + STATE(1289), 1, aux_sym_type_parameters_repeat1, - [42033] = 5, + [42780] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(2465), 1, - sym_super, - ACTIONS(2716), 1, - sym_identifier, - STATE(850), 1, - sym_type_arguments, - [42049] = 5, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2810), 1, + anon_sym_SEMI, + ACTIONS(2812), 1, + anon_sym_COLON, + ACTIONS(2814), 1, + anon_sym_EQ, + [42796] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2678), 1, - anon_sym_EQ, - ACTIONS(2805), 1, - anon_sym_SEMI, - STATE(1403), 1, + ACTIONS(2718), 1, + anon_sym_LBRACE, + STATE(552), 1, + sym_enum_variant_list, + STATE(1419), 1, sym_type_parameters, - [42065] = 4, + [42812] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(821), 1, anon_sym_LBRACE, - ACTIONS(2807), 1, + ACTIONS(2816), 1, anon_sym_if, - STATE(252), 2, + STATE(257), 2, sym_block, sym_if_expression, - [42079] = 5, + [42826] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2631), 1, + anon_sym_EQ, + ACTIONS(2818), 1, + anon_sym_SEMI, + STATE(1442), 1, + sym_type_parameters, + [42842] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2245), 1, + anon_sym_SEMI, + ACTIONS(2820), 1, + anon_sym_RBRACK, + ACTIONS(2185), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [42856] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2809), 1, + ACTIONS(2823), 1, anon_sym_LBRACE, - ACTIONS(2811), 1, + ACTIONS(2825), 1, anon_sym_LBRACK, - ACTIONS(2813), 1, + ACTIONS(2827), 1, anon_sym_LPAREN, - STATE(1167), 1, + STATE(1178), 1, sym_delim_token_tree, - [42095] = 5, + [42872] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2809), 1, + ACTIONS(2823), 1, anon_sym_LBRACE, - ACTIONS(2811), 1, + ACTIONS(2825), 1, anon_sym_LBRACK, - ACTIONS(2813), 1, + ACTIONS(2827), 1, anon_sym_LPAREN, - STATE(1171), 1, + STATE(1182), 1, sym_delim_token_tree, - [42111] = 5, + [42888] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2815), 1, + STATE(873), 1, + sym_type_arguments, + ACTIONS(2770), 2, sym_identifier, - ACTIONS(2817), 1, sym_super, - STATE(859), 1, - sym_type_arguments, - [42127] = 5, + [42902] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2819), 1, + STATE(871), 1, + sym_type_arguments, + ACTIONS(2750), 2, sym_identifier, - ACTIONS(2821), 1, sym_super, - STATE(856), 1, - sym_type_arguments, - [42143] = 5, + [42916] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2819), 1, + STATE(872), 1, + sym_type_arguments, + ACTIONS(2750), 2, sym_identifier, - ACTIONS(2821), 1, sym_super, - STATE(850), 1, + [42930] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, + anon_sym_LT2, + STATE(872), 1, sym_type_arguments, - [42159] = 4, + ACTIONS(2490), 2, + sym_identifier, + sym_super, + [42944] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - STATE(859), 1, + STATE(871), 1, sym_type_arguments, - ACTIONS(2714), 2, + ACTIONS(2490), 2, sym_identifier, sym_super, - [42173] = 5, + [42958] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2714), 1, + STATE(873), 1, + sym_type_arguments, + ACTIONS(2480), 2, + sym_identifier, sym_super, - ACTIONS(2815), 1, + [42972] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2829), 1, sym_identifier, - STATE(859), 1, + ACTIONS(2831), 1, + sym_super, + STATE(873), 1, sym_type_arguments, - [42189] = 4, + [42988] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - STATE(856), 1, - sym_type_arguments, - ACTIONS(2702), 2, + ACTIONS(2833), 1, sym_identifier, + ACTIONS(2835), 1, sym_super, - [42203] = 5, + STATE(871), 1, + sym_type_arguments, + [43004] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2823), 1, - anon_sym_LPAREN, - STATE(991), 1, - sym_parameters, - STATE(1437), 1, - sym_type_parameters, - [42219] = 4, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2837), 1, + anon_sym_if, + STATE(70), 2, + sym_block, + sym_if_expression, + [43018] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - STATE(850), 1, - sym_type_arguments, - ACTIONS(2702), 2, + ACTIONS(2833), 1, sym_identifier, + ACTIONS(2835), 1, sym_super, - [42233] = 4, + STATE(872), 1, + sym_type_arguments, + [43034] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2274), 1, - anon_sym_SEMI, - ACTIONS(2825), 1, - anon_sym_RBRACK, - ACTIONS(2371), 2, - anon_sym_COMMA, + ACTIONS(2185), 2, + anon_sym_COLON, anon_sym_PIPE, - [42247] = 5, + ACTIONS(2839), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43046] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2702), 1, + ACTIONS(2770), 1, sym_super, - ACTIONS(2819), 1, + ACTIONS(2829), 1, sym_identifier, - STATE(856), 1, + STATE(873), 1, sym_type_arguments, - [42263] = 5, + [43062] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2702), 1, + ACTIONS(2750), 1, sym_super, - ACTIONS(2819), 1, + ACTIONS(2833), 1, sym_identifier, - STATE(850), 1, + STATE(871), 1, sym_type_arguments, - [42279] = 5, + [43078] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2828), 1, - anon_sym_COMMA, - ACTIONS(2830), 1, - anon_sym_RPAREN, - STATE(1176), 1, - aux_sym_tuple_pattern_repeat1, - [42295] = 5, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2750), 1, + sym_super, + ACTIONS(2833), 1, + sym_identifier, + STATE(872), 1, + sym_type_arguments, + [43094] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2714), 1, + ACTIONS(2770), 1, sym_super, - ACTIONS(2832), 1, + ACTIONS(2841), 1, sym_identifier, - STATE(859), 1, + STATE(873), 1, sym_type_arguments, - [42311] = 5, + [43110] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - ACTIONS(2834), 1, - anon_sym_RBRACE, - STATE(1399), 1, - sym_field_pattern, - [42327] = 5, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2843), 1, + anon_sym_COMMA, + ACTIONS(2845), 1, + anon_sym_RPAREN, + STATE(1274), 1, + aux_sym_tuple_pattern_repeat1, + [43126] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2702), 1, + ACTIONS(2750), 1, sym_super, - ACTIONS(2836), 1, + ACTIONS(2847), 1, sym_identifier, - STATE(856), 1, + STATE(871), 1, sym_type_arguments, - [42343] = 5, + [43142] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2702), 1, + ACTIONS(2750), 1, sym_super, - ACTIONS(2836), 1, + ACTIONS(2847), 1, sym_identifier, - STATE(850), 1, + STATE(872), 1, sym_type_arguments, - [42359] = 5, + [43158] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2465), 1, + ACTIONS(2490), 1, sym_super, - ACTIONS(2838), 1, + ACTIONS(2849), 1, sym_identifier, - STATE(419), 1, + STATE(433), 1, sym_type_arguments, - [42375] = 5, + [43174] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2696), 1, anon_sym_PIPE, - ACTIONS(2840), 1, + ACTIONS(2851), 1, anon_sym_COMMA, - ACTIONS(2842), 1, + ACTIONS(2853), 1, anon_sym_RPAREN, - STATE(1180), 1, + STATE(1302), 1, aux_sym_tuple_pattern_repeat1, - [42391] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2844), 1, - anon_sym_SEMI, - ACTIONS(2846), 1, - anon_sym_COLON, - ACTIONS(2848), 1, - anon_sym_EQ, - [42407] = 5, + [43190] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2465), 1, + ACTIONS(2490), 1, sym_super, - ACTIONS(2838), 1, + ACTIONS(2849), 1, sym_identifier, - STATE(436), 1, + STATE(441), 1, sym_type_arguments, - [42423] = 5, + [43206] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2855), 1, + anon_sym_COLON_COLON, + ACTIONS(2542), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43220] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2431), 1, + ACTIONS(2456), 1, anon_sym_LBRACE, - ACTIONS(2435), 1, + ACTIONS(2460), 1, anon_sym_LBRACK, - ACTIONS(2441), 1, + ACTIONS(2466), 1, anon_sym_LPAREN, - STATE(76), 1, + STATE(71), 1, sym_delim_token_tree, - [42439] = 3, + [43236] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2850), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42451] = 5, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2857), 1, + anon_sym_RBRACE, + STATE(1437), 1, + sym_field_pattern, + [43252] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2480), 1, + sym_super, + ACTIONS(2859), 1, + sym_identifier, + STATE(873), 1, + sym_type_arguments, + [43268] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2431), 1, + ACTIONS(2456), 1, anon_sym_LBRACE, - ACTIONS(2435), 1, + ACTIONS(2460), 1, anon_sym_LBRACK, - ACTIONS(2441), 1, + ACTIONS(2466), 1, anon_sym_LPAREN, - STATE(82), 1, + STATE(77), 1, sym_delim_token_tree, - [42467] = 3, + [43284] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 2, - anon_sym_COLON, + ACTIONS(2428), 1, anon_sym_PIPE, - ACTIONS(2225), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42479] = 4, + ACTIONS(2861), 1, + anon_sym_SEMI, + ACTIONS(2863), 1, + anon_sym_COLON, + ACTIONS(2865), 1, + anon_sym_EQ, + [43300] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - STATE(1292), 1, + STATE(1293), 1, sym_use_list, - ACTIONS(2852), 2, + ACTIONS(2867), 2, sym_identifier, sym_super, - [42493] = 5, + [43314] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2453), 1, - sym_super, - ACTIONS(2854), 1, - sym_identifier, - STATE(859), 1, - sym_type_arguments, - [42509] = 4, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2869), 1, + anon_sym_SEMI, + ACTIONS(2871), 1, + anon_sym_COLON, + ACTIONS(2873), 1, + anon_sym_EQ, + [43330] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 1, - anon_sym_PIPE, - ACTIONS(2856), 1, - anon_sym_COLON_COLON, - ACTIONS(2636), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42523] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2875), 1, + anon_sym_LPAREN, + STATE(998), 1, + sym_parameters, + STATE(1458), 1, + sym_type_parameters, + [43346] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - ACTIONS(2858), 1, - anon_sym_RBRACE, - STATE(1399), 1, - sym_field_pattern, - [42539] = 2, + ACTIONS(2754), 1, + anon_sym_LPAREN, + ACTIONS(2877), 1, + anon_sym_COLON_COLON, + ACTIONS(2245), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [43360] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2423), 3, + ACTIONS(2185), 2, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42548] = 4, + ACTIONS(2879), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43372] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2860), 1, - anon_sym_SEMI, - STATE(1495), 1, + ACTIONS(2710), 1, + anon_sym_LBRACE, + STATE(335), 1, + sym_enum_variant_list, + STATE(1462), 1, sym_type_parameters, - [42561] = 4, + [43388] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2429), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(874), 1, - sym_type_arguments, - [42574] = 3, + ACTIONS(2881), 1, + anon_sym_if, + STATE(70), 2, + sym_block, + sym_if_expression, + [43402] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2864), 1, - anon_sym_COLON, - ACTIONS(2862), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [42585] = 3, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2611), 1, + anon_sym_EQ, + ACTIONS(2883), 1, + anon_sym_SEMI, + STATE(1485), 1, + sym_type_parameters, + [43418] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 1, - anon_sym_POUND, - ACTIONS(1218), 2, - sym_numeric_literal, - sym_identifier, - [42596] = 3, + ACTIONS(2247), 1, + anon_sym_COLON_COLON, + ACTIONS(2754), 1, + anon_sym_LPAREN, + ACTIONS(2245), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43432] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 1, + ACTIONS(2185), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2744), 2, + ACTIONS(2245), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42607] = 4, + [43444] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2858), 1, - anon_sym_RBRACE, - ACTIONS(2866), 1, - anon_sym_COMMA, - STATE(1247), 1, - aux_sym_struct_pattern_repeat1, - [42620] = 2, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(2770), 1, + sym_super, + ACTIONS(2772), 1, + sym_identifier, + STATE(873), 1, + sym_type_arguments, + [43460] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2868), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [42629] = 3, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(2750), 1, + sym_super, + ACTIONS(2756), 1, + sym_identifier, + STATE(871), 1, + sym_type_arguments, + [43476] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2870), 1, - anon_sym_in, - ACTIONS(2872), 2, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(2750), 1, sym_super, - sym_crate, - [42640] = 4, + ACTIONS(2756), 1, + sym_identifier, + STATE(872), 1, + sym_type_arguments, + [43492] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2874), 1, - anon_sym_RBRACE, - ACTIONS(2876), 1, - anon_sym_COMMA, - STATE(1152), 1, - aux_sym_use_list_repeat1, - [42653] = 4, + ACTIONS(2885), 1, + anon_sym_COLON_COLON, + ACTIONS(2185), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43504] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2879), 1, - anon_sym_COMMA, - ACTIONS(2881), 1, - anon_sym_GT, - STATE(1174), 1, - aux_sym_type_arguments_repeat1, - [42666] = 2, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2201), 1, + anon_sym_BANG, + ACTIONS(2500), 1, + anon_sym_COLON_COLON, + STATE(879), 1, + sym_type_arguments, + [43520] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2883), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(977), 1, + anon_sym_RPAREN, + ACTIONS(2666), 1, anon_sym_COMMA, - [42675] = 4, + STATE(1231), 1, + aux_sym_parameters_repeat1, + [43533] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1482), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, + ACTIONS(2887), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - [42688] = 3, + [43542] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, + ACTIONS(2382), 1, anon_sym_PIPE, - ACTIONS(2825), 2, + ACTIONS(2741), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42699] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2887), 1, - anon_sym_LBRACE, - STATE(874), 1, - sym_type_arguments, - [42712] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1468), 1, - anon_sym_RBRACK, - ACTIONS(2889), 1, - anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - [42725] = 4, + [43553] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(2891), 1, + anon_sym_COLON, + ACTIONS(2889), 2, anon_sym_RBRACE, - ACTIONS(2893), 1, anon_sym_COMMA, - STATE(1159), 1, - aux_sym_field_initializer_list_repeat1, - [42738] = 4, + [43564] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2196), 1, - anon_sym_fn, - ACTIONS(2896), 1, - anon_sym_type, - STATE(1532), 1, - sym_function, - [42751] = 4, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2722), 1, + anon_sym_EQ, + STATE(1640), 1, + sym_type_parameters, + [43577] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1532), 1, - anon_sym_LBRACE, - ACTIONS(2898), 1, - anon_sym_COLON_COLON, - STATE(450), 1, - sym_field_initializer_list, - [42764] = 3, + ACTIONS(2893), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43586] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 1, - anon_sym_COLON_COLON, - ACTIONS(2900), 2, + ACTIONS(2895), 1, anon_sym_COMMA, + ACTIONS(2897), 1, anon_sym_GT, - [42775] = 2, + STATE(1316), 1, + aux_sym_type_arguments_repeat1, + [43599] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(470), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42784] = 4, + ACTIONS(1515), 1, + anon_sym_LBRACE, + ACTIONS(2899), 1, + anon_sym_SEMI, + STATE(319), 1, + sym_block, + [43612] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2591), 1, - anon_sym_COMMA, - ACTIONS(2593), 1, + ACTIONS(1493), 1, anon_sym_RPAREN, - STATE(1309), 1, - aux_sym_parameters_repeat1, - [42797] = 4, + ACTIONS(2901), 1, + anon_sym_COMMA, + STATE(1075), 1, + aux_sym_tuple_pattern_repeat1, + [43625] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1959), 1, - anon_sym_RPAREN, - ACTIONS(2902), 1, + ACTIONS(2148), 1, + anon_sym_RBRACE, + ACTIONS(2903), 1, anon_sym_COMMA, - STATE(1165), 1, - aux_sym_arguments_repeat1, - [42810] = 4, + STATE(1270), 1, + aux_sym_use_list_repeat1, + [43638] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(595), 1, - anon_sym_RPAREN, + ACTIONS(1477), 1, + anon_sym_RBRACK, ACTIONS(2905), 1, anon_sym_COMMA, - STATE(1165), 1, - aux_sym_arguments_repeat1, - [42823] = 2, + STATE(1075), 1, + aux_sym_tuple_pattern_repeat1, + [43651] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2907), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43660] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(553), 3, + ACTIONS(493), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42832] = 3, + [43669] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2907), 1, - anon_sym_in, - ACTIONS(2909), 2, - sym_super, - sym_crate, - [42843] = 4, + ACTIONS(2909), 1, + anon_sym_RBRACE, + ACTIONS(2911), 1, + anon_sym_COMMA, + STATE(1272), 1, + aux_sym_struct_pattern_repeat1, + [43682] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, + ACTIONS(1567), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, - anon_sym_SEMI, - STATE(316), 1, - sym_declaration_list, - [42856] = 2, + ACTIONS(2913), 1, + anon_sym_COLON_COLON, + STATE(451), 1, + sym_field_initializer_list, + [43695] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(494), 3, + ACTIONS(2185), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42865] = 2, + [43704] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(529), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42874] = 2, + ACTIONS(2915), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43713] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1243), 1, + anon_sym_POUND, + ACTIONS(1245), 2, + sym_numeric_literal, + sym_identifier, + [43724] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2427), 3, + ACTIONS(2374), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42883] = 2, + [43733] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2421), 3, + ACTIONS(544), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42892] = 4, + [43742] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1516), 1, - anon_sym_GT, - ACTIONS(2913), 1, - anon_sym_COMMA, - STATE(1273), 1, - aux_sym_type_arguments_repeat1, - [42905] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2419), 3, + ACTIONS(2374), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42914] = 4, + [43751] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1454), 1, - anon_sym_RPAREN, - ACTIONS(2915), 1, + ACTIONS(2917), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - [42927] = 2, + [43760] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2403), 3, + ACTIONS(477), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42936] = 2, + [43769] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2395), 3, + ACTIONS(524), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42945] = 4, + [43778] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2196), 1, - anon_sym_fn, - ACTIONS(2917), 1, - anon_sym_type, - STATE(1576), 1, - sym_function, - [42958] = 4, + ACTIONS(2678), 1, + anon_sym_COMMA, + ACTIONS(2680), 1, + anon_sym_RPAREN, + STATE(1159), 1, + aux_sym_parameters_repeat1, + [43791] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1480), 1, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2820), 2, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2919), 1, + [43802] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2919), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - [42971] = 4, + [43811] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2921), 1, + ACTIONS(2921), 3, anon_sym_RBRACE, - ACTIONS(2923), 1, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1291), 1, - aux_sym_enum_variant_list_repeat2, - [42984] = 3, + [43820] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2927), 1, - anon_sym_COLON, - ACTIONS(2925), 2, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, + sym_mutable_specifier, + STATE(1437), 1, + sym_field_pattern, + [43833] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2923), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43844] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2925), 3, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - [42995] = 4, + [43853] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2834), 1, + ACTIONS(2927), 1, anon_sym_RBRACE, ACTIONS(2929), 1, anon_sym_COMMA, - STATE(1247), 1, + STATE(1309), 1, aux_sym_struct_pattern_repeat1, - [43008] = 2, + [43866] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2223), 1, + anon_sym_fn, + ACTIONS(2931), 1, + anon_sym_type, + STATE(1496), 1, + sym_function, + [43879] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2933), 1, + anon_sym_PIPE, + ACTIONS(2935), 1, + anon_sym_EQ_GT, + ACTIONS(2937), 1, + anon_sym_if, + [43892] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2409), 3, + ACTIONS(481), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43017] = 4, + [43901] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1492), 1, + ACTIONS(2599), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2939), 1, anon_sym_SEMI, - STATE(304), 1, - sym_block, - [43030] = 2, + STATE(336), 1, + sym_declaration_list, + [43914] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2739), 1, + anon_sym_COLON_COLON, + ACTIONS(2941), 2, + anon_sym_COMMA, + anon_sym_GT, + [43925] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2943), 1, + anon_sym_RBRACE, + ACTIONS(2945), 1, + anon_sym_COMMA, + STATE(1324), 1, + aux_sym_enum_variant_list_repeat2, + [43938] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(478), 3, + ACTIONS(489), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43039] = 2, + [43947] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(486), 3, + ACTIONS(508), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43048] = 4, + [43956] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2933), 1, + ACTIONS(2949), 1, + anon_sym_COLON, + ACTIONS(2947), 2, anon_sym_RBRACE, - ACTIONS(2935), 1, anon_sym_COMMA, - STATE(1284), 1, - aux_sym_field_declaration_list_repeat1, - [43061] = 3, + [43967] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2939), 1, - anon_sym_COLON, - ACTIONS(2937), 2, - anon_sym_RBRACE, + ACTIONS(2258), 1, + anon_sym_COLON_COLON, + ACTIONS(2941), 2, anon_sym_COMMA, - [43072] = 2, + anon_sym_GT, + [43978] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2409), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43081] = 3, + ACTIONS(2585), 1, + anon_sym_RPAREN, + ACTIONS(2951), 1, + anon_sym_COMMA, + STATE(1201), 1, + aux_sym_function_repeat1, + [43991] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 1, + ACTIONS(1243), 1, anon_sym_POUND, - ACTIONS(1218), 2, + ACTIONS(1245), 2, anon_sym_pub, sym_identifier, - [43092] = 4, + [44002] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(688), 1, - anon_sym_RBRACK, - ACTIONS(1883), 1, + ACTIONS(1966), 1, + anon_sym_RPAREN, + ACTIONS(2954), 1, anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [43105] = 4, + STATE(1203), 1, + aux_sym_arguments_repeat1, + [44015] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2001), 1, - anon_sym_RBRACK, - ACTIONS(2941), 1, + ACTIONS(2957), 1, + anon_sym_RBRACE, + ACTIONS(2959), 1, anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [43118] = 2, + STATE(1301), 1, + aux_sym_field_declaration_list_repeat1, + [44028] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2401), 3, + ACTIONS(2386), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43127] = 2, + [44037] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2399), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43136] = 4, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2452), 1, + anon_sym_LBRACE, + STATE(887), 1, + sym_type_arguments, + [44050] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2944), 1, - anon_sym_RBRACE, - ACTIONS(2946), 1, + ACTIONS(708), 1, + anon_sym_RBRACK, + ACTIONS(1892), 1, anon_sym_COMMA, - STATE(1149), 1, - aux_sym_struct_pattern_repeat1, - [43149] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2389), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43158] = 4, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [44063] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2196), 1, - anon_sym_fn, - ACTIONS(2948), 1, - anon_sym_type, - STATE(1553), 1, - sym_function, - [43171] = 4, + ACTIONS(1958), 1, + anon_sym_RBRACK, + ACTIONS(2961), 1, + anon_sym_COMMA, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [44076] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, + ACTIONS(2599), 1, anon_sym_LBRACE, - ACTIONS(2950), 1, + ACTIONS(2964), 1, anon_sym_SEMI, - STATE(331), 1, + STATE(337), 1, sym_declaration_list, - [43184] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2540), 1, - anon_sym_RPAREN, - ACTIONS(2952), 1, - anon_sym_COMMA, - STATE(1200), 1, - aux_sym_function_repeat1, - [43197] = 2, + [44089] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2955), 3, + ACTIONS(2966), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43206] = 4, + [44098] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2125), 1, - anon_sym_RBRACE, - ACTIONS(2957), 1, - anon_sym_COMMA, - STATE(1152), 1, - aux_sym_use_list_repeat1, - [43219] = 4, + ACTIONS(2382), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44107] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2742), 1, - anon_sym_RPAREN, - ACTIONS(2959), 1, - anon_sym_COMMA, - STATE(1203), 1, - aux_sym_parameters_repeat1, - [43232] = 2, + ACTIONS(2223), 1, + anon_sym_fn, + ACTIONS(2968), 1, + anon_sym_type, + STATE(1598), 1, + sym_function, + [44120] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2962), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [43241] = 2, + ACTIONS(2394), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44129] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2970), 1, + anon_sym_in, + ACTIONS(2972), 2, + sym_super, + sym_crate, + [44140] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2974), 1, + anon_sym_LBRACE, + STATE(887), 1, + sym_type_arguments, + [44153] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2964), 3, + ACTIONS(2976), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43250] = 4, + [44162] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(706), 1, - anon_sym_RBRACK, - ACTIONS(1829), 1, - anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [43263] = 4, + ACTIONS(2223), 1, + anon_sym_fn, + ACTIONS(2978), 1, + anon_sym_type, + STATE(1518), 1, + sym_function, + [44175] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(384), 1, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(2966), 1, + ACTIONS(2980), 1, anon_sym_SEMI, - STATE(533), 1, + STATE(563), 1, sym_block, - [43276] = 4, + [44188] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1798), 1, + ACTIONS(1829), 1, anon_sym_LBRACE, - ACTIONS(2968), 1, + ACTIONS(2982), 1, anon_sym_COLON_COLON, - STATE(783), 1, + STATE(799), 1, sym_field_initializer_list, - [43289] = 4, + [44201] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, - anon_sym_LBRACE, - ACTIONS(2970), 1, - anon_sym_SEMI, - STATE(285), 1, - sym_declaration_list, - [43302] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1512), 1, - anon_sym_GT, - ACTIONS(2972), 1, + ACTIONS(2984), 1, + anon_sym_RBRACE, + ACTIONS(2986), 1, anon_sym_COMMA, - STATE(1273), 1, - aux_sym_type_arguments_repeat1, - [43315] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2579), 1, - anon_sym_LBRACE, - ACTIONS(2974), 1, - anon_sym_SEMI, - STATE(302), 1, - sym_field_declaration_list, - [43328] = 2, + STATE(1220), 1, + aux_sym_struct_pattern_repeat1, + [44214] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(474), 3, + ACTIONS(2428), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43337] = 2, + [44223] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2417), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43346] = 4, + ACTIONS(1567), 1, + anon_sym_LBRACE, + ACTIONS(2989), 1, + anon_sym_COLON_COLON, + STATE(451), 1, + sym_field_initializer_list, + [44236] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2976), 1, - anon_sym_COMMA, - ACTIONS(2978), 1, - anon_sym_GT, - STATE(1210), 1, - aux_sym_type_arguments_repeat1, - [43359] = 2, + ACTIONS(2991), 1, + anon_sym_in, + ACTIONS(2993), 2, + sym_super, + sym_crate, + [44247] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2980), 3, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2995), 2, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_COMMA, - [43368] = 2, + [44258] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2982), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2997), 1, anon_sym_COMMA, - [43377] = 4, + ACTIONS(3000), 1, + anon_sym_GT, + STATE(1225), 1, + aux_sym_type_arguments_repeat1, + [44271] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(2984), 1, + ACTIONS(3002), 1, anon_sym_SEMI, - STATE(491), 1, - sym_declaration_list, - [43390] = 2, + STATE(309), 1, + sym_block, + [44284] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2387), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43399] = 2, + ACTIONS(2223), 1, + anon_sym_fn, + ACTIONS(3004), 1, + anon_sym_type, + STATE(1611), 1, + sym_function, + [44297] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2986), 3, - anon_sym_RBRACE, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, anon_sym_SEMI, - anon_sym_COMMA, - [43408] = 2, + STATE(543), 1, + sym_declaration_list, + [44310] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2988), 3, + ACTIONS(2293), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3008), 1, anon_sym_COMMA, - [43417] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2990), 1, - anon_sym_PIPE, - ACTIONS(2992), 1, - anon_sym_EQ_GT, - ACTIONS(2994), 1, - anon_sym_if, - [43430] = 4, + STATE(1266), 1, + aux_sym_field_initializer_list_repeat1, + [44323] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2799), 1, + ACTIONS(973), 1, + anon_sym_RPAREN, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(2801), 1, - anon_sym_GT, - STATE(1262), 1, - aux_sym_type_parameters_repeat1, - [43443] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2381), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43452] = 2, + STATE(1231), 1, + aux_sym_parameters_repeat1, + [44336] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43461] = 4, + ACTIONS(2839), 1, + anon_sym_RPAREN, + ACTIONS(3012), 1, + anon_sym_COMMA, + STATE(1231), 1, + aux_sym_parameters_repeat1, + [44349] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, + ACTIONS(2599), 1, anon_sym_LBRACE, - ACTIONS(2996), 1, + ACTIONS(3015), 1, anon_sym_SEMI, - STATE(301), 1, + STATE(333), 1, sym_declaration_list, - [43474] = 4, + [44362] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1833), 1, - anon_sym_RPAREN, - ACTIONS(2998), 1, + ACTIONS(2388), 1, + anon_sym_RBRACE, + ACTIONS(3017), 1, anon_sym_COMMA, - STATE(1200), 1, - aux_sym_function_repeat1, - [43487] = 3, + STATE(1234), 1, + aux_sym_enum_variant_list_repeat2, + [44375] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(3000), 2, + ACTIONS(3019), 1, anon_sym_RBRACE, + ACTIONS(3021), 1, anon_sym_COMMA, - [43498] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(3002), 1, - anon_sym_COLON_COLON, - STATE(861), 1, - sym_type_arguments, - [43511] = 4, + STATE(1234), 1, + aux_sym_enum_variant_list_repeat2, + [44388] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2276), 1, + ACTIONS(3026), 1, + anon_sym_COLON, + ACTIONS(3024), 2, anon_sym_RBRACE, - ACTIONS(3004), 1, anon_sym_COMMA, - STATE(1159), 1, - aux_sym_field_initializer_list_repeat1, - [43524] = 4, + [44399] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - STATE(1399), 1, - sym_field_pattern, - [43537] = 3, + ACTIONS(2450), 1, + anon_sym_RBRACE, + ACTIONS(3028), 1, + anon_sym_COMMA, + STATE(1238), 1, + aux_sym_field_declaration_list_repeat1, + [44412] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3008), 1, - anon_sym_COLON, - ACTIONS(3006), 2, - anon_sym_RBRACE, + ACTIONS(718), 1, + anon_sym_RBRACK, + ACTIONS(1845), 1, anon_sym_COMMA, - [43548] = 2, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [44425] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3010), 3, + ACTIONS(3030), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3032), 1, anon_sym_COMMA, - [43557] = 4, + STATE(1238), 1, + aux_sym_field_declaration_list_repeat1, + [44438] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(593), 1, + ACTIONS(598), 1, anon_sym_RPAREN, - ACTIONS(1885), 1, + ACTIONS(1902), 1, anon_sym_COMMA, - STATE(1165), 1, + STATE(1203), 1, aux_sym_arguments_repeat1, - [43570] = 4, + [44451] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(593), 1, + ACTIONS(598), 1, anon_sym_RPAREN, - ACTIONS(1885), 1, + ACTIONS(1902), 1, anon_sym_COMMA, - STATE(1166), 1, + STATE(1265), 1, aux_sym_arguments_repeat1, - [43583] = 4, + [44464] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, - anon_sym_LBRACE, - ACTIONS(3012), 1, - anon_sym_SEMI, - STATE(271), 1, - sym_declaration_list, - [43596] = 2, + ACTIONS(1878), 1, + anon_sym_GT, + ACTIONS(3035), 1, + anon_sym_COMMA, + STATE(1249), 1, + aux_sym_type_parameters_repeat1, + [44477] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2377), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43605] = 4, + ACTIONS(1882), 1, + anon_sym_GT, + ACTIONS(3037), 1, + anon_sym_COMMA, + STATE(1249), 1, + aux_sym_type_parameters_repeat1, + [44490] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2579), 1, + ACTIONS(2599), 1, anon_sym_LBRACE, - ACTIONS(3014), 1, + ACTIONS(3039), 1, anon_sym_SEMI, - STATE(274), 1, - sym_field_declaration_list, - [43618] = 4, + STATE(268), 1, + sym_declaration_list, + [44503] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3016), 1, - anon_sym_RBRACE, - ACTIONS(3018), 1, + ACTIONS(2800), 1, anon_sym_COMMA, - STATE(1183), 1, - aux_sym_struct_pattern_repeat1, - [43631] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2196), 1, - anon_sym_fn, - ACTIONS(3020), 1, - anon_sym_type, - STATE(1474), 1, - sym_function, - [43644] = 4, + ACTIONS(2802), 1, + anon_sym_GT, + STATE(1289), 1, + aux_sym_type_parameters_repeat1, + [44516] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3022), 1, - anon_sym_COMMA, - ACTIONS(3024), 1, - anon_sym_RPAREN, - STATE(1226), 1, - aux_sym_function_repeat1, - [43657] = 2, + ACTIONS(2577), 1, + anon_sym_LBRACE, + ACTIONS(3041), 1, + anon_sym_SEMI, + STATE(302), 1, + sym_field_declaration_list, + [44529] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2375), 3, + ACTIONS(2370), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43666] = 4, + [44538] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1541), 1, + anon_sym_GT, + ACTIONS(3043), 1, + anon_sym_COMMA, + STATE(1225), 1, + aux_sym_type_arguments_repeat1, + [44551] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1532), 1, + ACTIONS(2577), 1, anon_sym_LBRACE, - ACTIONS(3026), 1, - anon_sym_COLON_COLON, - STATE(450), 1, - sym_field_initializer_list, - [43679] = 2, + ACTIONS(3045), 1, + anon_sym_SEMI, + STATE(266), 1, + sym_field_declaration_list, + [44564] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43688] = 4, + ACTIONS(3047), 1, + anon_sym_COMMA, + ACTIONS(3050), 1, + anon_sym_GT, + STATE(1249), 1, + aux_sym_type_parameters_repeat1, + [44577] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(384), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(2739), 1, + anon_sym_COLON_COLON, + ACTIONS(3050), 2, + anon_sym_COMMA, + anon_sym_GT, + [44588] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3052), 1, anon_sym_SEMI, - STATE(489), 1, - sym_block, - [43701] = 2, + STATE(1533), 1, + sym_type_parameters, + [44601] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2391), 3, + ACTIONS(2376), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43710] = 2, + [44610] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2359), 3, + ACTIONS(2410), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43719] = 4, + [44619] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3030), 1, - anon_sym_RBRACE, - ACTIONS(3032), 1, + ACTIONS(3054), 1, anon_sym_COMMA, + ACTIONS(3056), 1, + anon_sym_GT, STATE(1247), 1, - aux_sym_struct_pattern_repeat1, - [43732] = 4, + aux_sym_type_arguments_repeat1, + [44632] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1492), 1, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(3035), 1, + ACTIONS(3058), 1, anon_sym_SEMI, - STATE(321), 1, + STATE(501), 1, sym_block, - [43745] = 4, + [44645] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, - anon_sym_LBRACE, - ACTIONS(3037), 1, - anon_sym_SEMI, - STATE(530), 1, - sym_declaration_list, - [43758] = 2, + ACTIONS(2258), 1, + anon_sym_COLON_COLON, + ACTIONS(3050), 2, + anon_sym_COMMA, + anon_sym_GT, + [44656] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2361), 3, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(3060), 1, + anon_sym_COLON_COLON, + STATE(879), 1, + sym_type_arguments, + [44669] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2426), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43767] = 4, + [44678] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, + ACTIONS(2434), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44687] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2658), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3062), 1, anon_sym_SEMI, - STATE(508), 1, + STATE(506), 1, sym_declaration_list, - [43780] = 2, + [44700] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2365), 3, + ACTIONS(2432), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43789] = 4, + [44709] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(694), 1, - anon_sym_RBRACK, - ACTIONS(1808), 1, + ACTIONS(1854), 1, + anon_sym_RPAREN, + ACTIONS(3064), 1, anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [43802] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2425), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43811] = 4, + STATE(1201), 1, + aux_sym_function_repeat1, + [44722] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, + ACTIONS(2599), 1, anon_sym_LBRACE, - ACTIONS(3041), 1, + ACTIONS(3066), 1, anon_sym_SEMI, - STATE(276), 1, + STATE(307), 1, sym_declaration_list, - [43824] = 3, + [44735] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 1, - anon_sym_COLON_COLON, - ACTIONS(3043), 2, + ACTIONS(702), 1, + anon_sym_RBRACK, + ACTIONS(1825), 1, anon_sym_COMMA, - anon_sym_GT, - [43835] = 4, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [44748] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2610), 1, - anon_sym_LBRACE, - ACTIONS(3045), 1, - anon_sym_SEMI, - STATE(538), 1, - sym_field_declaration_list, - [43848] = 3, + ACTIONS(602), 1, + anon_sym_RPAREN, + ACTIONS(3068), 1, + anon_sym_COMMA, + STATE(1203), 1, + aux_sym_arguments_repeat1, + [44761] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 1, - anon_sym_COLON_COLON, - ACTIONS(3047), 2, + ACTIONS(3070), 1, + anon_sym_RBRACE, + ACTIONS(3072), 1, anon_sym_COMMA, - anon_sym_GT, - [43859] = 3, + STATE(1266), 1, + aux_sym_field_initializer_list_repeat1, + [44774] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(3049), 2, + ACTIONS(3077), 1, + anon_sym_COLON, + ACTIONS(3075), 2, anon_sym_RBRACE, anon_sym_COMMA, - [43870] = 3, + [44785] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2724), 1, - anon_sym_COLON_COLON, - ACTIONS(3047), 2, + ACTIONS(2637), 1, + anon_sym_LBRACE, + ACTIONS(3079), 1, + anon_sym_SEMI, + STATE(541), 1, + sym_field_declaration_list, + [44798] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3081), 1, anon_sym_COMMA, - anon_sym_GT, - [43881] = 4, + ACTIONS(3083), 1, + anon_sym_RPAREN, + STATE(1262), 1, + aux_sym_function_repeat1, + [44811] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1875), 1, - anon_sym_GT, - ACTIONS(3051), 1, + ACTIONS(3085), 1, + anon_sym_RBRACE, + ACTIONS(3087), 1, anon_sym_COMMA, - STATE(1276), 1, - aux_sym_type_parameters_repeat1, - [43894] = 4, + STATE(1270), 1, + aux_sym_use_list_repeat1, + [44824] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1873), 1, - anon_sym_GT, - ACTIONS(2722), 1, + ACTIONS(3090), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1276), 1, - aux_sym_type_parameters_repeat1, - [43907] = 4, + [44833] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1873), 1, - anon_sym_GT, - ACTIONS(2722), 1, + ACTIONS(2746), 1, + anon_sym_RBRACE, + ACTIONS(3092), 1, anon_sym_COMMA, - STATE(1290), 1, - aux_sym_type_parameters_repeat1, - [43920] = 4, + STATE(1220), 1, + aux_sym_struct_pattern_repeat1, + [44846] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, + ACTIONS(2658), 1, anon_sym_LBRACE, - ACTIONS(3053), 1, + ACTIONS(3094), 1, anon_sym_SEMI, - STATE(258), 1, + STATE(524), 1, sym_declaration_list, - [43933] = 2, + [44859] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1509), 1, + anon_sym_RPAREN, + ACTIONS(3096), 1, + anon_sym_COMMA, + STATE(1075), 1, + aux_sym_tuple_pattern_repeat1, + [44872] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2357), 3, + ACTIONS(2414), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43942] = 3, + [44881] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2724), 1, + ACTIONS(2406), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44890] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2258), 1, + anon_sym_COLON_COLON, + ACTIONS(3098), 2, + anon_sym_COMMA, + anon_sym_GT, + [44901] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2739), 1, anon_sym_COLON_COLON, - ACTIONS(3043), 2, + ACTIONS(3098), 2, anon_sym_COMMA, anon_sym_GT, - [43953] = 2, + [44912] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2363), 3, + ACTIONS(2404), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43962] = 4, + [44921] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(696), 1, - anon_sym_RBRACK, - ACTIONS(3055), 1, + ACTIONS(1890), 1, + anon_sym_GT, + ACTIONS(3100), 1, anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [43975] = 2, + STATE(1249), 1, + aux_sym_type_parameters_repeat1, + [44934] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3102), 1, + anon_sym_RBRACE, + ACTIONS(3104), 1, + anon_sym_COMMA, + STATE(1168), 1, + aux_sym_use_list_repeat1, + [44947] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2392), 1, + anon_sym_RBRACE, + ACTIONS(3106), 1, + anon_sym_COMMA, + STATE(1234), 1, + aux_sym_enum_variant_list_repeat2, + [44960] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2430), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44969] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2367), 3, + ACTIONS(2390), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43984] = 4, + [44978] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2351), 1, - anon_sym_RBRACE, - ACTIONS(3057), 1, - anon_sym_COMMA, - STATE(1323), 1, - aux_sym_enum_variant_list_repeat2, - [43997] = 2, + ACTIONS(2396), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44987] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2373), 3, + ACTIONS(2348), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44006] = 2, + [44996] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2383), 3, + ACTIONS(2384), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44015] = 4, + [45005] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3059), 1, - anon_sym_COMMA, - ACTIONS(3062), 1, + ACTIONS(2599), 1, + anon_sym_LBRACE, + ACTIONS(3108), 1, + anon_sym_SEMI, + STATE(275), 1, + sym_declaration_list, + [45018] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1886), 1, anon_sym_GT, - STATE(1273), 1, - aux_sym_type_arguments_repeat1, - [44028] = 4, + ACTIONS(2737), 1, + anon_sym_COMMA, + STATE(1249), 1, + aux_sym_type_parameters_repeat1, + [45031] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2379), 1, + ACTIONS(2444), 1, anon_sym_RBRACE, - ACTIONS(3064), 1, + ACTIONS(3110), 1, anon_sym_COMMA, - STATE(1308), 1, + STATE(1238), 1, aux_sym_field_declaration_list_repeat1, - [44041] = 2, + [45044] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1886), 1, + anon_sym_GT, + ACTIONS(2737), 1, + anon_sym_COMMA, + STATE(1241), 1, + aux_sym_type_parameters_repeat1, + [45057] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2385), 3, + ACTIONS(2380), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44050] = 4, + [45066] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3043), 1, - anon_sym_GT, - ACTIONS(3066), 1, + ACTIONS(3112), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1276), 1, - aux_sym_type_parameters_repeat1, - [44063] = 4, + [45075] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(3069), 1, + ACTIONS(3114), 1, + anon_sym_RBRACE, + ACTIONS(3116), 1, + anon_sym_COMMA, + STATE(1349), 1, + aux_sym_field_initializer_list_repeat1, + [45088] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2599), 1, + anon_sym_LBRACE, + ACTIONS(3118), 1, anon_sym_SEMI, - STATE(1573), 1, - sym_type_parameters, - [44076] = 4, + STATE(285), 1, + sym_declaration_list, + [45101] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, + ACTIONS(2658), 1, anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3120), 1, anon_sym_SEMI, - STATE(523), 1, + STATE(538), 1, sym_declaration_list, - [44089] = 4, + [45114] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(597), 1, + ACTIONS(600), 1, anon_sym_RPAREN, - ACTIONS(3073), 1, + ACTIONS(3122), 1, anon_sym_COMMA, - STATE(1165), 1, + STATE(1203), 1, aux_sym_arguments_repeat1, - [44102] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3075), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [44111] = 4, + [45127] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3077), 1, - anon_sym_RBRACE, - ACTIONS(3079), 1, + ACTIONS(1906), 1, anon_sym_COMMA, - STATE(1202), 1, - aux_sym_use_list_repeat1, - [44124] = 4, + ACTIONS(1908), 1, + anon_sym_RPAREN, + STATE(1347), 1, + aux_sym_arguments_repeat1, + [45140] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2698), 1, - anon_sym_RBRACE, - ACTIONS(3081), 1, + ACTIONS(720), 1, + anon_sym_RBRACK, + ACTIONS(3124), 1, anon_sym_COMMA, - STATE(1247), 1, - aux_sym_struct_pattern_repeat1, - [44137] = 4, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [45153] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3083), 1, - anon_sym_RBRACE, - ACTIONS(3085), 1, - anon_sym_COMMA, - STATE(1324), 1, - aux_sym_field_initializer_list_repeat1, - [44150] = 4, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(3126), 1, + anon_sym_SEMI, + STATE(556), 1, + sym_declaration_list, + [45166] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2393), 1, + ACTIONS(2446), 1, anon_sym_RBRACE, - ACTIONS(3087), 1, + ACTIONS(3128), 1, anon_sym_COMMA, - STATE(1308), 1, + STATE(1238), 1, aux_sym_field_declaration_list_repeat1, - [44163] = 4, + [45179] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1474), 1, + ACTIONS(1503), 1, anon_sym_RPAREN, - ACTIONS(3089), 1, + ACTIONS(3130), 1, anon_sym_COMMA, - STATE(1045), 1, + STATE(1075), 1, aux_sym_tuple_pattern_repeat1, - [44176] = 4, + [45192] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2372), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45201] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2393), 1, + ACTIONS(2716), 1, anon_sym_RBRACE, - ACTIONS(3087), 1, + ACTIONS(3132), 1, anon_sym_COMMA, - STATE(1318), 1, - aux_sym_field_declaration_list_repeat1, - [44189] = 4, + STATE(1220), 1, + aux_sym_struct_pattern_repeat1, + [45214] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, - anon_sym_RPAREN, - STATE(1325), 1, - aux_sym_arguments_repeat1, - [44202] = 4, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3134), 1, + anon_sym_SEMI, + STATE(1634), 1, + sym_type_parameters, + [45227] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1857), 1, - anon_sym_GT, - ACTIONS(3091), 1, + ACTIONS(2446), 1, + anon_sym_RBRACE, + ACTIONS(3128), 1, anon_sym_COMMA, - STATE(1276), 1, - aux_sym_type_parameters_repeat1, - [44215] = 4, + STATE(1236), 1, + aux_sym_field_declaration_list_repeat1, + [45240] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, + ACTIONS(2398), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45249] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2658), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, + ACTIONS(3136), 1, anon_sym_SEMI, - STATE(565), 1, + STATE(528), 1, sym_declaration_list, - [44228] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1865), 1, - anon_sym_GT, - ACTIONS(3095), 1, - anon_sym_COMMA, - STATE(1276), 1, - aux_sym_type_parameters_repeat1, - [44241] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2343), 1, - anon_sym_RBRACE, - ACTIONS(3097), 1, - anon_sym_COMMA, - STATE(1323), 1, - aux_sym_enum_variant_list_repeat2, - [44254] = 2, + [45262] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3099), 3, + ACTIONS(2708), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3138), 1, anon_sym_COMMA, - [44263] = 4, + STATE(1220), 1, + aux_sym_struct_pattern_repeat1, + [45275] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1464), 1, + ACTIONS(1481), 1, anon_sym_RPAREN, - ACTIONS(3101), 1, + ACTIONS(3140), 1, anon_sym_COMMA, - STATE(1045), 1, + STATE(1075), 1, aux_sym_tuple_pattern_repeat1, - [44276] = 4, + [45288] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2366), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45297] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(3103), 1, + ACTIONS(3142), 1, anon_sym_SEMI, - STATE(1601), 1, + STATE(1514), 1, sym_type_parameters, - [44289] = 3, + [45310] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3107), 1, - anon_sym_COLON, - ACTIONS(3105), 2, - anon_sym_RBRACE, + ACTIONS(1485), 1, + anon_sym_RPAREN, + ACTIONS(3144), 1, anon_sym_COMMA, - [44300] = 4, + STATE(1075), 1, + aux_sym_tuple_pattern_repeat1, + [45323] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2690), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, - ACTIONS(3109), 1, + ACTIONS(3146), 1, anon_sym_COMMA, - STATE(1247), 1, + STATE(1220), 1, aux_sym_struct_pattern_repeat1, - [44313] = 4, + [45336] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, - anon_sym_LBRACE, - ACTIONS(3111), 1, - anon_sym_SEMI, - STATE(504), 1, - sym_declaration_list, - [44326] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2343), 1, - anon_sym_RBRACE, - ACTIONS(3097), 1, + ACTIONS(1535), 1, + anon_sym_GT, + ACTIONS(3148), 1, anon_sym_COMMA, - STATE(1326), 1, - aux_sym_enum_variant_list_repeat2, - [44339] = 4, + STATE(1225), 1, + aux_sym_type_arguments_repeat1, + [45349] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1514), 1, + ACTIONS(1539), 1, anon_sym_GT, - ACTIONS(3113), 1, + ACTIONS(3150), 1, anon_sym_COMMA, - STATE(1273), 1, + STATE(1225), 1, aux_sym_type_arguments_repeat1, - [44352] = 4, + [45362] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(956), 1, - anon_sym_RPAREN, - ACTIONS(3115), 1, + ACTIONS(704), 1, + anon_sym_RBRACK, + ACTIONS(1904), 1, anon_sym_COMMA, - STATE(1203), 1, - aux_sym_parameters_repeat1, - [44365] = 4, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [45375] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2341), 1, + ACTIONS(2420), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - STATE(1270), 1, + STATE(1282), 1, aux_sym_enum_variant_list_repeat2, - [44378] = 4, + [45388] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2341), 1, + ACTIONS(2420), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - STATE(1323), 1, + STATE(1234), 1, aux_sym_enum_variant_list_repeat2, - [44391] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2569), 1, - anon_sym_LBRACE, - ACTIONS(3119), 1, - anon_sym_SEMI, - STATE(262), 1, - sym_declaration_list, - [44404] = 4, + [45401] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(690), 1, - anon_sym_RBRACK, - ACTIONS(1841), 1, + ACTIONS(3154), 1, + anon_sym_RBRACE, + ACTIONS(3156), 1, anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [44417] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2688), 1, - anon_sym_EQ, - STATE(1570), 1, - sym_type_parameters, - [44430] = 4, + STATE(1329), 1, + aux_sym_field_declaration_list_repeat1, + [45414] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3121), 1, + ACTIONS(2448), 1, anon_sym_RBRACE, - ACTIONS(3123), 1, + ACTIONS(3158), 1, anon_sym_COMMA, - STATE(1333), 1, + STATE(1290), 1, aux_sym_field_declaration_list_repeat1, - [44443] = 4, + [45427] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3125), 1, + ACTIONS(3160), 1, anon_sym_RBRACE, - ACTIONS(3127), 1, + ACTIONS(3162), 1, anon_sym_COMMA, - STATE(1302), 1, + STATE(1319), 1, aux_sym_enum_variant_list_repeat2, - [44456] = 4, + [45440] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3129), 1, - anon_sym_RBRACE, - ACTIONS(3131), 1, - anon_sym_COMMA, - STATE(1308), 1, - aux_sym_field_declaration_list_repeat1, - [44469] = 4, + ACTIONS(2400), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45449] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(952), 1, - anon_sym_RPAREN, - ACTIONS(2651), 1, + ACTIONS(2358), 1, + anon_sym_RBRACE, + ACTIONS(3164), 1, anon_sym_COMMA, - STATE(1203), 1, - aux_sym_parameters_repeat1, - [44482] = 4, + STATE(1234), 1, + aux_sym_enum_variant_list_repeat2, + [45462] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1484), 1, + ACTIONS(1497), 1, anon_sym_RBRACK, - ACTIONS(3134), 1, + ACTIONS(3166), 1, anon_sym_COMMA, - STATE(1045), 1, + STATE(1075), 1, aux_sym_tuple_pattern_repeat1, - [44495] = 4, + [45475] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_RPAREN, - STATE(1233), 1, - aux_sym_arguments_repeat1, - [44508] = 4, + ACTIONS(2599), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + anon_sym_SEMI, + STATE(292), 1, + sym_declaration_list, + [45488] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1472), 1, + ACTIONS(1499), 1, anon_sym_RPAREN, - ACTIONS(3136), 1, + ACTIONS(3170), 1, anon_sym_COMMA, - STATE(1045), 1, + STATE(1075), 1, aux_sym_tuple_pattern_repeat1, - [44521] = 4, + [45501] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3138), 1, + ACTIONS(3172), 1, anon_sym_COMMA, - ACTIONS(3140), 1, + ACTIONS(3174), 1, anon_sym_GT, - STATE(1299), 1, + STATE(1315), 1, aux_sym_type_arguments_repeat1, - [44534] = 4, + [45514] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3142), 1, + ACTIONS(2448), 1, anon_sym_RBRACE, - ACTIONS(3144), 1, + ACTIONS(3158), 1, anon_sym_COMMA, - STATE(1296), 1, - aux_sym_struct_pattern_repeat1, - [44547] = 4, + STATE(1238), 1, + aux_sym_field_declaration_list_repeat1, + [45527] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(952), 1, - anon_sym_RPAREN, - ACTIONS(2651), 1, + ACTIONS(3176), 1, + anon_sym_RBRACE, + ACTIONS(3178), 1, anon_sym_COMMA, - STATE(1300), 1, - aux_sym_parameters_repeat1, - [44560] = 3, + STATE(1314), 1, + aux_sym_struct_pattern_repeat1, + [45540] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2724), 1, - anon_sym_COLON_COLON, - ACTIONS(2900), 2, + ACTIONS(710), 1, + anon_sym_RBRACK, + ACTIONS(3180), 1, anon_sym_COMMA, - anon_sym_GT, - [44571] = 4, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [45553] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3146), 1, + ACTIONS(3184), 1, + anon_sym_COLON, + ACTIONS(3182), 2, anon_sym_RBRACE, - ACTIONS(3148), 1, anon_sym_COMMA, - STATE(1282), 1, - aux_sym_struct_pattern_repeat1, - [44584] = 4, + [45564] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2411), 1, - anon_sym_RBRACE, - ACTIONS(3150), 1, + ACTIONS(977), 1, + anon_sym_RPAREN, + ACTIONS(2666), 1, anon_sym_COMMA, - STATE(1308), 1, - aux_sym_field_declaration_list_repeat1, - [44597] = 4, + STATE(1230), 1, + aux_sym_parameters_repeat1, + [45577] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3152), 1, - anon_sym_RBRACE, - ACTIONS(3154), 1, - anon_sym_COMMA, - STATE(1229), 1, - aux_sym_field_initializer_list_repeat1, - [44610] = 3, + ACTIONS(2402), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45586] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3158), 1, - anon_sym_COLON, - ACTIONS(3156), 2, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(3186), 1, + anon_sym_SEMI, + STATE(566), 1, + sym_declaration_list, + [45599] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3188), 1, + anon_sym_SEMI, + STATE(1581), 1, + sym_type_parameters, + [45612] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2637), 1, + anon_sym_LBRACE, + ACTIONS(3190), 1, + anon_sym_SEMI, + STATE(572), 1, + sym_field_declaration_list, + [45625] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3192), 1, anon_sym_RBRACE, + ACTIONS(3194), 1, anon_sym_COMMA, - [44621] = 4, + STATE(1304), 1, + aux_sym_struct_pattern_repeat1, + [45638] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2674), 1, + ACTIONS(2692), 1, anon_sym_EQ, - STATE(1622), 1, + STATE(1490), 1, sym_type_parameters, - [44634] = 2, + [45651] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2407), 3, + ACTIONS(2412), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44643] = 4, + [45660] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3160), 1, - anon_sym_RBRACE, - ACTIONS(3162), 1, - anon_sym_COMMA, - STATE(1323), 1, - aux_sym_enum_variant_list_repeat2, - [44656] = 4, + ACTIONS(2422), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45669] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2306), 1, - anon_sym_RBRACE, - ACTIONS(3165), 1, + ACTIONS(1894), 1, anon_sym_COMMA, - STATE(1159), 1, - aux_sym_field_initializer_list_repeat1, - [44669] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(599), 1, + ACTIONS(1896), 1, anon_sym_RPAREN, - ACTIONS(1839), 1, - anon_sym_COMMA, - STATE(1165), 1, + STATE(1239), 1, aux_sym_arguments_repeat1, - [44682] = 4, + [45682] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(3196), 1, + anon_sym_SEMI, + STATE(576), 1, + sym_declaration_list, + [45695] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2424), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45704] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2349), 1, + ACTIONS(2358), 1, anon_sym_RBRACE, - ACTIONS(3167), 1, + ACTIONS(3164), 1, anon_sym_COMMA, - STATE(1323), 1, + STATE(1233), 1, aux_sym_enum_variant_list_repeat2, - [44695] = 4, + [45717] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(599), 1, + ACTIONS(608), 1, anon_sym_RPAREN, - ACTIONS(1839), 1, + ACTIONS(1884), 1, anon_sym_COMMA, - STATE(1279), 1, + STATE(1297), 1, aux_sym_arguments_repeat1, - [44708] = 4, + [45730] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, - anon_sym_LBRACE, - ACTIONS(3169), 1, - anon_sym_SEMI, - STATE(560), 1, - sym_declaration_list, - [44721] = 4, + ACTIONS(608), 1, + anon_sym_RPAREN, + ACTIONS(1884), 1, + anon_sym_COMMA, + STATE(1203), 1, + aux_sym_arguments_repeat1, + [45743] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2610), 1, - anon_sym_LBRACE, - ACTIONS(3171), 1, - anon_sym_SEMI, - STATE(558), 1, - sym_field_declaration_list, - [44734] = 4, + ACTIONS(3200), 1, + anon_sym_COLON, + ACTIONS(3198), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45754] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(3173), 1, - anon_sym_SEMI, - STATE(1555), 1, - sym_type_parameters, - [44747] = 4, + ACTIONS(2344), 1, + anon_sym_RBRACE, + ACTIONS(3202), 1, + anon_sym_COMMA, + STATE(1266), 1, + aux_sym_field_initializer_list_repeat1, + [45767] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, - anon_sym_LBRACE, - ACTIONS(3175), 1, - anon_sym_SEMI, - STATE(552), 1, - sym_declaration_list, - [44760] = 4, + ACTIONS(3204), 1, + anon_sym_RBRACE, + ACTIONS(3206), 1, + anon_sym_COMMA, + STATE(1229), 1, + aux_sym_field_initializer_list_repeat1, + [45780] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(704), 1, - anon_sym_RBRACK, - ACTIONS(3177), 1, - anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [44773] = 4, + ACTIONS(3208), 1, + sym_identifier, + ACTIONS(3210), 1, + sym_super, + [45790] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2405), 1, + ACTIONS(3070), 2, anon_sym_RBRACE, - ACTIONS(3179), 1, anon_sym_COMMA, - STATE(1308), 1, - aux_sym_field_declaration_list_repeat1, - [44786] = 4, + [45798] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2405), 1, - anon_sym_RBRACE, - ACTIONS(3179), 1, - anon_sym_COMMA, - STATE(1274), 1, - aux_sym_field_declaration_list_repeat1, - [44799] = 3, + ACTIONS(3212), 1, + anon_sym_COLON_COLON, + ACTIONS(3214), 1, + anon_sym_RPAREN, + [45808] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3181), 1, + ACTIONS(3216), 1, anon_sym_COLON_COLON, - ACTIONS(3183), 1, + ACTIONS(3218), 1, anon_sym_RPAREN, - [44809] = 2, + [45818] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2702), 2, - sym_identifier, - sym_super, - [44817] = 3, + ACTIONS(3214), 1, + anon_sym_RPAREN, + ACTIONS(3220), 1, + anon_sym_COLON_COLON, + [45828] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(3222), 1, + anon_sym_in, + [45838] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3185), 1, + ACTIONS(3224), 1, anon_sym_BANG, - ACTIONS(3187), 1, + ACTIONS(3226), 1, anon_sym_LBRACK, - [44827] = 3, + [45848] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3183), 1, - anon_sym_RPAREN, - ACTIONS(3189), 1, - anon_sym_COLON_COLON, - [44837] = 3, + ACTIONS(3228), 1, + anon_sym_of, + ACTIONS(3230), 1, + anon_sym_EQ, + [45858] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3191), 1, + ACTIONS(3232), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3193), 1, - anon_sym_EQ, - [44847] = 3, + [45866] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2718), 1, + anon_sym_LBRACE, + STATE(571), 1, + sym_enum_variant_list, + [45876] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3195), 1, + ACTIONS(3234), 1, anon_sym_of, - ACTIONS(3197), 1, + ACTIONS(3236), 1, anon_sym_EQ, - [44857] = 3, + [45886] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2696), 1, anon_sym_PIPE, - ACTIONS(3199), 1, - anon_sym_EQ, - [44867] = 2, + ACTIONS(3238), 1, + anon_sym_in, + [45896] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3201), 2, - anon_sym_LBRACE, + ACTIONS(3240), 1, anon_sym_SEMI, - [44875] = 3, + ACTIONS(3242), 1, + anon_sym_EQ, + [45906] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3203), 1, - anon_sym_of, - ACTIONS(3205), 1, - anon_sym_EQ, - [44885] = 3, + ACTIONS(3244), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45914] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3207), 1, + ACTIONS(3246), 1, anon_sym_BANG, - ACTIONS(3209), 1, + ACTIONS(3248), 1, anon_sym_LBRACK, - [44895] = 3, + [45924] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3211), 1, + ACTIONS(3250), 1, anon_sym_BANG, - ACTIONS(3213), 1, + ACTIONS(3252), 1, anon_sym_LBRACK, - [44905] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3215), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [44913] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2694), 1, - anon_sym_LBRACE, - STATE(556), 1, - sym_enum_variant_list, - [44923] = 2, + [45934] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3217), 2, + ACTIONS(3254), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44931] = 3, + [45942] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2696), 1, anon_sym_PIPE, - ACTIONS(3219), 1, + ACTIONS(3256), 1, anon_sym_COLON, - [44941] = 2, + [45952] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3160), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [44949] = 3, + ACTIONS(3258), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45960] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2852), 1, + ACTIONS(2867), 1, sym_super, - ACTIONS(3221), 1, + ACTIONS(3260), 1, sym_identifier, - [44959] = 2, + [45970] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2900), 2, - anon_sym_COMMA, - anon_sym_GT, - [44967] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3223), 2, - sym_identifier, - sym_super, - [44975] = 2, + ACTIONS(3262), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45978] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3225), 2, + ACTIONS(3264), 2, anon_sym_type, anon_sym_fn, - [44983] = 2, + [45986] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2742), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [44991] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + ACTIONS(3266), 2, anon_sym_LBRACE, - STATE(70), 1, - sym_block, - [45001] = 2, + anon_sym_SEMI, + [45994] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3227), 2, + ACTIONS(3268), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45009] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3183), 1, - anon_sym_RPAREN, - ACTIONS(3229), 1, - anon_sym_COLON_COLON, - [45019] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3129), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45027] = 3, + [46002] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2381), 1, + ACTIONS(2696), 1, anon_sym_PIPE, - ACTIONS(3219), 1, - anon_sym_COLON, - [45037] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - STATE(445), 1, - sym_type_arguments, - [45047] = 2, + ACTIONS(3270), 1, + anon_sym_EQ, + [46012] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [45055] = 3, + STATE(78), 1, + sym_block, + [46022] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3233), 1, + ACTIONS(3272), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3235), 1, - anon_sym_EQ, - [45065] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2589), 1, - anon_sym_COLON_COLON, - [45075] = 3, + [46030] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2229), 1, + ACTIONS(2260), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3274), 1, anon_sym_LPAREN, - [45085] = 3, + [46040] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(3239), 1, - anon_sym_COLON_COLON, - [45095] = 3, + ACTIONS(497), 2, + anon_sym_COMMA, + anon_sym_GT, + [46048] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3241), 1, + ACTIONS(3276), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3243), 1, - anon_sym_RBRACK, - [45105] = 2, + [46056] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3245), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45113] = 3, + ACTIONS(3278), 1, + anon_sym_SEMI, + ACTIONS(3280), 1, + anon_sym_EQ, + [46066] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3247), 1, + ACTIONS(3282), 1, anon_sym_SEMI, - ACTIONS(3249), 1, + ACTIONS(3284), 1, anon_sym_EQ, - [45123] = 2, + [46076] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3251), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45131] = 3, + ACTIONS(3286), 2, + sym_identifier, + sym_super, + [46084] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1532), 1, + ACTIONS(1567), 1, anon_sym_LBRACE, - STATE(450), 1, + STATE(451), 1, sym_field_initializer_list, - [45141] = 2, + [46094] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(482), 2, - anon_sym_COMMA, - anon_sym_GT, - [45149] = 3, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2635), 1, + anon_sym_COLON_COLON, + [46104] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2696), 1, - anon_sym_LBRACE, - STATE(275), 1, - sym_enum_variant_list, - [45159] = 3, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(3288), 1, + anon_sym_COLON_COLON, + [46114] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3253), 1, - anon_sym_of, - ACTIONS(3255), 1, - anon_sym_EQ, - [45169] = 3, + ACTIONS(3290), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [46122] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3189), 1, - anon_sym_COLON_COLON, - ACTIONS(3257), 1, - anon_sym_RPAREN, - [45179] = 3, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_COLON, + [46132] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3181), 1, - anon_sym_COLON_COLON, - ACTIONS(3257), 1, - anon_sym_RPAREN, - [45189] = 3, + ACTIONS(3294), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [46140] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3259), 1, + ACTIONS(3296), 1, anon_sym_COLON_COLON, - ACTIONS(3261), 1, + ACTIONS(3298), 1, anon_sym_RPAREN, - [45199] = 2, + [46150] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3263), 2, + ACTIONS(3300), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45207] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3229), 1, - anon_sym_COLON_COLON, - ACTIONS(3257), 1, - anon_sym_RPAREN, - [45217] = 3, + [46158] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3265), 1, + ACTIONS(3302), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3267), 1, - anon_sym_EQ, - [45227] = 3, + [46166] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(3269), 1, - anon_sym_EQ, - [45237] = 3, + ACTIONS(3304), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [46174] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - sym_super, - [45247] = 3, + ACTIONS(3306), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46182] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3275), 1, - anon_sym_SEMI, - ACTIONS(3277), 1, - anon_sym_EQ, - [45257] = 3, + ACTIONS(2879), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46190] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3279), 1, + ACTIONS(3308), 1, anon_sym_SEMI, - ACTIONS(3281), 1, + ACTIONS(3310), 1, anon_sym_EQ, - [45267] = 2, + [46200] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3283), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45275] = 2, + ACTIONS(3312), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [46208] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3285), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45283] = 2, + ACTIONS(3314), 1, + sym_numeric_literal, + ACTIONS(3316), 1, + sym_identifier, + [46218] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3062), 2, + ACTIONS(3318), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [45291] = 2, + [46226] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3287), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45299] = 2, + ACTIONS(3320), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [46234] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3289), 2, - sym_identifier, - sym_super, - [45307] = 2, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(3322), 1, + anon_sym_EQ, + [46244] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2465), 2, + ACTIONS(3324), 2, sym_identifier, sym_super, - [45315] = 3, + [46252] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3289), 1, - sym_super, - ACTIONS(3291), 1, - sym_identifier, - [45325] = 3, + ACTIONS(2318), 1, + anon_sym_BANG, + ACTIONS(2635), 1, + anon_sym_COLON_COLON, + [46262] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3289), 1, + ACTIONS(3324), 1, sym_super, - ACTIONS(3293), 1, + ACTIONS(3326), 1, sym_identifier, - [45335] = 3, + [46272] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2700), 1, - sym_identifier, - ACTIONS(2702), 1, - sym_super, - [45345] = 2, + ACTIONS(2947), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [46280] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3295), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45353] = 3, + ACTIONS(3214), 1, + anon_sym_RPAREN, + ACTIONS(3296), 1, + anon_sym_COLON_COLON, + [46290] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(3297), 1, - anon_sym_COLON_COLON, - [45363] = 2, + ACTIONS(2941), 2, + anon_sym_COMMA, + anon_sym_GT, + [46298] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3299), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45371] = 3, + ACTIONS(2867), 2, + sym_identifier, + sym_super, + [46306] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2694), 1, - anon_sym_LBRACE, - STATE(568), 1, - sym_enum_variant_list, - [45381] = 2, + ACTIONS(2750), 1, + sym_super, + ACTIONS(2756), 1, + sym_identifier, + [46316] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3301), 2, - anon_sym_LBRACE, + ACTIONS(3328), 1, anon_sym_SEMI, - [45389] = 2, + ACTIONS(3330), 1, + anon_sym_EQ, + [46326] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3030), 2, - anon_sym_RBRACE, + ACTIONS(3332), 2, anon_sym_COMMA, - [45397] = 2, + anon_sym_GT, + [46334] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3043), 2, - anon_sym_COMMA, - anon_sym_GT, - [45405] = 2, + ACTIONS(3324), 1, + sym_super, + ACTIONS(3334), 1, + sym_identifier, + [46344] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2874), 2, - anon_sym_RBRACE, + ACTIONS(3336), 2, anon_sym_COMMA, - [45413] = 2, + anon_sym_GT, + [46352] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2891), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45421] = 3, + ACTIONS(2754), 1, + anon_sym_LPAREN, + ACTIONS(3338), 1, + anon_sym_COLON_COLON, + [46362] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3205), 1, - anon_sym_EQ, - ACTIONS(3303), 1, + ACTIONS(3340), 1, anon_sym_SEMI, - [45431] = 3, + ACTIONS(3342), 1, + anon_sym_EQ, + [46372] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2292), 1, - anon_sym_BANG, - ACTIONS(2589), 1, + ACTIONS(3220), 1, anon_sym_COLON_COLON, - [45441] = 2, + ACTIONS(3298), 1, + anon_sym_RPAREN, + [46382] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3305), 2, + ACTIONS(3085), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [45449] = 3, + [46390] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2785), 1, - anon_sym_LT2, - STATE(800), 1, - sym_type_arguments, - [45459] = 3, + ACTIONS(1982), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46398] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3307), 1, - sym_numeric_literal, - ACTIONS(3309), 1, - sym_identifier, - [45469] = 3, + ACTIONS(2718), 1, + anon_sym_LBRACE, + STATE(546), 1, + sym_enum_variant_list, + [46408] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3311), 1, + ACTIONS(3216), 1, anon_sym_COLON_COLON, - ACTIONS(3313), 1, - anon_sym_LPAREN, - [45479] = 3, + ACTIONS(3344), 1, + anon_sym_RPAREN, + [46418] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3315), 1, + ACTIONS(2867), 1, + sym_super, + ACTIONS(3346), 1, + sym_identifier, + [46428] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3317), 1, + ACTIONS(3350), 1, sym_super, - [45489] = 3, + [46438] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(821), 1, anon_sym_LBRACE, - STATE(249), 1, + STATE(297), 1, sym_block, - [45499] = 3, + [46448] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2716), 1, + ACTIONS(2750), 2, sym_identifier, - [45509] = 3, + sym_super, + [46456] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3223), 1, - sym_super, - ACTIONS(3319), 1, - sym_identifier, - [45519] = 3, + ACTIONS(1966), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46464] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2852), 1, + ACTIONS(2867), 1, sym_super, - ACTIONS(3271), 1, + ACTIONS(3208), 1, sym_identifier, - [45529] = 3, + [46474] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2787), 1, + ACTIONS(2776), 1, sym_identifier, - ACTIONS(2789), 1, + ACTIONS(2778), 1, sym_super, - [45539] = 2, + [46484] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2850), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45547] = 3, + ACTIONS(3352), 1, + anon_sym_COLON_COLON, + ACTIONS(3354), 1, + anon_sym_LPAREN, + [46494] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(384), 1, - anon_sym_LBRACE, - STATE(807), 1, - sym_block, - [45557] = 3, + ACTIONS(2490), 1, + sym_super, + ACTIONS(2849), 1, + sym_identifier, + [46504] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3321), 1, + ACTIONS(3356), 1, anon_sym_LBRACE, - STATE(642), 1, + STATE(708), 1, sym_block, - [45567] = 2, + [46514] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3323), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45575] = 3, + ACTIONS(389), 1, + anon_sym_LBRACE, + STATE(812), 1, + sym_block, + [46524] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(821), 1, anon_sym_LBRACE, - STATE(257), 1, + STATE(286), 1, sym_block, - [45585] = 2, + [46534] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3325), 2, + ACTIONS(1829), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [45593] = 2, + STATE(799), 1, + sym_field_initializer_list, + [46544] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3327), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45601] = 3, + ACTIONS(2482), 1, + anon_sym_COLON_COLON, + ACTIONS(3358), 1, + anon_sym_BANG, + [46554] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3329), 1, - anon_sym_LBRACE, - STATE(415), 1, - sym_block, - [45611] = 3, + ACTIONS(3360), 1, + anon_sym_SEMI, + ACTIONS(3362), 1, + anon_sym_EQ, + [46564] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3331), 1, + ACTIONS(3364), 1, sym_identifier, - ACTIONS(3333), 1, - sym_super, - [45621] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2465), 1, + ACTIONS(3366), 1, sym_super, - ACTIONS(2749), 1, - sym_identifier, - [45631] = 2, + [46574] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3335), 2, + ACTIONS(2984), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45639] = 2, + [46582] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3337), 2, + ACTIONS(3368), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [45647] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2465), 1, - sym_super, - ACTIONS(2716), 1, - sym_identifier, - [45657] = 2, + STATE(84), 1, + sym_block, + [46592] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1959), 2, - anon_sym_COMMA, + ACTIONS(3212), 1, + anon_sym_COLON_COLON, + ACTIONS(3298), 1, anon_sym_RPAREN, - [45665] = 3, + [46602] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2465), 1, + ACTIONS(2490), 1, sym_super, - ACTIONS(2838), 1, + ACTIONS(2748), 1, sym_identifier, - [45675] = 3, + [46612] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3223), 1, - sym_super, - ACTIONS(3293), 1, - sym_identifier, - [45685] = 3, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(68), 1, + sym_block, + [46622] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3273), 1, + ACTIONS(3236), 1, + anon_sym_EQ, + ACTIONS(3370), 1, + anon_sym_SEMI, + [46632] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3286), 1, sym_super, - ACTIONS(3339), 1, + ACTIONS(3334), 1, sym_identifier, - [45695] = 3, + [46642] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2696), 1, anon_sym_PIPE, - ACTIONS(3341), 1, - anon_sym_COLON, - [45705] = 2, + ACTIONS(3372), 1, + anon_sym_in, + [46652] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3343), 2, - anon_sym_LBRACE, + ACTIONS(3374), 1, anon_sym_SEMI, - [45713] = 3, + ACTIONS(3376), 1, + anon_sym_RBRACK, + [46662] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3345), 1, - anon_sym_LBRACE, - STATE(83), 1, - sym_block, - [45723] = 3, + ACTIONS(2748), 1, + sym_identifier, + ACTIONS(2750), 1, + sym_super, + [46672] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_block, - [45733] = 2, + ACTIONS(3050), 2, + anon_sym_COMMA, + anon_sym_GT, + [46680] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3347), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45741] = 3, + ACTIONS(3286), 1, + sym_super, + ACTIONS(3378), 1, + sym_identifier, + [46690] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2823), 1, - anon_sym_LPAREN, - STATE(973), 1, - sym_parameters, - [45751] = 2, + ACTIONS(3000), 2, + anon_sym_COMMA, + anon_sym_GT, + [46698] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3349), 2, + ACTIONS(3380), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45759] = 2, + [46706] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1985), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45767] = 3, + ACTIONS(2774), 1, + anon_sym_LT2, + STATE(807), 1, + sym_type_arguments, + [46716] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(3382), 1, + sym_numeric_literal, + ACTIONS(3384), 1, + sym_identifier, + [46726] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, + anon_sym_LT2, + STATE(489), 1, + sym_type_arguments, + [46736] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3386), 2, anon_sym_LBRACE, - STATE(292), 1, - sym_enum_variant_list, - [45777] = 2, + anon_sym_SEMI, + [46744] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2852), 2, - sym_identifier, + ACTIONS(3286), 1, sym_super, - [45785] = 3, + ACTIONS(3388), 1, + sym_identifier, + [46754] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3223), 1, + ACTIONS(3324), 1, sym_super, - ACTIONS(3351), 1, + ACTIONS(3390), 1, sym_identifier, - [45795] = 2, + [46764] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2925), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45803] = 3, + ACTIONS(2710), 1, + anon_sym_LBRACE, + STATE(265), 1, + sym_enum_variant_list, + [46774] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3353), 1, - anon_sym_SEMI, - ACTIONS(3355), 1, - anon_sym_EQ, - [45813] = 3, + ACTIONS(2875), 1, + anon_sym_LPAREN, + STATE(1005), 1, + sym_parameters, + [46784] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - STATE(874), 1, - sym_type_arguments, - [45823] = 3, + ACTIONS(3392), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46792] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3289), 1, + ACTIONS(2750), 1, sym_super, - ACTIONS(3357), 1, + ACTIONS(2847), 1, sym_identifier, - [45833] = 3, + [46802] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2836), 1, - sym_identifier, - [45843] = 3, + ACTIONS(3394), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [46810] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3273), 1, + ACTIONS(2710), 1, + anon_sym_LBRACE, + STATE(278), 1, + sym_enum_variant_list, + [46820] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3210), 1, sym_super, - ACTIONS(3359), 1, + ACTIONS(3396), 1, sym_identifier, - [45853] = 3, + [46830] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1798), 1, + ACTIONS(389), 1, anon_sym_LBRACE, - STATE(783), 1, - sym_field_initializer_list, - [45863] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3361), 1, - sym_numeric_literal, - ACTIONS(3363), 1, - sym_identifier, - [45873] = 3, + STATE(789), 1, + sym_block, + [46840] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3365), 1, + ACTIONS(3398), 1, sym_identifier, - ACTIONS(3367), 1, + ACTIONS(3400), 1, sym_super, - [45883] = 3, + [46850] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(384), 1, + ACTIONS(3402), 1, anon_sym_LBRACE, - STATE(789), 1, + STATE(423), 1, sym_block, - [45893] = 3, + [46860] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3369), 1, + ACTIONS(3404), 1, anon_sym_LBRACE, - STATE(229), 1, + STATE(241), 1, sym_block, - [45903] = 3, + [46870] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3259), 1, - anon_sym_COLON_COLON, - ACTIONS(3371), 1, - anon_sym_RPAREN, - [45913] = 3, + ACTIONS(2428), 1, + anon_sym_PIPE, + ACTIONS(3256), 1, + anon_sym_COLON, + [46880] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2461), 1, - anon_sym_COLON_COLON, - ACTIONS(3373), 1, - anon_sym_BANG, - [45923] = 3, + ACTIONS(3406), 1, + anon_sym_of, + ACTIONS(3408), 1, + anon_sym_EQ, + [46890] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3289), 1, - sym_super, - ACTIONS(3375), 1, - sym_identifier, - [45933] = 3, + ACTIONS(3410), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [46898] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2819), 1, - sym_identifier, - [45943] = 3, + ACTIONS(3412), 1, + anon_sym_SEMI, + ACTIONS(3414), 1, + anon_sym_EQ, + [46908] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2819), 1, + ACTIONS(2833), 1, sym_identifier, - ACTIONS(2821), 1, + ACTIONS(2835), 1, sym_super, - [45953] = 3, + [46918] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2439), 1, - anon_sym_COLON_COLON, - ACTIONS(3377), 1, - anon_sym_BANG, - [45963] = 3, + ACTIONS(3030), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [46926] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2852), 1, - sym_super, - ACTIONS(3379), 1, + ACTIONS(2490), 2, sym_identifier, - [45973] = 3, + sym_super, + [46934] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3375), 1, + ACTIONS(3416), 1, sym_identifier, - ACTIONS(3381), 1, + ACTIONS(3418), 1, + sym_super, + [46944] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2490), 1, sym_super, - [45983] = 3, + ACTIONS(2788), 1, + sym_identifier, + [46954] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2467), 1, + ACTIONS(2474), 1, anon_sym_COLON_COLON, - ACTIONS(3377), 1, + ACTIONS(3358), 1, anon_sym_BANG, - [45993] = 3, + [46964] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3383), 1, - anon_sym_SEMI, - ACTIONS(3385), 1, + ACTIONS(2472), 1, + anon_sym_COLON_COLON, + ACTIONS(3420), 1, + anon_sym_BANG, + [46974] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3422), 1, + anon_sym_of, + ACTIONS(3424), 1, anon_sym_EQ, - [46003] = 2, + [46984] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3324), 1, + sym_super, + ACTIONS(3416), 1, + sym_identifier, + [46994] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3387), 2, + ACTIONS(3019), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [46011] = 2, + [47002] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3389), 2, + ACTIONS(2839), 2, anon_sym_COMMA, - anon_sym_GT, - [46019] = 2, + anon_sym_RPAREN, + [47010] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3273), 2, - sym_identifier, - sym_super, - [46027] = 3, + ACTIONS(2442), 1, + anon_sym_LT2, + STATE(887), 1, + sym_type_arguments, + [47020] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3391), 1, - anon_sym_SEMI, - ACTIONS(3393), 1, - anon_sym_EQ, - [46037] = 3, + ACTIONS(3210), 2, + sym_identifier, + sym_super, + [47028] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3393), 1, + ACTIONS(3424), 1, anon_sym_EQ, - ACTIONS(3395), 1, - anon_sym_of, - [46047] = 3, + ACTIONS(3426), 1, + anon_sym_SEMI, + [47038] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3273), 1, + ACTIONS(3210), 1, sym_super, - ACTIONS(3365), 1, + ACTIONS(3398), 1, sym_identifier, - [46057] = 2, + [47048] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3397), 1, + ACTIONS(2750), 1, + sym_super, + ACTIONS(2833), 1, sym_identifier, - [46064] = 2, + [47058] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3399), 1, + ACTIONS(3210), 1, + sym_super, + ACTIONS(3428), 1, sym_identifier, - [46071] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3401), 1, - anon_sym_RBRACK, - [46078] = 2, + [47068] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - [46085] = 2, + ACTIONS(3430), 1, + sym_numeric_literal, + [47075] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3405), 1, - anon_sym_SEMI, - [46092] = 2, + ACTIONS(3408), 1, + anon_sym_EQ, + [47082] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3407), 1, + ACTIONS(3432), 1, anon_sym_RBRACK, - [46099] = 2, + [47089] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2455), 1, + ACTIONS(2464), 1, anon_sym_COLON_COLON, - [46106] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3409), 1, - anon_sym_RBRACK, - [46113] = 2, + [47096] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3411), 1, + ACTIONS(3434), 1, anon_sym_RBRACK, - [46120] = 2, + [47103] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3413), 1, - anon_sym_RBRACK, - [46127] = 2, + ACTIONS(3436), 1, + anon_sym_COLON, + [47110] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2933), 1, - anon_sym_RBRACE, - [46134] = 2, + ACTIONS(3438), 1, + anon_sym_SEMI, + [47117] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2927), 1, - anon_sym_COLON, - [46141] = 2, + ACTIONS(3440), 1, + anon_sym_SEMI, + [47124] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3415), 1, + ACTIONS(3442), 1, sym_identifier, - [46148] = 2, + [47131] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3417), 1, - sym_identifier, - [46155] = 2, + ACTIONS(3444), 1, + anon_sym_COLON_COLON, + [47138] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3419), 1, + ACTIONS(718), 1, anon_sym_RBRACK, - [46162] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3421), 1, - sym_identifier, - [46169] = 2, + [47145] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3423), 1, + ACTIONS(3446), 1, sym_identifier, - [46176] = 2, + [47152] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3425), 1, + ACTIONS(3448), 1, sym_identifier, - [46183] = 2, + [47159] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3427), 1, - sym_identifier, - [46190] = 2, + ACTIONS(3450), 1, + anon_sym_RBRACK, + [47166] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3429), 1, + ACTIONS(3452), 1, anon_sym_DQUOTE, - [46197] = 2, + [47173] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3431), 1, - anon_sym_SEMI, - [46204] = 2, + ACTIONS(3454), 1, + anon_sym_DQUOTE, + [47180] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3433), 1, + ACTIONS(3456), 1, sym_identifier, - [46211] = 2, + [47187] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3435), 1, + ACTIONS(3458), 1, anon_sym_RBRACK, - [46218] = 2, + [47194] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(706), 1, - anon_sym_RBRACK, - [46225] = 2, + ACTIONS(3460), 1, + anon_sym_RBRACE, + [47201] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3437), 1, - anon_sym_SEMI, - [46232] = 2, + ACTIONS(3462), 1, + sym_identifier, + [47208] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3439), 1, - anon_sym_SEMI, - [46239] = 2, + ACTIONS(3464), 1, + anon_sym_EQ_GT, + [47215] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3121), 1, + ACTIONS(3466), 1, anon_sym_RBRACE, - [46246] = 2, + [47222] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2921), 1, - anon_sym_RBRACE, - [46253] = 2, + ACTIONS(2806), 1, + anon_sym_RBRACK, + [47229] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3441), 1, - anon_sym_RBRACE, - [46260] = 2, + ACTIONS(3468), 1, + sym_identifier, + [47236] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3443), 1, - anon_sym_RBRACE, - [46267] = 2, + ACTIONS(3470), 1, + sym_identifier, + [47243] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3445), 1, - sym_identifier, - [46274] = 2, + ACTIONS(3472), 1, + anon_sym_SEMI, + [47250] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(684), 1, - anon_sym_RBRACK, - [46281] = 2, + ACTIONS(2798), 1, + anon_sym_RPAREN, + [47257] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3447), 1, + ACTIONS(3474), 1, anon_sym_RBRACK, - [46288] = 2, + [47264] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3449), 1, - anon_sym_COLON_COLON, - [46295] = 2, + ACTIONS(3476), 1, + anon_sym_RBRACK, + [47271] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3451), 1, - anon_sym_DQUOTE, - [46302] = 2, + ACTIONS(3478), 1, + anon_sym_SEMI, + [47278] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3453), 1, + ACTIONS(612), 1, anon_sym_RBRACK, - [46309] = 2, + [47285] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2593), 1, - anon_sym_RPAREN, - [46316] = 2, + ACTIONS(3480), 1, + sym_identifier, + [47292] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3455), 1, + ACTIONS(3482), 1, anon_sym_RBRACK, - [46323] = 2, + [47299] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3457), 1, + ACTIONS(3484), 1, sym_identifier, - [46330] = 2, + [47306] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3459), 1, + ACTIONS(3486), 1, sym_identifier, - [46337] = 2, + [47313] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3461), 1, + ACTIONS(3488), 1, sym_identifier, - [46344] = 2, + [47320] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3463), 1, + ACTIONS(3490), 1, sym_identifier, - [46351] = 2, + [47327] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3465), 1, + ACTIONS(3492), 1, sym_identifier, - [46358] = 2, + [47334] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3467), 1, - anon_sym_EQ_GT, - [46365] = 2, + ACTIONS(3494), 1, + sym_identifier, + [47341] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3469), 1, - sym_identifier, - [46372] = 2, + ACTIONS(3496), 1, + anon_sym_DQUOTE, + [47348] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2653), 1, - anon_sym_RBRACK, - [46379] = 2, + ACTIONS(3498), 1, + sym_identifier, + [47355] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3471), 1, - anon_sym_EQ_GT, - [46386] = 2, + ACTIONS(3500), 1, + anon_sym_RBRACK, + [47362] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3473), 1, - sym_numeric_literal, - [46393] = 2, + ACTIONS(3502), 1, + anon_sym_RBRACK, + [47369] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3475), 1, - anon_sym_COLON_COLON, - [46400] = 2, + ACTIONS(2314), 1, + sym_identifier, + [47376] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3477), 1, + ACTIONS(3504), 1, anon_sym_SEMI, - [46407] = 2, - ACTIONS(3479), 1, + [47383] = 2, + ACTIONS(3506), 1, aux_sym_string_literal_token2, - ACTIONS(3481), 1, + ACTIONS(3508), 1, sym_line_comment, - [46414] = 2, + [47390] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2011), 1, + ACTIONS(2068), 1, anon_sym_COLON_COLON, - [46421] = 2, + [47397] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3483), 1, + ACTIONS(3510), 1, anon_sym_SEMI, - [46428] = 2, + [47404] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3485), 1, - anon_sym_RBRACK, - [46435] = 2, + ACTIONS(3512), 1, + sym_identifier, + [47411] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2767), 1, - anon_sym_RPAREN, - [46442] = 2, + ACTIONS(3514), 1, + anon_sym_DQUOTE, + [47418] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3487), 1, - sym_identifier, - [46449] = 2, + ACTIONS(3516), 1, + anon_sym_SEMI, + [47425] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3489), 1, - anon_sym_DQUOTE, - [46456] = 2, + ACTIONS(702), 1, + anon_sym_RBRACK, + [47432] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2278), 1, - sym_identifier, - [46463] = 2, + ACTIONS(3518), 1, + anon_sym_RBRACK, + [47439] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3152), 1, - anon_sym_RBRACE, - [46470] = 2, + ACTIONS(3520), 1, + anon_sym_EQ_GT, + [47446] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2254), 1, + ACTIONS(2251), 1, anon_sym_COLON_COLON, - [46477] = 2, + [47453] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3491), 1, - anon_sym_DQUOTE, - [46484] = 2, + ACTIONS(3522), 1, + sym_identifier, + [47460] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3493), 1, - anon_sym_SEMI, - [46491] = 2, + ACTIONS(3524), 1, + anon_sym_EQ_GT, + [47467] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3495), 1, + ACTIONS(3526), 1, anon_sym_SEMI, - [46498] = 2, + [47474] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3497), 1, + ACTIONS(3528), 1, anon_sym_COLON_COLON, - [46505] = 2, + [47481] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3499), 1, - anon_sym_EQ_GT, - [46512] = 2, + ACTIONS(3530), 1, + anon_sym_COLON_COLON, + [47488] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3501), 1, - anon_sym_RBRACE, - [46519] = 2, + ACTIONS(3532), 1, + anon_sym_EQ_GT, + [47495] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3503), 1, - anon_sym_RBRACK, - [46526] = 2, + ACTIONS(3534), 1, + anon_sym_SEMI, + [47502] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3505), 1, + ACTIONS(3536), 1, sym_identifier, - [46533] = 2, + [47509] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3507), 1, - sym_identifier, - [46540] = 2, + ACTIONS(2782), 1, + anon_sym_RPAREN, + [47516] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3509), 1, + ACTIONS(3538), 1, sym_identifier, - [46547] = 2, + [47523] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3511), 1, + ACTIONS(3540), 1, sym_identifier, - [46554] = 2, + [47530] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3542), 1, + anon_sym_RBRACK, + [47537] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3016), 1, + ACTIONS(3544), 1, anon_sym_RBRACE, - [46561] = 2, + [47544] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3513), 1, + ACTIONS(3546), 1, sym_identifier, - [46568] = 2, + [47551] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3515), 1, + ACTIONS(3548), 1, sym_identifier, - [46575] = 2, + [47558] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3517), 1, - anon_sym_SEMI, - [46582] = 2, + ACTIONS(3550), 1, + anon_sym_RBRACK, + [47565] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(694), 1, + ACTIONS(2784), 1, anon_sym_RBRACK, - [46589] = 2, + [47572] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2842), 1, - anon_sym_RPAREN, - [46596] = 2, + ACTIONS(3552), 1, + anon_sym_EQ_GT, + [47579] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2728), 1, - anon_sym_RBRACK, - [46603] = 2, + ACTIONS(2957), 1, + anon_sym_RBRACE, + [47586] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 1, + ACTIONS(2949), 1, + anon_sym_COLON, + [47593] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3554), 1, + anon_sym_SEMI, + [47600] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3556), 1, + sym_identifier, + [47607] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3558), 1, + anon_sym_SEMI, + [47614] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2258), 1, anon_sym_COLON_COLON, - [46610] = 2, + [47621] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2353), 1, + ACTIONS(2322), 1, anon_sym_COLON_COLON, - [46617] = 2, + [47628] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2720), 1, - anon_sym_RPAREN, - [46624] = 2, + ACTIONS(3560), 1, + anon_sym_RBRACE, + [47635] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3519), 1, + ACTIONS(3562), 1, sym_identifier, - [46631] = 2, + [47642] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3521), 1, + ACTIONS(3564), 1, sym_numeric_literal, - [46638] = 2, + [47649] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3523), 1, - anon_sym_SEMI, - [46645] = 2, + ACTIONS(3566), 1, + anon_sym_DQUOTE, + [47656] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2830), 1, - anon_sym_RPAREN, - [46652] = 2, + ACTIONS(3568), 1, + anon_sym_LBRACK, + [47663] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3525), 1, - anon_sym_SEMI, - [46659] = 2, + ACTIONS(3570), 1, + anon_sym_COLON, + [47670] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3527), 1, + ACTIONS(3572), 1, sym_identifier, - [46666] = 2, + [47677] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3529), 1, - anon_sym_SEMI, - [46673] = 2, + ACTIONS(3574), 1, + anon_sym_RPAREN, + [47684] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2944), 1, + ACTIONS(2943), 1, anon_sym_RBRACE, - [46680] = 2, + [47691] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3531), 1, - anon_sym_EQ_GT, - [46687] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3533), 1, - sym_identifier, - [46694] = 2, + ACTIONS(3102), 1, + anon_sym_RBRACE, + [47698] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3535), 1, + ACTIONS(3576), 1, anon_sym_RPAREN, - [46701] = 2, + [47705] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3537), 1, + ACTIONS(3114), 1, anon_sym_RBRACE, - [46708] = 2, + [47712] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3077), 1, - anon_sym_RBRACE, - [46715] = 2, + ACTIONS(3578), 1, + anon_sym_SEMI, + [47719] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3539), 1, - anon_sym_COLON, - [46722] = 2, + ACTIONS(3580), 1, + anon_sym_SEMI, + [47726] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(676), 1, - anon_sym_RBRACK, - [46729] = 2, + ACTIONS(1908), 1, + anon_sym_RPAREN, + [47733] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3541), 1, - anon_sym_LBRACK, - [46736] = 2, + ACTIONS(3582), 1, + sym_identifier, + [47740] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3083), 1, - anon_sym_RBRACE, - [46743] = 2, + ACTIONS(616), 1, + anon_sym_RBRACK, + [47747] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3543), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - [46750] = 2, + [47754] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3545), 1, - anon_sym_COLON, - [46757] = 2, + ACTIONS(3586), 1, + anon_sym_LBRACK, + [47761] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3255), 1, - anon_sym_EQ, - [46764] = 2, + ACTIONS(3588), 1, + anon_sym_COLON, + [47768] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3547), 1, - anon_sym_EQ_GT, - [46771] = 2, + ACTIONS(3590), 1, + anon_sym_SEMI, + [47775] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3549), 1, - anon_sym_SEMI, - [46778] = 2, + ACTIONS(3592), 1, + sym_identifier, + [47782] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3551), 1, - anon_sym_SEMI, - [46785] = 2, + ACTIONS(3184), 1, + anon_sym_COLON, + [47789] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1845), 1, - anon_sym_RPAREN, - [46792] = 2, + ACTIONS(3594), 1, + anon_sym_RBRACE, + [47796] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3553), 1, + ACTIONS(3596), 1, anon_sym_SEMI, - [46799] = 2, + [47803] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3555), 1, - anon_sym_SEMI, - [46806] = 2, + ACTIONS(2853), 1, + anon_sym_RPAREN, + [47810] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3557), 1, - anon_sym_COLON, - [46813] = 2, + ACTIONS(2680), 1, + anon_sym_RPAREN, + [47817] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3559), 1, - anon_sym_COLON, - [46820] = 2, + ACTIONS(3598), 1, + sym_identifier, + [47824] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3561), 1, + ACTIONS(2909), 1, anon_sym_RBRACE, - [46827] = 2, + [47831] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3563), 1, + ACTIONS(3600), 1, anon_sym_SEMI, - [46834] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3107), 1, - anon_sym_COLON, - [46841] = 2, + [47838] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3565), 1, - sym_identifier, - [46848] = 2, + ACTIONS(3602), 1, + anon_sym_SEMI, + [47845] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3567), 1, + ACTIONS(3604), 1, anon_sym_SEMI, - [46855] = 2, + [47852] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3569), 1, - ts_builtin_sym_end, - [46862] = 2, + ACTIONS(2328), 1, + sym_identifier, + [47859] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1768), 1, - anon_sym_COLON_COLON, - [46869] = 2, - ACTIONS(3481), 1, - sym_line_comment, - ACTIONS(3571), 1, - aux_sym_string_literal_token2, - [46876] = 2, - ACTIONS(3481), 1, + ACTIONS(2845), 1, + anon_sym_RPAREN, + [47866] = 2, + ACTIONS(3508), 1, sym_line_comment, - ACTIONS(3573), 1, + ACTIONS(3606), 1, aux_sym_string_literal_token2, - [46883] = 2, + [47873] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2043), 1, + ACTIONS(2070), 1, anon_sym_COLON_COLON, - [46890] = 2, + [47880] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3575), 1, - sym_identifier, - [46897] = 2, + ACTIONS(3608), 1, + ts_builtin_sym_end, + [47887] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3577), 1, - sym_identifier, - [46904] = 2, + ACTIONS(3610), 1, + anon_sym_RBRACK, + [47894] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3579), 1, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - [46911] = 2, + [47901] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3581), 1, - anon_sym_RBRACK, - [46918] = 2, + ACTIONS(2330), 1, + sym_identifier, + [47908] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3583), 1, - anon_sym_RBRACE, - [46925] = 2, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + [47915] = 2, + ACTIONS(3508), 1, + sym_line_comment, + ACTIONS(3614), 1, + aux_sym_string_literal_token2, + [47922] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2670), 1, - anon_sym_RPAREN, - [46932] = 2, + ACTIONS(3616), 1, + anon_sym_SEMI, + [47929] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3585), 1, - anon_sym_RPAREN, - [46939] = 2, + ACTIONS(3618), 1, + sym_identifier, + [47936] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3587), 1, + ACTIONS(3620), 1, anon_sym_SEMI, - [46946] = 2, + [47943] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3589), 1, - sym_identifier, - [46953] = 2, + ACTIONS(3154), 1, + anon_sym_RBRACE, + [47950] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3591), 1, - sym_identifier, - [46960] = 2, - ACTIONS(3481), 1, + ACTIONS(3160), 1, + anon_sym_RBRACE, + [47957] = 2, + ACTIONS(3508), 1, sym_line_comment, - ACTIONS(3593), 1, + ACTIONS(3622), 1, aux_sym_string_literal_token2, - [46967] = 2, + [47964] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3595), 1, + ACTIONS(3624), 1, sym_identifier, - [46974] = 2, + [47971] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3597), 1, - anon_sym_SEMI, - [46981] = 2, + ACTIONS(3176), 1, + anon_sym_RBRACE, + [47978] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2797), 1, + ACTIONS(2885), 1, anon_sym_COLON_COLON, - [46988] = 2, + [47985] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3599), 1, - anon_sym_COLON, - [46995] = 2, - ACTIONS(3481), 1, + ACTIONS(2706), 1, + anon_sym_RPAREN, + [47992] = 2, + ACTIONS(3508), 1, sym_line_comment, - ACTIONS(3601), 1, + ACTIONS(3626), 1, aux_sym_string_literal_token2, - [47002] = 2, + [47999] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3603), 1, + ACTIONS(3628), 1, sym_identifier, - [47009] = 2, + [48006] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2639), 1, + ACTIONS(2545), 1, anon_sym_COLON_COLON, - [47016] = 2, + [48013] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3125), 1, - anon_sym_RBRACE, - [47023] = 2, + ACTIONS(3630), 1, + sym_identifier, + [48020] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2856), 1, + ACTIONS(2855), 1, anon_sym_COLON_COLON, - [47030] = 2, + [48027] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3605), 1, + ACTIONS(3632), 1, sym_identifier, - [47037] = 2, + [48034] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3607), 1, - sym_identifier, - [47044] = 2, + ACTIONS(2702), 1, + anon_sym_RPAREN, + [48041] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2684), 1, - anon_sym_RPAREN, - [47051] = 2, + ACTIONS(3204), 1, + anon_sym_RBRACE, + [48048] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2270), 1, - sym_identifier, - [47058] = 2, + ACTIONS(3634), 1, + anon_sym_SEMI, + [48055] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3609), 1, + ACTIONS(3636), 1, anon_sym_COLON, - [47065] = 2, + [48062] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3611), 1, - anon_sym_LBRACK, - [47072] = 2, + ACTIONS(3638), 1, + anon_sym_COLON, + [48069] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3613), 1, + ACTIONS(3640), 1, anon_sym_LBRACK, - [47079] = 2, + [48076] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3615), 1, + ACTIONS(3642), 1, sym_identifier, - [47086] = 2, + [48083] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3644), 1, + anon_sym_SEMI, + [48090] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3617), 1, + ACTIONS(3646), 1, anon_sym_COLON, - [47093] = 2, + [48097] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2272), 1, - sym_identifier, - [47100] = 2, + ACTIONS(3192), 1, + anon_sym_RBRACE, + [48104] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3142), 1, + ACTIONS(2927), 1, anon_sym_RBRACE, - [47107] = 2, + [48111] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3619), 1, + ACTIONS(3648), 1, anon_sym_COLON, - [47114] = 2, + [48118] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3146), 1, - anon_sym_RBRACE, - [47121] = 2, + ACTIONS(1896), 1, + anon_sym_RPAREN, + [48125] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3197), 1, + ACTIONS(3230), 1, anon_sym_EQ, - [47128] = 2, + [48132] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1869), 1, - anon_sym_RPAREN, - [47135] = 2, + ACTIONS(3650), 1, + anon_sym_RBRACE, + [48139] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3621), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - [47142] = 2, + [48146] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3623), 1, + ACTIONS(3654), 1, anon_sym_LBRACK, - [47149] = 2, + [48153] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3656), 1, + anon_sym_COLON, + [48160] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3625), 1, + ACTIONS(3658), 1, anon_sym_LBRACK, - [47156] = 2, + [48167] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3627), 1, + ACTIONS(3660), 1, anon_sym_LBRACK, - [47163] = 2, + [48174] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3662), 1, + sym_identifier, + [48181] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3664), 1, + sym_identifier, + [48188] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3629), 1, + ACTIONS(3666), 1, sym_identifier, - [47170] = 2, + [48195] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3631), 1, + ACTIONS(3668), 1, sym_identifier, - [47177] = 2, + [48202] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3633), 1, + ACTIONS(3670), 1, sym_identifier, - [47184] = 2, + [48209] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3635), 1, + ACTIONS(3672), 1, sym_identifier, - [47191] = 2, + [48216] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3637), 1, + ACTIONS(3674), 1, sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(221)] = 0, - [SMALL_STATE(222)] = 70, - [SMALL_STATE(223)] = 140, - [SMALL_STATE(224)] = 210, - [SMALL_STATE(225)] = 280, - [SMALL_STATE(226)] = 350, - [SMALL_STATE(227)] = 420, - [SMALL_STATE(228)] = 490, - [SMALL_STATE(229)] = 618, - [SMALL_STATE(230)] = 688, - [SMALL_STATE(231)] = 801, - [SMALL_STATE(232)] = 926, - [SMALL_STATE(233)] = 1039, - [SMALL_STATE(234)] = 1104, - [SMALL_STATE(235)] = 1217, - [SMALL_STATE(236)] = 1282, - [SMALL_STATE(237)] = 1407, - [SMALL_STATE(238)] = 1472, - [SMALL_STATE(239)] = 1537, - [SMALL_STATE(240)] = 1602, - [SMALL_STATE(241)] = 1715, - [SMALL_STATE(242)] = 1840, - [SMALL_STATE(243)] = 1905, - [SMALL_STATE(244)] = 2018, - [SMALL_STATE(245)] = 2082, - [SMALL_STATE(246)] = 2204, - [SMALL_STATE(247)] = 2268, - [SMALL_STATE(248)] = 2332, - [SMALL_STATE(249)] = 2396, - [SMALL_STATE(250)] = 2460, - [SMALL_STATE(251)] = 2524, - [SMALL_STATE(252)] = 2592, - [SMALL_STATE(253)] = 2656, - [SMALL_STATE(254)] = 2720, - [SMALL_STATE(255)] = 2784, - [SMALL_STATE(256)] = 2852, - [SMALL_STATE(257)] = 2916, - [SMALL_STATE(258)] = 2980, - [SMALL_STATE(259)] = 3043, - [SMALL_STATE(260)] = 3106, - [SMALL_STATE(261)] = 3169, - [SMALL_STATE(262)] = 3232, - [SMALL_STATE(263)] = 3295, - [SMALL_STATE(264)] = 3358, - [SMALL_STATE(265)] = 3421, - [SMALL_STATE(266)] = 3484, - [SMALL_STATE(267)] = 3547, - [SMALL_STATE(268)] = 3610, - [SMALL_STATE(269)] = 3673, - [SMALL_STATE(270)] = 3736, - [SMALL_STATE(271)] = 3799, - [SMALL_STATE(272)] = 3862, - [SMALL_STATE(273)] = 3925, - [SMALL_STATE(274)] = 3988, - [SMALL_STATE(275)] = 4051, - [SMALL_STATE(276)] = 4114, - [SMALL_STATE(277)] = 4177, - [SMALL_STATE(278)] = 4240, - [SMALL_STATE(279)] = 4303, - [SMALL_STATE(280)] = 4366, - [SMALL_STATE(281)] = 4429, - [SMALL_STATE(282)] = 4492, - [SMALL_STATE(283)] = 4555, - [SMALL_STATE(284)] = 4618, - [SMALL_STATE(285)] = 4681, - [SMALL_STATE(286)] = 4744, - [SMALL_STATE(287)] = 4807, - [SMALL_STATE(288)] = 4870, - [SMALL_STATE(289)] = 4933, - [SMALL_STATE(290)] = 4996, - [SMALL_STATE(291)] = 5059, - [SMALL_STATE(292)] = 5122, - [SMALL_STATE(293)] = 5185, - [SMALL_STATE(294)] = 5248, - [SMALL_STATE(295)] = 5311, - [SMALL_STATE(296)] = 5374, - [SMALL_STATE(297)] = 5437, - [SMALL_STATE(298)] = 5500, - [SMALL_STATE(299)] = 5563, - [SMALL_STATE(300)] = 5626, - [SMALL_STATE(301)] = 5689, - [SMALL_STATE(302)] = 5752, - [SMALL_STATE(303)] = 5815, - [SMALL_STATE(304)] = 5878, - [SMALL_STATE(305)] = 5941, - [SMALL_STATE(306)] = 6004, - [SMALL_STATE(307)] = 6067, - [SMALL_STATE(308)] = 6130, - [SMALL_STATE(309)] = 6193, - [SMALL_STATE(310)] = 6256, - [SMALL_STATE(311)] = 6319, - [SMALL_STATE(312)] = 6382, - [SMALL_STATE(313)] = 6445, - [SMALL_STATE(314)] = 6508, - [SMALL_STATE(315)] = 6571, - [SMALL_STATE(316)] = 6634, - [SMALL_STATE(317)] = 6697, - [SMALL_STATE(318)] = 6760, - [SMALL_STATE(319)] = 6823, - [SMALL_STATE(320)] = 6886, - [SMALL_STATE(321)] = 6949, - [SMALL_STATE(322)] = 7012, - [SMALL_STATE(323)] = 7075, - [SMALL_STATE(324)] = 7138, - [SMALL_STATE(325)] = 7201, - [SMALL_STATE(326)] = 7264, - [SMALL_STATE(327)] = 7327, - [SMALL_STATE(328)] = 7390, - [SMALL_STATE(329)] = 7453, - [SMALL_STATE(330)] = 7516, - [SMALL_STATE(331)] = 7579, - [SMALL_STATE(332)] = 7642, - [SMALL_STATE(333)] = 7705, - [SMALL_STATE(334)] = 7768, - [SMALL_STATE(335)] = 7831, - [SMALL_STATE(336)] = 7894, - [SMALL_STATE(337)] = 7957, - [SMALL_STATE(338)] = 8073, - [SMALL_STATE(339)] = 8189, - [SMALL_STATE(340)] = 8305, - [SMALL_STATE(341)] = 8421, - [SMALL_STATE(342)] = 8537, - [SMALL_STATE(343)] = 8650, - [SMALL_STATE(344)] = 8765, - [SMALL_STATE(345)] = 8878, - [SMALL_STATE(346)] = 8993, - [SMALL_STATE(347)] = 9108, - [SMALL_STATE(348)] = 9221, - [SMALL_STATE(349)] = 9336, - [SMALL_STATE(350)] = 9446, - [SMALL_STATE(351)] = 9552, - [SMALL_STATE(352)] = 9658, - [SMALL_STATE(353)] = 9759, - [SMALL_STATE(354)] = 9860, - [SMALL_STATE(355)] = 9961, - [SMALL_STATE(356)] = 10062, - [SMALL_STATE(357)] = 10163, - [SMALL_STATE(358)] = 10264, - [SMALL_STATE(359)] = 10365, - [SMALL_STATE(360)] = 10466, - [SMALL_STATE(361)] = 10564, - [SMALL_STATE(362)] = 10662, - [SMALL_STATE(363)] = 10760, - [SMALL_STATE(364)] = 10858, - [SMALL_STATE(365)] = 10956, - [SMALL_STATE(366)] = 11054, - [SMALL_STATE(367)] = 11152, - [SMALL_STATE(368)] = 11250, - [SMALL_STATE(369)] = 11348, - [SMALL_STATE(370)] = 11446, - [SMALL_STATE(371)] = 11544, - [SMALL_STATE(372)] = 11642, - [SMALL_STATE(373)] = 11740, - [SMALL_STATE(374)] = 11838, - [SMALL_STATE(375)] = 11936, - [SMALL_STATE(376)] = 12034, - [SMALL_STATE(377)] = 12129, - [SMALL_STATE(378)] = 12224, - [SMALL_STATE(379)] = 12319, - [SMALL_STATE(380)] = 12414, - [SMALL_STATE(381)] = 12509, - [SMALL_STATE(382)] = 12604, - [SMALL_STATE(383)] = 12699, - [SMALL_STATE(384)] = 12794, - [SMALL_STATE(385)] = 12889, - [SMALL_STATE(386)] = 12946, - [SMALL_STATE(387)] = 13041, - [SMALL_STATE(388)] = 13136, - [SMALL_STATE(389)] = 13231, - [SMALL_STATE(390)] = 13326, - [SMALL_STATE(391)] = 13421, - [SMALL_STATE(392)] = 13516, - [SMALL_STATE(393)] = 13611, - [SMALL_STATE(394)] = 13706, - [SMALL_STATE(395)] = 13798, - [SMALL_STATE(396)] = 13890, - [SMALL_STATE(397)] = 13982, - [SMALL_STATE(398)] = 14074, - [SMALL_STATE(399)] = 14166, - [SMALL_STATE(400)] = 14258, - [SMALL_STATE(401)] = 14309, - [SMALL_STATE(402)] = 14398, - [SMALL_STATE(403)] = 14487, - [SMALL_STATE(404)] = 14576, - [SMALL_STATE(405)] = 14665, - [SMALL_STATE(406)] = 14713, - [SMALL_STATE(407)] = 14758, - [SMALL_STATE(408)] = 14803, - [SMALL_STATE(409)] = 14856, - [SMALL_STATE(410)] = 14901, - [SMALL_STATE(411)] = 14946, - [SMALL_STATE(412)] = 14991, - [SMALL_STATE(413)] = 15036, - [SMALL_STATE(414)] = 15081, - [SMALL_STATE(415)] = 15127, - [SMALL_STATE(416)] = 15175, - [SMALL_STATE(417)] = 15221, - [SMALL_STATE(418)] = 15267, - [SMALL_STATE(419)] = 15313, - [SMALL_STATE(420)] = 15358, - [SMALL_STATE(421)] = 15431, - [SMALL_STATE(422)] = 15474, - [SMALL_STATE(423)] = 15521, - [SMALL_STATE(424)] = 15574, - [SMALL_STATE(425)] = 15617, - [SMALL_STATE(426)] = 15670, - [SMALL_STATE(427)] = 15723, - [SMALL_STATE(428)] = 15766, - [SMALL_STATE(429)] = 15819, - [SMALL_STATE(430)] = 15864, - [SMALL_STATE(431)] = 15907, - [SMALL_STATE(432)] = 15950, - [SMALL_STATE(433)] = 15997, - [SMALL_STATE(434)] = 16070, - [SMALL_STATE(435)] = 16123, - [SMALL_STATE(436)] = 16196, - [SMALL_STATE(437)] = 16241, - [SMALL_STATE(438)] = 16314, - [SMALL_STATE(439)] = 16356, - [SMALL_STATE(440)] = 16398, - [SMALL_STATE(441)] = 16452, - [SMALL_STATE(442)] = 16516, - [SMALL_STATE(443)] = 16558, - [SMALL_STATE(444)] = 16600, - [SMALL_STATE(445)] = 16642, - [SMALL_STATE(446)] = 16684, - [SMALL_STATE(447)] = 16756, - [SMALL_STATE(448)] = 16812, - [SMALL_STATE(449)] = 16854, - [SMALL_STATE(450)] = 16896, - [SMALL_STATE(451)] = 16938, - [SMALL_STATE(452)] = 17010, - [SMALL_STATE(453)] = 17052, - [SMALL_STATE(454)] = 17094, - [SMALL_STATE(455)] = 17164, - [SMALL_STATE(456)] = 17206, - [SMALL_STATE(457)] = 17248, - [SMALL_STATE(458)] = 17290, - [SMALL_STATE(459)] = 17332, - [SMALL_STATE(460)] = 17374, - [SMALL_STATE(461)] = 17416, - [SMALL_STATE(462)] = 17488, - [SMALL_STATE(463)] = 17530, - [SMALL_STATE(464)] = 17572, - [SMALL_STATE(465)] = 17640, - [SMALL_STATE(466)] = 17682, - [SMALL_STATE(467)] = 17744, - [SMALL_STATE(468)] = 17786, - [SMALL_STATE(469)] = 17828, - [SMALL_STATE(470)] = 17870, - [SMALL_STATE(471)] = 17912, - [SMALL_STATE(472)] = 17954, - [SMALL_STATE(473)] = 17996, - [SMALL_STATE(474)] = 18038, - [SMALL_STATE(475)] = 18080, - [SMALL_STATE(476)] = 18122, - [SMALL_STATE(477)] = 18166, - [SMALL_STATE(478)] = 18238, - [SMALL_STATE(479)] = 18280, - [SMALL_STATE(480)] = 18322, - [SMALL_STATE(481)] = 18364, - [SMALL_STATE(482)] = 18406, - [SMALL_STATE(483)] = 18448, - [SMALL_STATE(484)] = 18506, - [SMALL_STATE(485)] = 18548, - [SMALL_STATE(486)] = 18590, - [SMALL_STATE(487)] = 18650, - [SMALL_STATE(488)] = 18691, - [SMALL_STATE(489)] = 18732, - [SMALL_STATE(490)] = 18773, - [SMALL_STATE(491)] = 18814, - [SMALL_STATE(492)] = 18855, - [SMALL_STATE(493)] = 18904, - [SMALL_STATE(494)] = 18983, - [SMALL_STATE(495)] = 19024, - [SMALL_STATE(496)] = 19065, - [SMALL_STATE(497)] = 19106, - [SMALL_STATE(498)] = 19147, - [SMALL_STATE(499)] = 19188, - [SMALL_STATE(500)] = 19229, - [SMALL_STATE(501)] = 19270, - [SMALL_STATE(502)] = 19311, - [SMALL_STATE(503)] = 19352, - [SMALL_STATE(504)] = 19393, - [SMALL_STATE(505)] = 19434, - [SMALL_STATE(506)] = 19475, - [SMALL_STATE(507)] = 19516, - [SMALL_STATE(508)] = 19557, - [SMALL_STATE(509)] = 19598, - [SMALL_STATE(510)] = 19639, - [SMALL_STATE(511)] = 19680, - [SMALL_STATE(512)] = 19721, - [SMALL_STATE(513)] = 19762, - [SMALL_STATE(514)] = 19803, - [SMALL_STATE(515)] = 19844, - [SMALL_STATE(516)] = 19885, - [SMALL_STATE(517)] = 19930, - [SMALL_STATE(518)] = 19971, - [SMALL_STATE(519)] = 20012, - [SMALL_STATE(520)] = 20053, - [SMALL_STATE(521)] = 20094, - [SMALL_STATE(522)] = 20135, - [SMALL_STATE(523)] = 20176, - [SMALL_STATE(524)] = 20217, - [SMALL_STATE(525)] = 20258, - [SMALL_STATE(526)] = 20299, - [SMALL_STATE(527)] = 20340, - [SMALL_STATE(528)] = 20381, - [SMALL_STATE(529)] = 20460, - [SMALL_STATE(530)] = 20501, - [SMALL_STATE(531)] = 20542, - [SMALL_STATE(532)] = 20583, - [SMALL_STATE(533)] = 20624, - [SMALL_STATE(534)] = 20665, - [SMALL_STATE(535)] = 20744, - [SMALL_STATE(536)] = 20785, - [SMALL_STATE(537)] = 20826, - [SMALL_STATE(538)] = 20867, - [SMALL_STATE(539)] = 20908, - [SMALL_STATE(540)] = 20949, - [SMALL_STATE(541)] = 20990, - [SMALL_STATE(542)] = 21031, - [SMALL_STATE(543)] = 21072, - [SMALL_STATE(544)] = 21113, - [SMALL_STATE(545)] = 21192, - [SMALL_STATE(546)] = 21233, - [SMALL_STATE(547)] = 21274, - [SMALL_STATE(548)] = 21315, - [SMALL_STATE(549)] = 21356, - [SMALL_STATE(550)] = 21397, - [SMALL_STATE(551)] = 21438, - [SMALL_STATE(552)] = 21479, - [SMALL_STATE(553)] = 21520, - [SMALL_STATE(554)] = 21561, - [SMALL_STATE(555)] = 21602, - [SMALL_STATE(556)] = 21643, - [SMALL_STATE(557)] = 21684, - [SMALL_STATE(558)] = 21725, - [SMALL_STATE(559)] = 21766, - [SMALL_STATE(560)] = 21807, - [SMALL_STATE(561)] = 21848, - [SMALL_STATE(562)] = 21889, - [SMALL_STATE(563)] = 21930, - [SMALL_STATE(564)] = 21971, - [SMALL_STATE(565)] = 22012, - [SMALL_STATE(566)] = 22053, - [SMALL_STATE(567)] = 22094, - [SMALL_STATE(568)] = 22135, - [SMALL_STATE(569)] = 22176, - [SMALL_STATE(570)] = 22217, - [SMALL_STATE(571)] = 22258, - [SMALL_STATE(572)] = 22304, - [SMALL_STATE(573)] = 22370, - [SMALL_STATE(574)] = 22412, - [SMALL_STATE(575)] = 22488, - [SMALL_STATE(576)] = 22564, - [SMALL_STATE(577)] = 22606, - [SMALL_STATE(578)] = 22682, - [SMALL_STATE(579)] = 22724, - [SMALL_STATE(580)] = 22790, - [SMALL_STATE(581)] = 22856, - [SMALL_STATE(582)] = 22932, - [SMALL_STATE(583)] = 22998, - [SMALL_STATE(584)] = 23064, - [SMALL_STATE(585)] = 23130, - [SMALL_STATE(586)] = 23196, - [SMALL_STATE(587)] = 23262, - [SMALL_STATE(588)] = 23328, - [SMALL_STATE(589)] = 23404, - [SMALL_STATE(590)] = 23480, - [SMALL_STATE(591)] = 23522, - [SMALL_STATE(592)] = 23588, - [SMALL_STATE(593)] = 23659, - [SMALL_STATE(594)] = 23722, - [SMALL_STATE(595)] = 23763, - [SMALL_STATE(596)] = 23826, - [SMALL_STATE(597)] = 23869, - [SMALL_STATE(598)] = 23932, - [SMALL_STATE(599)] = 23995, - [SMALL_STATE(600)] = 24058, - [SMALL_STATE(601)] = 24131, - [SMALL_STATE(602)] = 24194, - [SMALL_STATE(603)] = 24257, - [SMALL_STATE(604)] = 24320, - [SMALL_STATE(605)] = 24393, - [SMALL_STATE(606)] = 24466, - [SMALL_STATE(607)] = 24529, - [SMALL_STATE(608)] = 24592, - [SMALL_STATE(609)] = 24655, - [SMALL_STATE(610)] = 24718, - [SMALL_STATE(611)] = 24759, - [SMALL_STATE(612)] = 24822, - [SMALL_STATE(613)] = 24893, - [SMALL_STATE(614)] = 24956, - [SMALL_STATE(615)] = 24999, - [SMALL_STATE(616)] = 25062, - [SMALL_STATE(617)] = 25101, - [SMALL_STATE(618)] = 25164, - [SMALL_STATE(619)] = 25203, - [SMALL_STATE(620)] = 25266, - [SMALL_STATE(621)] = 25329, - [SMALL_STATE(622)] = 25400, - [SMALL_STATE(623)] = 25471, - [SMALL_STATE(624)] = 25514, - [SMALL_STATE(625)] = 25557, - [SMALL_STATE(626)] = 25630, - [SMALL_STATE(627)] = 25703, - [SMALL_STATE(628)] = 25776, - [SMALL_STATE(629)] = 25839, - [SMALL_STATE(630)] = 25902, - [SMALL_STATE(631)] = 25965, - [SMALL_STATE(632)] = 26036, - [SMALL_STATE(633)] = 26109, - [SMALL_STATE(634)] = 26180, - [SMALL_STATE(635)] = 26251, - [SMALL_STATE(636)] = 26324, - [SMALL_STATE(637)] = 26387, - [SMALL_STATE(638)] = 26460, - [SMALL_STATE(639)] = 26533, - [SMALL_STATE(640)] = 26596, - [SMALL_STATE(641)] = 26659, - [SMALL_STATE(642)] = 26732, - [SMALL_STATE(643)] = 26775, - [SMALL_STATE(644)] = 26848, - [SMALL_STATE(645)] = 26921, - [SMALL_STATE(646)] = 26962, - [SMALL_STATE(647)] = 27003, - [SMALL_STATE(648)] = 27076, - [SMALL_STATE(649)] = 27139, - [SMALL_STATE(650)] = 27202, - [SMALL_STATE(651)] = 27265, - [SMALL_STATE(652)] = 27328, - [SMALL_STATE(653)] = 27391, - [SMALL_STATE(654)] = 27464, - [SMALL_STATE(655)] = 27537, - [SMALL_STATE(656)] = 27600, - [SMALL_STATE(657)] = 27663, - [SMALL_STATE(658)] = 27736, - [SMALL_STATE(659)] = 27809, - [SMALL_STATE(660)] = 27882, - [SMALL_STATE(661)] = 27955, - [SMALL_STATE(662)] = 28026, - [SMALL_STATE(663)] = 28089, - [SMALL_STATE(664)] = 28160, + [SMALL_STATE(225)] = 0, + [SMALL_STATE(226)] = 70, + [SMALL_STATE(227)] = 140, + [SMALL_STATE(228)] = 210, + [SMALL_STATE(229)] = 280, + [SMALL_STATE(230)] = 350, + [SMALL_STATE(231)] = 420, + [SMALL_STATE(232)] = 490, + [SMALL_STATE(233)] = 604, + [SMALL_STATE(234)] = 718, + [SMALL_STATE(235)] = 784, + [SMALL_STATE(236)] = 898, + [SMALL_STATE(237)] = 964, + [SMALL_STATE(238)] = 1092, + [SMALL_STATE(239)] = 1158, + [SMALL_STATE(240)] = 1272, + [SMALL_STATE(241)] = 1386, + [SMALL_STATE(242)] = 1456, + [SMALL_STATE(243)] = 1521, + [SMALL_STATE(244)] = 1586, + [SMALL_STATE(245)] = 1651, + [SMALL_STATE(246)] = 1776, + [SMALL_STATE(247)] = 1901, + [SMALL_STATE(248)] = 2026, + [SMALL_STATE(249)] = 2090, + [SMALL_STATE(250)] = 2154, + [SMALL_STATE(251)] = 2218, + [SMALL_STATE(252)] = 2282, + [SMALL_STATE(253)] = 2346, + [SMALL_STATE(254)] = 2410, + [SMALL_STATE(255)] = 2474, + [SMALL_STATE(256)] = 2538, + [SMALL_STATE(257)] = 2602, + [SMALL_STATE(258)] = 2666, + [SMALL_STATE(259)] = 2730, + [SMALL_STATE(260)] = 2794, + [SMALL_STATE(261)] = 2858, + [SMALL_STATE(262)] = 2922, + [SMALL_STATE(263)] = 2986, + [SMALL_STATE(264)] = 3050, + [SMALL_STATE(265)] = 3114, + [SMALL_STATE(266)] = 3178, + [SMALL_STATE(267)] = 3242, + [SMALL_STATE(268)] = 3306, + [SMALL_STATE(269)] = 3370, + [SMALL_STATE(270)] = 3434, + [SMALL_STATE(271)] = 3498, + [SMALL_STATE(272)] = 3562, + [SMALL_STATE(273)] = 3626, + [SMALL_STATE(274)] = 3690, + [SMALL_STATE(275)] = 3754, + [SMALL_STATE(276)] = 3818, + [SMALL_STATE(277)] = 3882, + [SMALL_STATE(278)] = 3946, + [SMALL_STATE(279)] = 4010, + [SMALL_STATE(280)] = 4074, + [SMALL_STATE(281)] = 4138, + [SMALL_STATE(282)] = 4202, + [SMALL_STATE(283)] = 4266, + [SMALL_STATE(284)] = 4330, + [SMALL_STATE(285)] = 4394, + [SMALL_STATE(286)] = 4458, + [SMALL_STATE(287)] = 4522, + [SMALL_STATE(288)] = 4586, + [SMALL_STATE(289)] = 4650, + [SMALL_STATE(290)] = 4714, + [SMALL_STATE(291)] = 4778, + [SMALL_STATE(292)] = 4842, + [SMALL_STATE(293)] = 4906, + [SMALL_STATE(294)] = 4970, + [SMALL_STATE(295)] = 5034, + [SMALL_STATE(296)] = 5098, + [SMALL_STATE(297)] = 5162, + [SMALL_STATE(298)] = 5226, + [SMALL_STATE(299)] = 5290, + [SMALL_STATE(300)] = 5354, + [SMALL_STATE(301)] = 5418, + [SMALL_STATE(302)] = 5482, + [SMALL_STATE(303)] = 5546, + [SMALL_STATE(304)] = 5610, + [SMALL_STATE(305)] = 5674, + [SMALL_STATE(306)] = 5738, + [SMALL_STATE(307)] = 5802, + [SMALL_STATE(308)] = 5866, + [SMALL_STATE(309)] = 5930, + [SMALL_STATE(310)] = 5994, + [SMALL_STATE(311)] = 6058, + [SMALL_STATE(312)] = 6122, + [SMALL_STATE(313)] = 6186, + [SMALL_STATE(314)] = 6250, + [SMALL_STATE(315)] = 6314, + [SMALL_STATE(316)] = 6378, + [SMALL_STATE(317)] = 6446, + [SMALL_STATE(318)] = 6510, + [SMALL_STATE(319)] = 6574, + [SMALL_STATE(320)] = 6638, + [SMALL_STATE(321)] = 6760, + [SMALL_STATE(322)] = 6824, + [SMALL_STATE(323)] = 6888, + [SMALL_STATE(324)] = 6952, + [SMALL_STATE(325)] = 7016, + [SMALL_STATE(326)] = 7080, + [SMALL_STATE(327)] = 7144, + [SMALL_STATE(328)] = 7208, + [SMALL_STATE(329)] = 7272, + [SMALL_STATE(330)] = 7336, + [SMALL_STATE(331)] = 7400, + [SMALL_STATE(332)] = 7464, + [SMALL_STATE(333)] = 7528, + [SMALL_STATE(334)] = 7592, + [SMALL_STATE(335)] = 7656, + [SMALL_STATE(336)] = 7720, + [SMALL_STATE(337)] = 7784, + [SMALL_STATE(338)] = 7848, + [SMALL_STATE(339)] = 7912, + [SMALL_STATE(340)] = 7980, + [SMALL_STATE(341)] = 8044, + [SMALL_STATE(342)] = 8108, + [SMALL_STATE(343)] = 8172, + [SMALL_STATE(344)] = 8288, + [SMALL_STATE(345)] = 8404, + [SMALL_STATE(346)] = 8520, + [SMALL_STATE(347)] = 8636, + [SMALL_STATE(348)] = 8752, + [SMALL_STATE(349)] = 8865, + [SMALL_STATE(350)] = 8980, + [SMALL_STATE(351)] = 9095, + [SMALL_STATE(352)] = 9208, + [SMALL_STATE(353)] = 9321, + [SMALL_STATE(354)] = 9436, + [SMALL_STATE(355)] = 9551, + [SMALL_STATE(356)] = 9661, + [SMALL_STATE(357)] = 9767, + [SMALL_STATE(358)] = 9873, + [SMALL_STATE(359)] = 9974, + [SMALL_STATE(360)] = 10075, + [SMALL_STATE(361)] = 10176, + [SMALL_STATE(362)] = 10277, + [SMALL_STATE(363)] = 10378, + [SMALL_STATE(364)] = 10479, + [SMALL_STATE(365)] = 10580, + [SMALL_STATE(366)] = 10681, + [SMALL_STATE(367)] = 10779, + [SMALL_STATE(368)] = 10877, + [SMALL_STATE(369)] = 10975, + [SMALL_STATE(370)] = 11073, + [SMALL_STATE(371)] = 11171, + [SMALL_STATE(372)] = 11269, + [SMALL_STATE(373)] = 11367, + [SMALL_STATE(374)] = 11425, + [SMALL_STATE(375)] = 11523, + [SMALL_STATE(376)] = 11621, + [SMALL_STATE(377)] = 11719, + [SMALL_STATE(378)] = 11817, + [SMALL_STATE(379)] = 11915, + [SMALL_STATE(380)] = 12013, + [SMALL_STATE(381)] = 12111, + [SMALL_STATE(382)] = 12209, + [SMALL_STATE(383)] = 12307, + [SMALL_STATE(384)] = 12402, + [SMALL_STATE(385)] = 12497, + [SMALL_STATE(386)] = 12592, + [SMALL_STATE(387)] = 12687, + [SMALL_STATE(388)] = 12782, + [SMALL_STATE(389)] = 12877, + [SMALL_STATE(390)] = 12972, + [SMALL_STATE(391)] = 13067, + [SMALL_STATE(392)] = 13162, + [SMALL_STATE(393)] = 13257, + [SMALL_STATE(394)] = 13352, + [SMALL_STATE(395)] = 13447, + [SMALL_STATE(396)] = 13542, + [SMALL_STATE(397)] = 13637, + [SMALL_STATE(398)] = 13732, + [SMALL_STATE(399)] = 13827, + [SMALL_STATE(400)] = 13922, + [SMALL_STATE(401)] = 14017, + [SMALL_STATE(402)] = 14112, + [SMALL_STATE(403)] = 14207, + [SMALL_STATE(404)] = 14299, + [SMALL_STATE(405)] = 14391, + [SMALL_STATE(406)] = 14483, + [SMALL_STATE(407)] = 14575, + [SMALL_STATE(408)] = 14667, + [SMALL_STATE(409)] = 14759, + [SMALL_STATE(410)] = 14811, + [SMALL_STATE(411)] = 14900, + [SMALL_STATE(412)] = 14989, + [SMALL_STATE(413)] = 15078, + [SMALL_STATE(414)] = 15167, + [SMALL_STATE(415)] = 15216, + [SMALL_STATE(416)] = 15261, + [SMALL_STATE(417)] = 15306, + [SMALL_STATE(418)] = 15351, + [SMALL_STATE(419)] = 15396, + [SMALL_STATE(420)] = 15441, + [SMALL_STATE(421)] = 15494, + [SMALL_STATE(422)] = 15539, + [SMALL_STATE(423)] = 15584, + [SMALL_STATE(424)] = 15632, + [SMALL_STATE(425)] = 15678, + [SMALL_STATE(426)] = 15724, + [SMALL_STATE(427)] = 15770, + [SMALL_STATE(428)] = 15816, + [SMALL_STATE(429)] = 15889, + [SMALL_STATE(430)] = 15934, + [SMALL_STATE(431)] = 16007, + [SMALL_STATE(432)] = 16050, + [SMALL_STATE(433)] = 16103, + [SMALL_STATE(434)] = 16148, + [SMALL_STATE(435)] = 16195, + [SMALL_STATE(436)] = 16248, + [SMALL_STATE(437)] = 16301, + [SMALL_STATE(438)] = 16344, + [SMALL_STATE(439)] = 16417, + [SMALL_STATE(440)] = 16460, + [SMALL_STATE(441)] = 16533, + [SMALL_STATE(442)] = 16578, + [SMALL_STATE(443)] = 16625, + [SMALL_STATE(444)] = 16668, + [SMALL_STATE(445)] = 16721, + [SMALL_STATE(446)] = 16764, + [SMALL_STATE(447)] = 16817, + [SMALL_STATE(448)] = 16859, + [SMALL_STATE(449)] = 16901, + [SMALL_STATE(450)] = 16943, + [SMALL_STATE(451)] = 16985, + [SMALL_STATE(452)] = 17027, + [SMALL_STATE(453)] = 17069, + [SMALL_STATE(454)] = 17141, + [SMALL_STATE(455)] = 17183, + [SMALL_STATE(456)] = 17225, + [SMALL_STATE(457)] = 17267, + [SMALL_STATE(458)] = 17309, + [SMALL_STATE(459)] = 17351, + [SMALL_STATE(460)] = 17393, + [SMALL_STATE(461)] = 17435, + [SMALL_STATE(462)] = 17479, + [SMALL_STATE(463)] = 17551, + [SMALL_STATE(464)] = 17593, + [SMALL_STATE(465)] = 17635, + [SMALL_STATE(466)] = 17677, + [SMALL_STATE(467)] = 17719, + [SMALL_STATE(468)] = 17761, + [SMALL_STATE(469)] = 17803, + [SMALL_STATE(470)] = 17845, + [SMALL_STATE(471)] = 17887, + [SMALL_STATE(472)] = 17943, + [SMALL_STATE(473)] = 18015, + [SMALL_STATE(474)] = 18057, + [SMALL_STATE(475)] = 18099, + [SMALL_STATE(476)] = 18169, + [SMALL_STATE(477)] = 18211, + [SMALL_STATE(478)] = 18279, + [SMALL_STATE(479)] = 18341, + [SMALL_STATE(480)] = 18399, + [SMALL_STATE(481)] = 18459, + [SMALL_STATE(482)] = 18513, + [SMALL_STATE(483)] = 18577, + [SMALL_STATE(484)] = 18619, + [SMALL_STATE(485)] = 18661, + [SMALL_STATE(486)] = 18703, + [SMALL_STATE(487)] = 18745, + [SMALL_STATE(488)] = 18787, + [SMALL_STATE(489)] = 18829, + [SMALL_STATE(490)] = 18871, + [SMALL_STATE(491)] = 18913, + [SMALL_STATE(492)] = 18955, + [SMALL_STATE(493)] = 19027, + [SMALL_STATE(494)] = 19069, + [SMALL_STATE(495)] = 19111, + [SMALL_STATE(496)] = 19153, + [SMALL_STATE(497)] = 19194, + [SMALL_STATE(498)] = 19235, + [SMALL_STATE(499)] = 19276, + [SMALL_STATE(500)] = 19355, + [SMALL_STATE(501)] = 19396, + [SMALL_STATE(502)] = 19437, + [SMALL_STATE(503)] = 19478, + [SMALL_STATE(504)] = 19519, + [SMALL_STATE(505)] = 19560, + [SMALL_STATE(506)] = 19601, + [SMALL_STATE(507)] = 19642, + [SMALL_STATE(508)] = 19683, + [SMALL_STATE(509)] = 19724, + [SMALL_STATE(510)] = 19765, + [SMALL_STATE(511)] = 19806, + [SMALL_STATE(512)] = 19847, + [SMALL_STATE(513)] = 19888, + [SMALL_STATE(514)] = 19929, + [SMALL_STATE(515)] = 19970, + [SMALL_STATE(516)] = 20019, + [SMALL_STATE(517)] = 20060, + [SMALL_STATE(518)] = 20101, + [SMALL_STATE(519)] = 20142, + [SMALL_STATE(520)] = 20183, + [SMALL_STATE(521)] = 20224, + [SMALL_STATE(522)] = 20265, + [SMALL_STATE(523)] = 20306, + [SMALL_STATE(524)] = 20347, + [SMALL_STATE(525)] = 20388, + [SMALL_STATE(526)] = 20429, + [SMALL_STATE(527)] = 20470, + [SMALL_STATE(528)] = 20511, + [SMALL_STATE(529)] = 20552, + [SMALL_STATE(530)] = 20593, + [SMALL_STATE(531)] = 20634, + [SMALL_STATE(532)] = 20675, + [SMALL_STATE(533)] = 20716, + [SMALL_STATE(534)] = 20757, + [SMALL_STATE(535)] = 20798, + [SMALL_STATE(536)] = 20839, + [SMALL_STATE(537)] = 20880, + [SMALL_STATE(538)] = 20921, + [SMALL_STATE(539)] = 20962, + [SMALL_STATE(540)] = 21003, + [SMALL_STATE(541)] = 21044, + [SMALL_STATE(542)] = 21085, + [SMALL_STATE(543)] = 21164, + [SMALL_STATE(544)] = 21205, + [SMALL_STATE(545)] = 21284, + [SMALL_STATE(546)] = 21325, + [SMALL_STATE(547)] = 21366, + [SMALL_STATE(548)] = 21407, + [SMALL_STATE(549)] = 21448, + [SMALL_STATE(550)] = 21489, + [SMALL_STATE(551)] = 21530, + [SMALL_STATE(552)] = 21609, + [SMALL_STATE(553)] = 21650, + [SMALL_STATE(554)] = 21691, + [SMALL_STATE(555)] = 21732, + [SMALL_STATE(556)] = 21773, + [SMALL_STATE(557)] = 21814, + [SMALL_STATE(558)] = 21855, + [SMALL_STATE(559)] = 21896, + [SMALL_STATE(560)] = 21937, + [SMALL_STATE(561)] = 21978, + [SMALL_STATE(562)] = 22019, + [SMALL_STATE(563)] = 22060, + [SMALL_STATE(564)] = 22101, + [SMALL_STATE(565)] = 22142, + [SMALL_STATE(566)] = 22183, + [SMALL_STATE(567)] = 22224, + [SMALL_STATE(568)] = 22265, + [SMALL_STATE(569)] = 22306, + [SMALL_STATE(570)] = 22347, + [SMALL_STATE(571)] = 22388, + [SMALL_STATE(572)] = 22429, + [SMALL_STATE(573)] = 22470, + [SMALL_STATE(574)] = 22511, + [SMALL_STATE(575)] = 22552, + [SMALL_STATE(576)] = 22593, + [SMALL_STATE(577)] = 22634, + [SMALL_STATE(578)] = 22675, + [SMALL_STATE(579)] = 22720, + [SMALL_STATE(580)] = 22761, + [SMALL_STATE(581)] = 22802, + [SMALL_STATE(582)] = 22868, + [SMALL_STATE(583)] = 22934, + [SMALL_STATE(584)] = 23000, + [SMALL_STATE(585)] = 23042, + [SMALL_STATE(586)] = 23108, + [SMALL_STATE(587)] = 23174, + [SMALL_STATE(588)] = 23250, + [SMALL_STATE(589)] = 23316, + [SMALL_STATE(590)] = 23362, + [SMALL_STATE(591)] = 23428, + [SMALL_STATE(592)] = 23504, + [SMALL_STATE(593)] = 23580, + [SMALL_STATE(594)] = 23622, + [SMALL_STATE(595)] = 23664, + [SMALL_STATE(596)] = 23730, + [SMALL_STATE(597)] = 23796, + [SMALL_STATE(598)] = 23872, + [SMALL_STATE(599)] = 23948, + [SMALL_STATE(600)] = 23990, + [SMALL_STATE(601)] = 24066, + [SMALL_STATE(602)] = 24132, + [SMALL_STATE(603)] = 24175, + [SMALL_STATE(604)] = 24238, + [SMALL_STATE(605)] = 24311, + [SMALL_STATE(606)] = 24374, + [SMALL_STATE(607)] = 24437, + [SMALL_STATE(608)] = 24500, + [SMALL_STATE(609)] = 24573, + [SMALL_STATE(610)] = 24636, + [SMALL_STATE(611)] = 24709, + [SMALL_STATE(612)] = 24782, + [SMALL_STATE(613)] = 24845, + [SMALL_STATE(614)] = 24908, + [SMALL_STATE(615)] = 24971, + [SMALL_STATE(616)] = 25044, + [SMALL_STATE(617)] = 25117, + [SMALL_STATE(618)] = 25180, + [SMALL_STATE(619)] = 25253, + [SMALL_STATE(620)] = 25326, + [SMALL_STATE(621)] = 25399, + [SMALL_STATE(622)] = 25462, + [SMALL_STATE(623)] = 25525, + [SMALL_STATE(624)] = 25598, + [SMALL_STATE(625)] = 25661, + [SMALL_STATE(626)] = 25724, + [SMALL_STATE(627)] = 25797, + [SMALL_STATE(628)] = 25860, + [SMALL_STATE(629)] = 25923, + [SMALL_STATE(630)] = 25994, + [SMALL_STATE(631)] = 26065, + [SMALL_STATE(632)] = 26136, + [SMALL_STATE(633)] = 26199, + [SMALL_STATE(634)] = 26238, + [SMALL_STATE(635)] = 26301, + [SMALL_STATE(636)] = 26374, + [SMALL_STATE(637)] = 26437, + [SMALL_STATE(638)] = 26508, + [SMALL_STATE(639)] = 26547, + [SMALL_STATE(640)] = 26618, + [SMALL_STATE(641)] = 26681, + [SMALL_STATE(642)] = 26754, + [SMALL_STATE(643)] = 26827, + [SMALL_STATE(644)] = 26866, + [SMALL_STATE(645)] = 26929, + [SMALL_STATE(646)] = 26968, + [SMALL_STATE(647)] = 27009, + [SMALL_STATE(648)] = 27072, + [SMALL_STATE(649)] = 27135, + [SMALL_STATE(650)] = 27198, + [SMALL_STATE(651)] = 27261, + [SMALL_STATE(652)] = 27324, + [SMALL_STATE(653)] = 27387, + [SMALL_STATE(654)] = 27450, + [SMALL_STATE(655)] = 27523, + [SMALL_STATE(656)] = 27586, + [SMALL_STATE(657)] = 27649, + [SMALL_STATE(658)] = 27722, + [SMALL_STATE(659)] = 27795, + [SMALL_STATE(660)] = 27866, + [SMALL_STATE(661)] = 27929, + [SMALL_STATE(662)] = 28000, + [SMALL_STATE(663)] = 28073, + [SMALL_STATE(664)] = 28136, [SMALL_STATE(665)] = 28199, - [SMALL_STATE(666)] = 28238, - [SMALL_STATE(667)] = 28301, - [SMALL_STATE(668)] = 28340, - [SMALL_STATE(669)] = 28411, - [SMALL_STATE(670)] = 28474, - [SMALL_STATE(671)] = 28513, - [SMALL_STATE(672)] = 28576, - [SMALL_STATE(673)] = 28615, - [SMALL_STATE(674)] = 28654, - [SMALL_STATE(675)] = 28717, - [SMALL_STATE(676)] = 28790, - [SMALL_STATE(677)] = 28863, - [SMALL_STATE(678)] = 28936, - [SMALL_STATE(679)] = 29009, - [SMALL_STATE(680)] = 29080, - [SMALL_STATE(681)] = 29143, - [SMALL_STATE(682)] = 29206, - [SMALL_STATE(683)] = 29279, - [SMALL_STATE(684)] = 29352, + [SMALL_STATE(666)] = 28270, + [SMALL_STATE(667)] = 28333, + [SMALL_STATE(668)] = 28406, + [SMALL_STATE(669)] = 28447, + [SMALL_STATE(670)] = 28520, + [SMALL_STATE(671)] = 28583, + [SMALL_STATE(672)] = 28656, + [SMALL_STATE(673)] = 28695, + [SMALL_STATE(674)] = 28734, + [SMALL_STATE(675)] = 28805, + [SMALL_STATE(676)] = 28844, + [SMALL_STATE(677)] = 28907, + [SMALL_STATE(678)] = 28980, + [SMALL_STATE(679)] = 29053, + [SMALL_STATE(680)] = 29116, + [SMALL_STATE(681)] = 29155, + [SMALL_STATE(682)] = 29228, + [SMALL_STATE(683)] = 29269, + [SMALL_STATE(684)] = 29342, [SMALL_STATE(685)] = 29415, - [SMALL_STATE(686)] = 29488, - [SMALL_STATE(687)] = 29527, - [SMALL_STATE(688)] = 29600, + [SMALL_STATE(686)] = 29478, + [SMALL_STATE(687)] = 29517, + [SMALL_STATE(688)] = 29590, [SMALL_STATE(689)] = 29663, - [SMALL_STATE(690)] = 29702, - [SMALL_STATE(691)] = 29775, - [SMALL_STATE(692)] = 29814, - [SMALL_STATE(693)] = 29877, - [SMALL_STATE(694)] = 29940, - [SMALL_STATE(695)] = 29979, - [SMALL_STATE(696)] = 30019, - [SMALL_STATE(697)] = 30077, - [SMALL_STATE(698)] = 30129, - [SMALL_STATE(699)] = 30195, - [SMALL_STATE(700)] = 30259, - [SMALL_STATE(701)] = 30317, - [SMALL_STATE(702)] = 30371, - [SMALL_STATE(703)] = 30427, - [SMALL_STATE(704)] = 30477, - [SMALL_STATE(705)] = 30515, - [SMALL_STATE(706)] = 30575, - [SMALL_STATE(707)] = 30645, - [SMALL_STATE(708)] = 30693, - [SMALL_STATE(709)] = 30761, - [SMALL_STATE(710)] = 30799, - [SMALL_STATE(711)] = 30839, - [SMALL_STATE(712)] = 30879, - [SMALL_STATE(713)] = 30949, - [SMALL_STATE(714)] = 30997, - [SMALL_STATE(715)] = 31067, - [SMALL_STATE(716)] = 31137, - [SMALL_STATE(717)] = 31207, - [SMALL_STATE(718)] = 31247, - [SMALL_STATE(719)] = 31285, - [SMALL_STATE(720)] = 31353, - [SMALL_STATE(721)] = 31421, - [SMALL_STATE(722)] = 31489, - [SMALL_STATE(723)] = 31529, - [SMALL_STATE(724)] = 31567, - [SMALL_STATE(725)] = 31605, - [SMALL_STATE(726)] = 31653, - [SMALL_STATE(727)] = 31723, - [SMALL_STATE(728)] = 31793, - [SMALL_STATE(729)] = 31863, - [SMALL_STATE(730)] = 31933, - [SMALL_STATE(731)] = 32003, - [SMALL_STATE(732)] = 32073, - [SMALL_STATE(733)] = 32143, - [SMALL_STATE(734)] = 32181, - [SMALL_STATE(735)] = 32251, - [SMALL_STATE(736)] = 32321, - [SMALL_STATE(737)] = 32359, - [SMALL_STATE(738)] = 32429, - [SMALL_STATE(739)] = 32497, - [SMALL_STATE(740)] = 32567, - [SMALL_STATE(741)] = 32637, - [SMALL_STATE(742)] = 32707, - [SMALL_STATE(743)] = 32777, - [SMALL_STATE(744)] = 32847, - [SMALL_STATE(745)] = 32917, - [SMALL_STATE(746)] = 32985, - [SMALL_STATE(747)] = 33033, - [SMALL_STATE(748)] = 33103, - [SMALL_STATE(749)] = 33141, - [SMALL_STATE(750)] = 33209, - [SMALL_STATE(751)] = 33279, - [SMALL_STATE(752)] = 33349, - [SMALL_STATE(753)] = 33401, - [SMALL_STATE(754)] = 33471, - [SMALL_STATE(755)] = 33537, - [SMALL_STATE(756)] = 33601, - [SMALL_STATE(757)] = 33671, - [SMALL_STATE(758)] = 33741, - [SMALL_STATE(759)] = 33795, - [SMALL_STATE(760)] = 33851, - [SMALL_STATE(761)] = 33901, - [SMALL_STATE(762)] = 33971, - [SMALL_STATE(763)] = 34031, - [SMALL_STATE(764)] = 34101, - [SMALL_STATE(765)] = 34139, - [SMALL_STATE(766)] = 34209, - [SMALL_STATE(767)] = 34277, - [SMALL_STATE(768)] = 34347, - [SMALL_STATE(769)] = 34384, - [SMALL_STATE(770)] = 34421, - [SMALL_STATE(771)] = 34458, - [SMALL_STATE(772)] = 34495, - [SMALL_STATE(773)] = 34532, - [SMALL_STATE(774)] = 34569, - [SMALL_STATE(775)] = 34606, - [SMALL_STATE(776)] = 34643, - [SMALL_STATE(777)] = 34680, - [SMALL_STATE(778)] = 34717, - [SMALL_STATE(779)] = 34754, - [SMALL_STATE(780)] = 34791, - [SMALL_STATE(781)] = 34828, - [SMALL_STATE(782)] = 34865, - [SMALL_STATE(783)] = 34902, - [SMALL_STATE(784)] = 34939, - [SMALL_STATE(785)] = 34994, - [SMALL_STATE(786)] = 35031, - [SMALL_STATE(787)] = 35068, - [SMALL_STATE(788)] = 35105, - [SMALL_STATE(789)] = 35142, - [SMALL_STATE(790)] = 35179, - [SMALL_STATE(791)] = 35216, - [SMALL_STATE(792)] = 35253, - [SMALL_STATE(793)] = 35290, - [SMALL_STATE(794)] = 35327, - [SMALL_STATE(795)] = 35364, - [SMALL_STATE(796)] = 35401, - [SMALL_STATE(797)] = 35438, - [SMALL_STATE(798)] = 35475, - [SMALL_STATE(799)] = 35512, - [SMALL_STATE(800)] = 35549, - [SMALL_STATE(801)] = 35586, - [SMALL_STATE(802)] = 35623, - [SMALL_STATE(803)] = 35660, - [SMALL_STATE(804)] = 35697, - [SMALL_STATE(805)] = 35734, - [SMALL_STATE(806)] = 35771, - [SMALL_STATE(807)] = 35808, - [SMALL_STATE(808)] = 35845, - [SMALL_STATE(809)] = 35882, - [SMALL_STATE(810)] = 35919, - [SMALL_STATE(811)] = 35956, - [SMALL_STATE(812)] = 35993, - [SMALL_STATE(813)] = 36030, - [SMALL_STATE(814)] = 36067, - [SMALL_STATE(815)] = 36119, - [SMALL_STATE(816)] = 36171, - [SMALL_STATE(817)] = 36220, - [SMALL_STATE(818)] = 36269, - [SMALL_STATE(819)] = 36318, - [SMALL_STATE(820)] = 36367, - [SMALL_STATE(821)] = 36416, - [SMALL_STATE(822)] = 36453, - [SMALL_STATE(823)] = 36484, - [SMALL_STATE(824)] = 36526, - [SMALL_STATE(825)] = 36565, - [SMALL_STATE(826)] = 36604, - [SMALL_STATE(827)] = 36643, - [SMALL_STATE(828)] = 36682, - [SMALL_STATE(829)] = 36721, - [SMALL_STATE(830)] = 36760, - [SMALL_STATE(831)] = 36799, - [SMALL_STATE(832)] = 36838, - [SMALL_STATE(833)] = 36877, - [SMALL_STATE(834)] = 36916, - [SMALL_STATE(835)] = 36955, - [SMALL_STATE(836)] = 36991, - [SMALL_STATE(837)] = 37027, - [SMALL_STATE(838)] = 37053, - [SMALL_STATE(839)] = 37079, - [SMALL_STATE(840)] = 37105, - [SMALL_STATE(841)] = 37131, - [SMALL_STATE(842)] = 37165, - [SMALL_STATE(843)] = 37188, - [SMALL_STATE(844)] = 37209, - [SMALL_STATE(845)] = 37232, - [SMALL_STATE(846)] = 37255, - [SMALL_STATE(847)] = 37276, - [SMALL_STATE(848)] = 37299, - [SMALL_STATE(849)] = 37320, - [SMALL_STATE(850)] = 37341, - [SMALL_STATE(851)] = 37359, - [SMALL_STATE(852)] = 37377, - [SMALL_STATE(853)] = 37405, - [SMALL_STATE(854)] = 37423, - [SMALL_STATE(855)] = 37441, - [SMALL_STATE(856)] = 37481, - [SMALL_STATE(857)] = 37499, - [SMALL_STATE(858)] = 37517, - [SMALL_STATE(859)] = 37557, - [SMALL_STATE(860)] = 37575, - [SMALL_STATE(861)] = 37596, - [SMALL_STATE(862)] = 37613, - [SMALL_STATE(863)] = 37632, - [SMALL_STATE(864)] = 37651, - [SMALL_STATE(865)] = 37682, - [SMALL_STATE(866)] = 37699, - [SMALL_STATE(867)] = 37724, - [SMALL_STATE(868)] = 37745, - [SMALL_STATE(869)] = 37764, - [SMALL_STATE(870)] = 37781, - [SMALL_STATE(871)] = 37812, - [SMALL_STATE(872)] = 37831, - [SMALL_STATE(873)] = 37852, - [SMALL_STATE(874)] = 37873, - [SMALL_STATE(875)] = 37890, - [SMALL_STATE(876)] = 37906, - [SMALL_STATE(877)] = 37922, - [SMALL_STATE(878)] = 37938, - [SMALL_STATE(879)] = 37966, - [SMALL_STATE(880)] = 37982, - [SMALL_STATE(881)] = 38014, - [SMALL_STATE(882)] = 38030, - [SMALL_STATE(883)] = 38054, - [SMALL_STATE(884)] = 38070, - [SMALL_STATE(885)] = 38086, - [SMALL_STATE(886)] = 38118, - [SMALL_STATE(887)] = 38134, - [SMALL_STATE(888)] = 38162, - [SMALL_STATE(889)] = 38178, - [SMALL_STATE(890)] = 38210, - [SMALL_STATE(891)] = 38226, - [SMALL_STATE(892)] = 38254, - [SMALL_STATE(893)] = 38282, - [SMALL_STATE(894)] = 38314, - [SMALL_STATE(895)] = 38334, - [SMALL_STATE(896)] = 38350, - [SMALL_STATE(897)] = 38377, - [SMALL_STATE(898)] = 38406, - [SMALL_STATE(899)] = 38421, - [SMALL_STATE(900)] = 38450, - [SMALL_STATE(901)] = 38465, - [SMALL_STATE(902)] = 38488, - [SMALL_STATE(903)] = 38517, - [SMALL_STATE(904)] = 38546, - [SMALL_STATE(905)] = 38575, - [SMALL_STATE(906)] = 38604, - [SMALL_STATE(907)] = 38633, - [SMALL_STATE(908)] = 38662, - [SMALL_STATE(909)] = 38677, - [SMALL_STATE(910)] = 38702, - [SMALL_STATE(911)] = 38721, - [SMALL_STATE(912)] = 38750, - [SMALL_STATE(913)] = 38764, - [SMALL_STATE(914)] = 38790, - [SMALL_STATE(915)] = 38804, - [SMALL_STATE(916)] = 38818, - [SMALL_STATE(917)] = 38832, - [SMALL_STATE(918)] = 38846, - [SMALL_STATE(919)] = 38860, - [SMALL_STATE(920)] = 38886, - [SMALL_STATE(921)] = 38912, - [SMALL_STATE(922)] = 38930, - [SMALL_STATE(923)] = 38944, - [SMALL_STATE(924)] = 38958, - [SMALL_STATE(925)] = 38976, - [SMALL_STATE(926)] = 38990, - [SMALL_STATE(927)] = 39008, - [SMALL_STATE(928)] = 39022, - [SMALL_STATE(929)] = 39048, - [SMALL_STATE(930)] = 39062, - [SMALL_STATE(931)] = 39080, - [SMALL_STATE(932)] = 39094, - [SMALL_STATE(933)] = 39108, - [SMALL_STATE(934)] = 39122, - [SMALL_STATE(935)] = 39136, - [SMALL_STATE(936)] = 39150, - [SMALL_STATE(937)] = 39176, - [SMALL_STATE(938)] = 39190, - [SMALL_STATE(939)] = 39216, - [SMALL_STATE(940)] = 39230, - [SMALL_STATE(941)] = 39256, - [SMALL_STATE(942)] = 39270, - [SMALL_STATE(943)] = 39284, - [SMALL_STATE(944)] = 39310, - [SMALL_STATE(945)] = 39324, - [SMALL_STATE(946)] = 39338, - [SMALL_STATE(947)] = 39352, - [SMALL_STATE(948)] = 39378, - [SMALL_STATE(949)] = 39404, - [SMALL_STATE(950)] = 39426, - [SMALL_STATE(951)] = 39440, - [SMALL_STATE(952)] = 39454, - [SMALL_STATE(953)] = 39468, - [SMALL_STATE(954)] = 39482, - [SMALL_STATE(955)] = 39496, - [SMALL_STATE(956)] = 39510, - [SMALL_STATE(957)] = 39524, - [SMALL_STATE(958)] = 39543, - [SMALL_STATE(959)] = 39568, - [SMALL_STATE(960)] = 39589, - [SMALL_STATE(961)] = 39610, - [SMALL_STATE(962)] = 39633, - [SMALL_STATE(963)] = 39654, - [SMALL_STATE(964)] = 39677, - [SMALL_STATE(965)] = 39700, - [SMALL_STATE(966)] = 39725, - [SMALL_STATE(967)] = 39750, - [SMALL_STATE(968)] = 39773, - [SMALL_STATE(969)] = 39798, - [SMALL_STATE(970)] = 39821, - [SMALL_STATE(971)] = 39844, - [SMALL_STATE(972)] = 39867, - [SMALL_STATE(973)] = 39879, - [SMALL_STATE(974)] = 39899, - [SMALL_STATE(975)] = 39917, - [SMALL_STATE(976)] = 39937, - [SMALL_STATE(977)] = 39957, - [SMALL_STATE(978)] = 39975, - [SMALL_STATE(979)] = 39995, - [SMALL_STATE(980)] = 40015, - [SMALL_STATE(981)] = 40035, - [SMALL_STATE(982)] = 40057, - [SMALL_STATE(983)] = 40069, - [SMALL_STATE(984)] = 40081, - [SMALL_STATE(985)] = 40097, - [SMALL_STATE(986)] = 40117, - [SMALL_STATE(987)] = 40137, - [SMALL_STATE(988)] = 40149, - [SMALL_STATE(989)] = 40167, - [SMALL_STATE(990)] = 40187, - [SMALL_STATE(991)] = 40209, - [SMALL_STATE(992)] = 40229, - [SMALL_STATE(993)] = 40251, - [SMALL_STATE(994)] = 40266, - [SMALL_STATE(995)] = 40285, - [SMALL_STATE(996)] = 40300, - [SMALL_STATE(997)] = 40319, - [SMALL_STATE(998)] = 40334, - [SMALL_STATE(999)] = 40345, - [SMALL_STATE(1000)] = 40364, - [SMALL_STATE(1001)] = 40381, - [SMALL_STATE(1002)] = 40400, - [SMALL_STATE(1003)] = 40411, - [SMALL_STATE(1004)] = 40422, - [SMALL_STATE(1005)] = 40433, - [SMALL_STATE(1006)] = 40448, - [SMALL_STATE(1007)] = 40465, - [SMALL_STATE(1008)] = 40484, - [SMALL_STATE(1009)] = 40499, - [SMALL_STATE(1010)] = 40518, - [SMALL_STATE(1011)] = 40529, - [SMALL_STATE(1012)] = 40544, - [SMALL_STATE(1013)] = 40555, - [SMALL_STATE(1014)] = 40574, - [SMALL_STATE(1015)] = 40591, - [SMALL_STATE(1016)] = 40606, - [SMALL_STATE(1017)] = 40625, - [SMALL_STATE(1018)] = 40642, - [SMALL_STATE(1019)] = 40659, - [SMALL_STATE(1020)] = 40678, - [SMALL_STATE(1021)] = 40695, - [SMALL_STATE(1022)] = 40714, - [SMALL_STATE(1023)] = 40725, - [SMALL_STATE(1024)] = 40736, - [SMALL_STATE(1025)] = 40747, - [SMALL_STATE(1026)] = 40758, - [SMALL_STATE(1027)] = 40769, - [SMALL_STATE(1028)] = 40788, - [SMALL_STATE(1029)] = 40807, - [SMALL_STATE(1030)] = 40818, - [SMALL_STATE(1031)] = 40829, - [SMALL_STATE(1032)] = 40848, - [SMALL_STATE(1033)] = 40865, - [SMALL_STATE(1034)] = 40876, - [SMALL_STATE(1035)] = 40887, - [SMALL_STATE(1036)] = 40904, - [SMALL_STATE(1037)] = 40915, - [SMALL_STATE(1038)] = 40932, - [SMALL_STATE(1039)] = 40949, - [SMALL_STATE(1040)] = 40960, - [SMALL_STATE(1041)] = 40977, - [SMALL_STATE(1042)] = 40988, - [SMALL_STATE(1043)] = 40999, - [SMALL_STATE(1044)] = 41015, - [SMALL_STATE(1045)] = 41029, - [SMALL_STATE(1046)] = 41043, - [SMALL_STATE(1047)] = 41057, - [SMALL_STATE(1048)] = 41069, - [SMALL_STATE(1049)] = 41085, - [SMALL_STATE(1050)] = 41101, - [SMALL_STATE(1051)] = 41117, - [SMALL_STATE(1052)] = 41131, - [SMALL_STATE(1053)] = 41147, - [SMALL_STATE(1054)] = 41163, - [SMALL_STATE(1055)] = 41179, - [SMALL_STATE(1056)] = 41195, - [SMALL_STATE(1057)] = 41207, - [SMALL_STATE(1058)] = 41223, - [SMALL_STATE(1059)] = 41239, - [SMALL_STATE(1060)] = 41255, - [SMALL_STATE(1061)] = 41271, - [SMALL_STATE(1062)] = 41287, - [SMALL_STATE(1063)] = 41303, - [SMALL_STATE(1064)] = 41319, - [SMALL_STATE(1065)] = 41333, - [SMALL_STATE(1066)] = 41349, - [SMALL_STATE(1067)] = 41363, - [SMALL_STATE(1068)] = 41379, - [SMALL_STATE(1069)] = 41395, - [SMALL_STATE(1070)] = 41411, - [SMALL_STATE(1071)] = 41427, - [SMALL_STATE(1072)] = 41443, - [SMALL_STATE(1073)] = 41459, - [SMALL_STATE(1074)] = 41475, - [SMALL_STATE(1075)] = 41491, - [SMALL_STATE(1076)] = 41507, - [SMALL_STATE(1077)] = 41523, - [SMALL_STATE(1078)] = 41537, - [SMALL_STATE(1079)] = 41553, - [SMALL_STATE(1080)] = 41569, - [SMALL_STATE(1081)] = 41585, - [SMALL_STATE(1082)] = 41601, - [SMALL_STATE(1083)] = 41613, - [SMALL_STATE(1084)] = 41627, - [SMALL_STATE(1085)] = 41643, - [SMALL_STATE(1086)] = 41659, - [SMALL_STATE(1087)] = 41675, - [SMALL_STATE(1088)] = 41691, - [SMALL_STATE(1089)] = 41707, - [SMALL_STATE(1090)] = 41723, - [SMALL_STATE(1091)] = 41739, - [SMALL_STATE(1092)] = 41755, - [SMALL_STATE(1093)] = 41769, - [SMALL_STATE(1094)] = 41785, - [SMALL_STATE(1095)] = 41799, - [SMALL_STATE(1096)] = 41815, - [SMALL_STATE(1097)] = 41831, - [SMALL_STATE(1098)] = 41847, - [SMALL_STATE(1099)] = 41863, - [SMALL_STATE(1100)] = 41879, - [SMALL_STATE(1101)] = 41895, - [SMALL_STATE(1102)] = 41911, - [SMALL_STATE(1103)] = 41927, - [SMALL_STATE(1104)] = 41943, - [SMALL_STATE(1105)] = 41955, - [SMALL_STATE(1106)] = 41971, - [SMALL_STATE(1107)] = 41987, - [SMALL_STATE(1108)] = 42001, - [SMALL_STATE(1109)] = 42017, - [SMALL_STATE(1110)] = 42033, - [SMALL_STATE(1111)] = 42049, - [SMALL_STATE(1112)] = 42065, - [SMALL_STATE(1113)] = 42079, - [SMALL_STATE(1114)] = 42095, - [SMALL_STATE(1115)] = 42111, - [SMALL_STATE(1116)] = 42127, - [SMALL_STATE(1117)] = 42143, - [SMALL_STATE(1118)] = 42159, - [SMALL_STATE(1119)] = 42173, - [SMALL_STATE(1120)] = 42189, - [SMALL_STATE(1121)] = 42203, - [SMALL_STATE(1122)] = 42219, - [SMALL_STATE(1123)] = 42233, - [SMALL_STATE(1124)] = 42247, - [SMALL_STATE(1125)] = 42263, - [SMALL_STATE(1126)] = 42279, - [SMALL_STATE(1127)] = 42295, - [SMALL_STATE(1128)] = 42311, - [SMALL_STATE(1129)] = 42327, - [SMALL_STATE(1130)] = 42343, - [SMALL_STATE(1131)] = 42359, - [SMALL_STATE(1132)] = 42375, - [SMALL_STATE(1133)] = 42391, - [SMALL_STATE(1134)] = 42407, - [SMALL_STATE(1135)] = 42423, - [SMALL_STATE(1136)] = 42439, - [SMALL_STATE(1137)] = 42451, - [SMALL_STATE(1138)] = 42467, - [SMALL_STATE(1139)] = 42479, - [SMALL_STATE(1140)] = 42493, - [SMALL_STATE(1141)] = 42509, - [SMALL_STATE(1142)] = 42523, - [SMALL_STATE(1143)] = 42539, - [SMALL_STATE(1144)] = 42548, - [SMALL_STATE(1145)] = 42561, - [SMALL_STATE(1146)] = 42574, - [SMALL_STATE(1147)] = 42585, - [SMALL_STATE(1148)] = 42596, - [SMALL_STATE(1149)] = 42607, - [SMALL_STATE(1150)] = 42620, - [SMALL_STATE(1151)] = 42629, - [SMALL_STATE(1152)] = 42640, - [SMALL_STATE(1153)] = 42653, - [SMALL_STATE(1154)] = 42666, - [SMALL_STATE(1155)] = 42675, - [SMALL_STATE(1156)] = 42688, - [SMALL_STATE(1157)] = 42699, - [SMALL_STATE(1158)] = 42712, - [SMALL_STATE(1159)] = 42725, - [SMALL_STATE(1160)] = 42738, - [SMALL_STATE(1161)] = 42751, - [SMALL_STATE(1162)] = 42764, - [SMALL_STATE(1163)] = 42775, - [SMALL_STATE(1164)] = 42784, - [SMALL_STATE(1165)] = 42797, - [SMALL_STATE(1166)] = 42810, - [SMALL_STATE(1167)] = 42823, - [SMALL_STATE(1168)] = 42832, - [SMALL_STATE(1169)] = 42843, - [SMALL_STATE(1170)] = 42856, - [SMALL_STATE(1171)] = 42865, - [SMALL_STATE(1172)] = 42874, - [SMALL_STATE(1173)] = 42883, - [SMALL_STATE(1174)] = 42892, - [SMALL_STATE(1175)] = 42905, - [SMALL_STATE(1176)] = 42914, - [SMALL_STATE(1177)] = 42927, - [SMALL_STATE(1178)] = 42936, - [SMALL_STATE(1179)] = 42945, - [SMALL_STATE(1180)] = 42958, - [SMALL_STATE(1181)] = 42971, - [SMALL_STATE(1182)] = 42984, - [SMALL_STATE(1183)] = 42995, - [SMALL_STATE(1184)] = 43008, - [SMALL_STATE(1185)] = 43017, - [SMALL_STATE(1186)] = 43030, - [SMALL_STATE(1187)] = 43039, - [SMALL_STATE(1188)] = 43048, - [SMALL_STATE(1189)] = 43061, - [SMALL_STATE(1190)] = 43072, - [SMALL_STATE(1191)] = 43081, - [SMALL_STATE(1192)] = 43092, - [SMALL_STATE(1193)] = 43105, - [SMALL_STATE(1194)] = 43118, - [SMALL_STATE(1195)] = 43127, - [SMALL_STATE(1196)] = 43136, - [SMALL_STATE(1197)] = 43149, - [SMALL_STATE(1198)] = 43158, - [SMALL_STATE(1199)] = 43171, - [SMALL_STATE(1200)] = 43184, - [SMALL_STATE(1201)] = 43197, - [SMALL_STATE(1202)] = 43206, - [SMALL_STATE(1203)] = 43219, - [SMALL_STATE(1204)] = 43232, - [SMALL_STATE(1205)] = 43241, - [SMALL_STATE(1206)] = 43250, - [SMALL_STATE(1207)] = 43263, - [SMALL_STATE(1208)] = 43276, - [SMALL_STATE(1209)] = 43289, - [SMALL_STATE(1210)] = 43302, - [SMALL_STATE(1211)] = 43315, - [SMALL_STATE(1212)] = 43328, - [SMALL_STATE(1213)] = 43337, - [SMALL_STATE(1214)] = 43346, - [SMALL_STATE(1215)] = 43359, - [SMALL_STATE(1216)] = 43368, - [SMALL_STATE(1217)] = 43377, - [SMALL_STATE(1218)] = 43390, - [SMALL_STATE(1219)] = 43399, - [SMALL_STATE(1220)] = 43408, - [SMALL_STATE(1221)] = 43417, - [SMALL_STATE(1222)] = 43430, - [SMALL_STATE(1223)] = 43443, - [SMALL_STATE(1224)] = 43452, - [SMALL_STATE(1225)] = 43461, - [SMALL_STATE(1226)] = 43474, - [SMALL_STATE(1227)] = 43487, - [SMALL_STATE(1228)] = 43498, - [SMALL_STATE(1229)] = 43511, - [SMALL_STATE(1230)] = 43524, - [SMALL_STATE(1231)] = 43537, - [SMALL_STATE(1232)] = 43548, - [SMALL_STATE(1233)] = 43557, - [SMALL_STATE(1234)] = 43570, - [SMALL_STATE(1235)] = 43583, - [SMALL_STATE(1236)] = 43596, - [SMALL_STATE(1237)] = 43605, - [SMALL_STATE(1238)] = 43618, - [SMALL_STATE(1239)] = 43631, - [SMALL_STATE(1240)] = 43644, - [SMALL_STATE(1241)] = 43657, - [SMALL_STATE(1242)] = 43666, - [SMALL_STATE(1243)] = 43679, - [SMALL_STATE(1244)] = 43688, - [SMALL_STATE(1245)] = 43701, - [SMALL_STATE(1246)] = 43710, - [SMALL_STATE(1247)] = 43719, - [SMALL_STATE(1248)] = 43732, - [SMALL_STATE(1249)] = 43745, - [SMALL_STATE(1250)] = 43758, - [SMALL_STATE(1251)] = 43767, - [SMALL_STATE(1252)] = 43780, - [SMALL_STATE(1253)] = 43789, - [SMALL_STATE(1254)] = 43802, - [SMALL_STATE(1255)] = 43811, - [SMALL_STATE(1256)] = 43824, - [SMALL_STATE(1257)] = 43835, - [SMALL_STATE(1258)] = 43848, - [SMALL_STATE(1259)] = 43859, - [SMALL_STATE(1260)] = 43870, - [SMALL_STATE(1261)] = 43881, - [SMALL_STATE(1262)] = 43894, - [SMALL_STATE(1263)] = 43907, - [SMALL_STATE(1264)] = 43920, - [SMALL_STATE(1265)] = 43933, - [SMALL_STATE(1266)] = 43942, - [SMALL_STATE(1267)] = 43953, - [SMALL_STATE(1268)] = 43962, - [SMALL_STATE(1269)] = 43975, - [SMALL_STATE(1270)] = 43984, - [SMALL_STATE(1271)] = 43997, - [SMALL_STATE(1272)] = 44006, - [SMALL_STATE(1273)] = 44015, - [SMALL_STATE(1274)] = 44028, - [SMALL_STATE(1275)] = 44041, - [SMALL_STATE(1276)] = 44050, - [SMALL_STATE(1277)] = 44063, - [SMALL_STATE(1278)] = 44076, - [SMALL_STATE(1279)] = 44089, - [SMALL_STATE(1280)] = 44102, - [SMALL_STATE(1281)] = 44111, - [SMALL_STATE(1282)] = 44124, - [SMALL_STATE(1283)] = 44137, - [SMALL_STATE(1284)] = 44150, - [SMALL_STATE(1285)] = 44163, - [SMALL_STATE(1286)] = 44176, - [SMALL_STATE(1287)] = 44189, - [SMALL_STATE(1288)] = 44202, - [SMALL_STATE(1289)] = 44215, - [SMALL_STATE(1290)] = 44228, - [SMALL_STATE(1291)] = 44241, - [SMALL_STATE(1292)] = 44254, - [SMALL_STATE(1293)] = 44263, - [SMALL_STATE(1294)] = 44276, - [SMALL_STATE(1295)] = 44289, - [SMALL_STATE(1296)] = 44300, - [SMALL_STATE(1297)] = 44313, - [SMALL_STATE(1298)] = 44326, - [SMALL_STATE(1299)] = 44339, - [SMALL_STATE(1300)] = 44352, - [SMALL_STATE(1301)] = 44365, - [SMALL_STATE(1302)] = 44378, - [SMALL_STATE(1303)] = 44391, - [SMALL_STATE(1304)] = 44404, - [SMALL_STATE(1305)] = 44417, - [SMALL_STATE(1306)] = 44430, - [SMALL_STATE(1307)] = 44443, - [SMALL_STATE(1308)] = 44456, - [SMALL_STATE(1309)] = 44469, - [SMALL_STATE(1310)] = 44482, - [SMALL_STATE(1311)] = 44495, - [SMALL_STATE(1312)] = 44508, - [SMALL_STATE(1313)] = 44521, - [SMALL_STATE(1314)] = 44534, - [SMALL_STATE(1315)] = 44547, - [SMALL_STATE(1316)] = 44560, - [SMALL_STATE(1317)] = 44571, - [SMALL_STATE(1318)] = 44584, - [SMALL_STATE(1319)] = 44597, - [SMALL_STATE(1320)] = 44610, - [SMALL_STATE(1321)] = 44621, - [SMALL_STATE(1322)] = 44634, - [SMALL_STATE(1323)] = 44643, - [SMALL_STATE(1324)] = 44656, - [SMALL_STATE(1325)] = 44669, - [SMALL_STATE(1326)] = 44682, - [SMALL_STATE(1327)] = 44695, - [SMALL_STATE(1328)] = 44708, - [SMALL_STATE(1329)] = 44721, - [SMALL_STATE(1330)] = 44734, - [SMALL_STATE(1331)] = 44747, - [SMALL_STATE(1332)] = 44760, - [SMALL_STATE(1333)] = 44773, - [SMALL_STATE(1334)] = 44786, - [SMALL_STATE(1335)] = 44799, - [SMALL_STATE(1336)] = 44809, - [SMALL_STATE(1337)] = 44817, - [SMALL_STATE(1338)] = 44827, - [SMALL_STATE(1339)] = 44837, - [SMALL_STATE(1340)] = 44847, - [SMALL_STATE(1341)] = 44857, - [SMALL_STATE(1342)] = 44867, - [SMALL_STATE(1343)] = 44875, - [SMALL_STATE(1344)] = 44885, - [SMALL_STATE(1345)] = 44895, - [SMALL_STATE(1346)] = 44905, - [SMALL_STATE(1347)] = 44913, - [SMALL_STATE(1348)] = 44923, - [SMALL_STATE(1349)] = 44931, - [SMALL_STATE(1350)] = 44941, - [SMALL_STATE(1351)] = 44949, - [SMALL_STATE(1352)] = 44959, - [SMALL_STATE(1353)] = 44967, - [SMALL_STATE(1354)] = 44975, - [SMALL_STATE(1355)] = 44983, - [SMALL_STATE(1356)] = 44991, - [SMALL_STATE(1357)] = 45001, - [SMALL_STATE(1358)] = 45009, - [SMALL_STATE(1359)] = 45019, - [SMALL_STATE(1360)] = 45027, - [SMALL_STATE(1361)] = 45037, - [SMALL_STATE(1362)] = 45047, - [SMALL_STATE(1363)] = 45055, - [SMALL_STATE(1364)] = 45065, - [SMALL_STATE(1365)] = 45075, - [SMALL_STATE(1366)] = 45085, - [SMALL_STATE(1367)] = 45095, - [SMALL_STATE(1368)] = 45105, - [SMALL_STATE(1369)] = 45113, - [SMALL_STATE(1370)] = 45123, - [SMALL_STATE(1371)] = 45131, - [SMALL_STATE(1372)] = 45141, - [SMALL_STATE(1373)] = 45149, - [SMALL_STATE(1374)] = 45159, - [SMALL_STATE(1375)] = 45169, - [SMALL_STATE(1376)] = 45179, - [SMALL_STATE(1377)] = 45189, - [SMALL_STATE(1378)] = 45199, - [SMALL_STATE(1379)] = 45207, - [SMALL_STATE(1380)] = 45217, - [SMALL_STATE(1381)] = 45227, - [SMALL_STATE(1382)] = 45237, - [SMALL_STATE(1383)] = 45247, - [SMALL_STATE(1384)] = 45257, - [SMALL_STATE(1385)] = 45267, - [SMALL_STATE(1386)] = 45275, - [SMALL_STATE(1387)] = 45283, - [SMALL_STATE(1388)] = 45291, - [SMALL_STATE(1389)] = 45299, - [SMALL_STATE(1390)] = 45307, - [SMALL_STATE(1391)] = 45315, - [SMALL_STATE(1392)] = 45325, - [SMALL_STATE(1393)] = 45335, - [SMALL_STATE(1394)] = 45345, - [SMALL_STATE(1395)] = 45353, - [SMALL_STATE(1396)] = 45363, - [SMALL_STATE(1397)] = 45371, - [SMALL_STATE(1398)] = 45381, - [SMALL_STATE(1399)] = 45389, - [SMALL_STATE(1400)] = 45397, - [SMALL_STATE(1401)] = 45405, - [SMALL_STATE(1402)] = 45413, - [SMALL_STATE(1403)] = 45421, - [SMALL_STATE(1404)] = 45431, - [SMALL_STATE(1405)] = 45441, - [SMALL_STATE(1406)] = 45449, - [SMALL_STATE(1407)] = 45459, - [SMALL_STATE(1408)] = 45469, - [SMALL_STATE(1409)] = 45479, - [SMALL_STATE(1410)] = 45489, - [SMALL_STATE(1411)] = 45499, - [SMALL_STATE(1412)] = 45509, - [SMALL_STATE(1413)] = 45519, - [SMALL_STATE(1414)] = 45529, - [SMALL_STATE(1415)] = 45539, - [SMALL_STATE(1416)] = 45547, - [SMALL_STATE(1417)] = 45557, - [SMALL_STATE(1418)] = 45567, - [SMALL_STATE(1419)] = 45575, - [SMALL_STATE(1420)] = 45585, - [SMALL_STATE(1421)] = 45593, - [SMALL_STATE(1422)] = 45601, - [SMALL_STATE(1423)] = 45611, - [SMALL_STATE(1424)] = 45621, - [SMALL_STATE(1425)] = 45631, - [SMALL_STATE(1426)] = 45639, - [SMALL_STATE(1427)] = 45647, - [SMALL_STATE(1428)] = 45657, - [SMALL_STATE(1429)] = 45665, - [SMALL_STATE(1430)] = 45675, - [SMALL_STATE(1431)] = 45685, - [SMALL_STATE(1432)] = 45695, - [SMALL_STATE(1433)] = 45705, - [SMALL_STATE(1434)] = 45713, - [SMALL_STATE(1435)] = 45723, - [SMALL_STATE(1436)] = 45733, - [SMALL_STATE(1437)] = 45741, - [SMALL_STATE(1438)] = 45751, - [SMALL_STATE(1439)] = 45759, - [SMALL_STATE(1440)] = 45767, - [SMALL_STATE(1441)] = 45777, - [SMALL_STATE(1442)] = 45785, - [SMALL_STATE(1443)] = 45795, - [SMALL_STATE(1444)] = 45803, - [SMALL_STATE(1445)] = 45813, - [SMALL_STATE(1446)] = 45823, - [SMALL_STATE(1447)] = 45833, - [SMALL_STATE(1448)] = 45843, - [SMALL_STATE(1449)] = 45853, - [SMALL_STATE(1450)] = 45863, - [SMALL_STATE(1451)] = 45873, - [SMALL_STATE(1452)] = 45883, - [SMALL_STATE(1453)] = 45893, - [SMALL_STATE(1454)] = 45903, - [SMALL_STATE(1455)] = 45913, - [SMALL_STATE(1456)] = 45923, - [SMALL_STATE(1457)] = 45933, - [SMALL_STATE(1458)] = 45943, - [SMALL_STATE(1459)] = 45953, - [SMALL_STATE(1460)] = 45963, - [SMALL_STATE(1461)] = 45973, - [SMALL_STATE(1462)] = 45983, - [SMALL_STATE(1463)] = 45993, - [SMALL_STATE(1464)] = 46003, - [SMALL_STATE(1465)] = 46011, - [SMALL_STATE(1466)] = 46019, - [SMALL_STATE(1467)] = 46027, - [SMALL_STATE(1468)] = 46037, - [SMALL_STATE(1469)] = 46047, - [SMALL_STATE(1470)] = 46057, - [SMALL_STATE(1471)] = 46064, - [SMALL_STATE(1472)] = 46071, - [SMALL_STATE(1473)] = 46078, - [SMALL_STATE(1474)] = 46085, - [SMALL_STATE(1475)] = 46092, - [SMALL_STATE(1476)] = 46099, - [SMALL_STATE(1477)] = 46106, - [SMALL_STATE(1478)] = 46113, - [SMALL_STATE(1479)] = 46120, - [SMALL_STATE(1480)] = 46127, - [SMALL_STATE(1481)] = 46134, - [SMALL_STATE(1482)] = 46141, - [SMALL_STATE(1483)] = 46148, - [SMALL_STATE(1484)] = 46155, - [SMALL_STATE(1485)] = 46162, - [SMALL_STATE(1486)] = 46169, - [SMALL_STATE(1487)] = 46176, - [SMALL_STATE(1488)] = 46183, - [SMALL_STATE(1489)] = 46190, - [SMALL_STATE(1490)] = 46197, - [SMALL_STATE(1491)] = 46204, - [SMALL_STATE(1492)] = 46211, - [SMALL_STATE(1493)] = 46218, - [SMALL_STATE(1494)] = 46225, - [SMALL_STATE(1495)] = 46232, - [SMALL_STATE(1496)] = 46239, - [SMALL_STATE(1497)] = 46246, - [SMALL_STATE(1498)] = 46253, - [SMALL_STATE(1499)] = 46260, - [SMALL_STATE(1500)] = 46267, - [SMALL_STATE(1501)] = 46274, - [SMALL_STATE(1502)] = 46281, - [SMALL_STATE(1503)] = 46288, - [SMALL_STATE(1504)] = 46295, - [SMALL_STATE(1505)] = 46302, - [SMALL_STATE(1506)] = 46309, - [SMALL_STATE(1507)] = 46316, - [SMALL_STATE(1508)] = 46323, - [SMALL_STATE(1509)] = 46330, - [SMALL_STATE(1510)] = 46337, - [SMALL_STATE(1511)] = 46344, - [SMALL_STATE(1512)] = 46351, - [SMALL_STATE(1513)] = 46358, - [SMALL_STATE(1514)] = 46365, - [SMALL_STATE(1515)] = 46372, - [SMALL_STATE(1516)] = 46379, - [SMALL_STATE(1517)] = 46386, - [SMALL_STATE(1518)] = 46393, - [SMALL_STATE(1519)] = 46400, - [SMALL_STATE(1520)] = 46407, - [SMALL_STATE(1521)] = 46414, - [SMALL_STATE(1522)] = 46421, - [SMALL_STATE(1523)] = 46428, - [SMALL_STATE(1524)] = 46435, - [SMALL_STATE(1525)] = 46442, - [SMALL_STATE(1526)] = 46449, - [SMALL_STATE(1527)] = 46456, - [SMALL_STATE(1528)] = 46463, - [SMALL_STATE(1529)] = 46470, - [SMALL_STATE(1530)] = 46477, - [SMALL_STATE(1531)] = 46484, - [SMALL_STATE(1532)] = 46491, - [SMALL_STATE(1533)] = 46498, - [SMALL_STATE(1534)] = 46505, - [SMALL_STATE(1535)] = 46512, - [SMALL_STATE(1536)] = 46519, - [SMALL_STATE(1537)] = 46526, - [SMALL_STATE(1538)] = 46533, - [SMALL_STATE(1539)] = 46540, - [SMALL_STATE(1540)] = 46547, - [SMALL_STATE(1541)] = 46554, - [SMALL_STATE(1542)] = 46561, - [SMALL_STATE(1543)] = 46568, - [SMALL_STATE(1544)] = 46575, - [SMALL_STATE(1545)] = 46582, - [SMALL_STATE(1546)] = 46589, - [SMALL_STATE(1547)] = 46596, - [SMALL_STATE(1548)] = 46603, - [SMALL_STATE(1549)] = 46610, - [SMALL_STATE(1550)] = 46617, - [SMALL_STATE(1551)] = 46624, - [SMALL_STATE(1552)] = 46631, - [SMALL_STATE(1553)] = 46638, - [SMALL_STATE(1554)] = 46645, - [SMALL_STATE(1555)] = 46652, - [SMALL_STATE(1556)] = 46659, - [SMALL_STATE(1557)] = 46666, - [SMALL_STATE(1558)] = 46673, - [SMALL_STATE(1559)] = 46680, - [SMALL_STATE(1560)] = 46687, - [SMALL_STATE(1561)] = 46694, - [SMALL_STATE(1562)] = 46701, - [SMALL_STATE(1563)] = 46708, - [SMALL_STATE(1564)] = 46715, - [SMALL_STATE(1565)] = 46722, - [SMALL_STATE(1566)] = 46729, - [SMALL_STATE(1567)] = 46736, - [SMALL_STATE(1568)] = 46743, - [SMALL_STATE(1569)] = 46750, - [SMALL_STATE(1570)] = 46757, - [SMALL_STATE(1571)] = 46764, - [SMALL_STATE(1572)] = 46771, - [SMALL_STATE(1573)] = 46778, - [SMALL_STATE(1574)] = 46785, - [SMALL_STATE(1575)] = 46792, - [SMALL_STATE(1576)] = 46799, - [SMALL_STATE(1577)] = 46806, - [SMALL_STATE(1578)] = 46813, - [SMALL_STATE(1579)] = 46820, - [SMALL_STATE(1580)] = 46827, - [SMALL_STATE(1581)] = 46834, - [SMALL_STATE(1582)] = 46841, - [SMALL_STATE(1583)] = 46848, - [SMALL_STATE(1584)] = 46855, - [SMALL_STATE(1585)] = 46862, - [SMALL_STATE(1586)] = 46869, - [SMALL_STATE(1587)] = 46876, - [SMALL_STATE(1588)] = 46883, - [SMALL_STATE(1589)] = 46890, - [SMALL_STATE(1590)] = 46897, - [SMALL_STATE(1591)] = 46904, - [SMALL_STATE(1592)] = 46911, - [SMALL_STATE(1593)] = 46918, - [SMALL_STATE(1594)] = 46925, - [SMALL_STATE(1595)] = 46932, - [SMALL_STATE(1596)] = 46939, - [SMALL_STATE(1597)] = 46946, - [SMALL_STATE(1598)] = 46953, - [SMALL_STATE(1599)] = 46960, - [SMALL_STATE(1600)] = 46967, - [SMALL_STATE(1601)] = 46974, - [SMALL_STATE(1602)] = 46981, - [SMALL_STATE(1603)] = 46988, - [SMALL_STATE(1604)] = 46995, - [SMALL_STATE(1605)] = 47002, - [SMALL_STATE(1606)] = 47009, - [SMALL_STATE(1607)] = 47016, - [SMALL_STATE(1608)] = 47023, - [SMALL_STATE(1609)] = 47030, - [SMALL_STATE(1610)] = 47037, - [SMALL_STATE(1611)] = 47044, - [SMALL_STATE(1612)] = 47051, - [SMALL_STATE(1613)] = 47058, - [SMALL_STATE(1614)] = 47065, - [SMALL_STATE(1615)] = 47072, - [SMALL_STATE(1616)] = 47079, - [SMALL_STATE(1617)] = 47086, - [SMALL_STATE(1618)] = 47093, - [SMALL_STATE(1619)] = 47100, - [SMALL_STATE(1620)] = 47107, - [SMALL_STATE(1621)] = 47114, - [SMALL_STATE(1622)] = 47121, - [SMALL_STATE(1623)] = 47128, - [SMALL_STATE(1624)] = 47135, - [SMALL_STATE(1625)] = 47142, - [SMALL_STATE(1626)] = 47149, - [SMALL_STATE(1627)] = 47156, - [SMALL_STATE(1628)] = 47163, - [SMALL_STATE(1629)] = 47170, - [SMALL_STATE(1630)] = 47177, - [SMALL_STATE(1631)] = 47184, - [SMALL_STATE(1632)] = 47191, + [SMALL_STATE(690)] = 29726, + [SMALL_STATE(691)] = 29789, + [SMALL_STATE(692)] = 29862, + [SMALL_STATE(693)] = 29925, + [SMALL_STATE(694)] = 29968, + [SMALL_STATE(695)] = 30041, + [SMALL_STATE(696)] = 30112, + [SMALL_STATE(697)] = 30153, + [SMALL_STATE(698)] = 30216, + [SMALL_STATE(699)] = 30287, + [SMALL_STATE(700)] = 30360, + [SMALL_STATE(701)] = 30399, + [SMALL_STATE(702)] = 30442, + [SMALL_STATE(703)] = 30505, + [SMALL_STATE(704)] = 30568, + [SMALL_STATE(705)] = 30611, + [SMALL_STATE(706)] = 30650, + [SMALL_STATE(707)] = 30713, + [SMALL_STATE(708)] = 30752, + [SMALL_STATE(709)] = 30795, + [SMALL_STATE(710)] = 30868, + [SMALL_STATE(711)] = 30938, + [SMALL_STATE(712)] = 31006, + [SMALL_STATE(713)] = 31046, + [SMALL_STATE(714)] = 31098, + [SMALL_STATE(715)] = 31164, + [SMALL_STATE(716)] = 31228, + [SMALL_STATE(717)] = 31286, + [SMALL_STATE(718)] = 31340, + [SMALL_STATE(719)] = 31396, + [SMALL_STATE(720)] = 31446, + [SMALL_STATE(721)] = 31506, + [SMALL_STATE(722)] = 31546, + [SMALL_STATE(723)] = 31594, + [SMALL_STATE(724)] = 31662, + [SMALL_STATE(725)] = 31702, + [SMALL_STATE(726)] = 31742, + [SMALL_STATE(727)] = 31812, + [SMALL_STATE(728)] = 31860, + [SMALL_STATE(729)] = 31898, + [SMALL_STATE(730)] = 31946, + [SMALL_STATE(731)] = 32016, + [SMALL_STATE(732)] = 32054, + [SMALL_STATE(733)] = 32094, + [SMALL_STATE(734)] = 32164, + [SMALL_STATE(735)] = 32234, + [SMALL_STATE(736)] = 32272, + [SMALL_STATE(737)] = 32310, + [SMALL_STATE(738)] = 32380, + [SMALL_STATE(739)] = 32450, + [SMALL_STATE(740)] = 32520, + [SMALL_STATE(741)] = 32590, + [SMALL_STATE(742)] = 32658, + [SMALL_STATE(743)] = 32728, + [SMALL_STATE(744)] = 32798, + [SMALL_STATE(745)] = 32836, + [SMALL_STATE(746)] = 32874, + [SMALL_STATE(747)] = 32912, + [SMALL_STATE(748)] = 32950, + [SMALL_STATE(749)] = 33020, + [SMALL_STATE(750)] = 33090, + [SMALL_STATE(751)] = 33160, + [SMALL_STATE(752)] = 33230, + [SMALL_STATE(753)] = 33298, + [SMALL_STATE(754)] = 33350, + [SMALL_STATE(755)] = 33420, + [SMALL_STATE(756)] = 33488, + [SMALL_STATE(757)] = 33558, + [SMALL_STATE(758)] = 33626, + [SMALL_STATE(759)] = 33694, + [SMALL_STATE(760)] = 33760, + [SMALL_STATE(761)] = 33828, + [SMALL_STATE(762)] = 33898, + [SMALL_STATE(763)] = 33962, + [SMALL_STATE(764)] = 34020, + [SMALL_STATE(765)] = 34068, + [SMALL_STATE(766)] = 34138, + [SMALL_STATE(767)] = 34198, + [SMALL_STATE(768)] = 34268, + [SMALL_STATE(769)] = 34322, + [SMALL_STATE(770)] = 34392, + [SMALL_STATE(771)] = 34462, + [SMALL_STATE(772)] = 34532, + [SMALL_STATE(773)] = 34602, + [SMALL_STATE(774)] = 34672, + [SMALL_STATE(775)] = 34728, + [SMALL_STATE(776)] = 34766, + [SMALL_STATE(777)] = 34816, + [SMALL_STATE(778)] = 34886, + [SMALL_STATE(779)] = 34956, + [SMALL_STATE(780)] = 35026, + [SMALL_STATE(781)] = 35096, + [SMALL_STATE(782)] = 35166, + [SMALL_STATE(783)] = 35236, + [SMALL_STATE(784)] = 35273, + [SMALL_STATE(785)] = 35310, + [SMALL_STATE(786)] = 35347, + [SMALL_STATE(787)] = 35384, + [SMALL_STATE(788)] = 35421, + [SMALL_STATE(789)] = 35458, + [SMALL_STATE(790)] = 35495, + [SMALL_STATE(791)] = 35532, + [SMALL_STATE(792)] = 35569, + [SMALL_STATE(793)] = 35606, + [SMALL_STATE(794)] = 35643, + [SMALL_STATE(795)] = 35680, + [SMALL_STATE(796)] = 35717, + [SMALL_STATE(797)] = 35754, + [SMALL_STATE(798)] = 35791, + [SMALL_STATE(799)] = 35828, + [SMALL_STATE(800)] = 35865, + [SMALL_STATE(801)] = 35902, + [SMALL_STATE(802)] = 35939, + [SMALL_STATE(803)] = 35976, + [SMALL_STATE(804)] = 36013, + [SMALL_STATE(805)] = 36050, + [SMALL_STATE(806)] = 36087, + [SMALL_STATE(807)] = 36124, + [SMALL_STATE(808)] = 36161, + [SMALL_STATE(809)] = 36198, + [SMALL_STATE(810)] = 36253, + [SMALL_STATE(811)] = 36290, + [SMALL_STATE(812)] = 36327, + [SMALL_STATE(813)] = 36364, + [SMALL_STATE(814)] = 36401, + [SMALL_STATE(815)] = 36438, + [SMALL_STATE(816)] = 36475, + [SMALL_STATE(817)] = 36512, + [SMALL_STATE(818)] = 36549, + [SMALL_STATE(819)] = 36586, + [SMALL_STATE(820)] = 36623, + [SMALL_STATE(821)] = 36660, + [SMALL_STATE(822)] = 36697, + [SMALL_STATE(823)] = 36734, + [SMALL_STATE(824)] = 36771, + [SMALL_STATE(825)] = 36808, + [SMALL_STATE(826)] = 36845, + [SMALL_STATE(827)] = 36882, + [SMALL_STATE(828)] = 36919, + [SMALL_STATE(829)] = 36956, + [SMALL_STATE(830)] = 36993, + [SMALL_STATE(831)] = 37045, + [SMALL_STATE(832)] = 37097, + [SMALL_STATE(833)] = 37146, + [SMALL_STATE(834)] = 37195, + [SMALL_STATE(835)] = 37244, + [SMALL_STATE(836)] = 37293, + [SMALL_STATE(837)] = 37342, + [SMALL_STATE(838)] = 37379, + [SMALL_STATE(839)] = 37410, + [SMALL_STATE(840)] = 37452, + [SMALL_STATE(841)] = 37491, + [SMALL_STATE(842)] = 37530, + [SMALL_STATE(843)] = 37569, + [SMALL_STATE(844)] = 37608, + [SMALL_STATE(845)] = 37647, + [SMALL_STATE(846)] = 37686, + [SMALL_STATE(847)] = 37725, + [SMALL_STATE(848)] = 37764, + [SMALL_STATE(849)] = 37803, + [SMALL_STATE(850)] = 37842, + [SMALL_STATE(851)] = 37881, + [SMALL_STATE(852)] = 37917, + [SMALL_STATE(853)] = 37953, + [SMALL_STATE(854)] = 37979, + [SMALL_STATE(855)] = 38005, + [SMALL_STATE(856)] = 38031, + [SMALL_STATE(857)] = 38057, + [SMALL_STATE(858)] = 38092, + [SMALL_STATE(859)] = 38116, + [SMALL_STATE(860)] = 38138, + [SMALL_STATE(861)] = 38162, + [SMALL_STATE(862)] = 38186, + [SMALL_STATE(863)] = 38210, + [SMALL_STATE(864)] = 38232, + [SMALL_STATE(865)] = 38254, + [SMALL_STATE(866)] = 38276, + [SMALL_STATE(867)] = 38295, + [SMALL_STATE(868)] = 38314, + [SMALL_STATE(869)] = 38333, + [SMALL_STATE(870)] = 38352, + [SMALL_STATE(871)] = 38381, + [SMALL_STATE(872)] = 38399, + [SMALL_STATE(873)] = 38417, + [SMALL_STATE(874)] = 38435, + [SMALL_STATE(875)] = 38461, + [SMALL_STATE(876)] = 38501, + [SMALL_STATE(877)] = 38541, + [SMALL_STATE(878)] = 38560, + [SMALL_STATE(879)] = 38579, + [SMALL_STATE(880)] = 38596, + [SMALL_STATE(881)] = 38617, + [SMALL_STATE(882)] = 38636, + [SMALL_STATE(883)] = 38655, + [SMALL_STATE(884)] = 38686, + [SMALL_STATE(885)] = 38703, + [SMALL_STATE(886)] = 38720, + [SMALL_STATE(887)] = 38741, + [SMALL_STATE(888)] = 38758, + [SMALL_STATE(889)] = 38779, + [SMALL_STATE(890)] = 38800, + [SMALL_STATE(891)] = 38831, + [SMALL_STATE(892)] = 38847, + [SMALL_STATE(893)] = 38863, + [SMALL_STATE(894)] = 38891, + [SMALL_STATE(895)] = 38923, + [SMALL_STATE(896)] = 38955, + [SMALL_STATE(897)] = 38987, + [SMALL_STATE(898)] = 39007, + [SMALL_STATE(899)] = 39023, + [SMALL_STATE(900)] = 39039, + [SMALL_STATE(901)] = 39063, + [SMALL_STATE(902)] = 39079, + [SMALL_STATE(903)] = 39099, + [SMALL_STATE(904)] = 39115, + [SMALL_STATE(905)] = 39143, + [SMALL_STATE(906)] = 39159, + [SMALL_STATE(907)] = 39175, + [SMALL_STATE(908)] = 39191, + [SMALL_STATE(909)] = 39207, + [SMALL_STATE(910)] = 39223, + [SMALL_STATE(911)] = 39239, + [SMALL_STATE(912)] = 39255, + [SMALL_STATE(913)] = 39287, + [SMALL_STATE(914)] = 39315, + [SMALL_STATE(915)] = 39343, + [SMALL_STATE(916)] = 39359, + [SMALL_STATE(917)] = 39374, + [SMALL_STATE(918)] = 39401, + [SMALL_STATE(919)] = 39430, + [SMALL_STATE(920)] = 39459, + [SMALL_STATE(921)] = 39474, + [SMALL_STATE(922)] = 39489, + [SMALL_STATE(923)] = 39518, + [SMALL_STATE(924)] = 39533, + [SMALL_STATE(925)] = 39548, + [SMALL_STATE(926)] = 39563, + [SMALL_STATE(927)] = 39578, + [SMALL_STATE(928)] = 39593, + [SMALL_STATE(929)] = 39622, + [SMALL_STATE(930)] = 39637, + [SMALL_STATE(931)] = 39652, + [SMALL_STATE(932)] = 39667, + [SMALL_STATE(933)] = 39682, + [SMALL_STATE(934)] = 39711, + [SMALL_STATE(935)] = 39736, + [SMALL_STATE(936)] = 39751, + [SMALL_STATE(937)] = 39780, + [SMALL_STATE(938)] = 39795, + [SMALL_STATE(939)] = 39810, + [SMALL_STATE(940)] = 39825, + [SMALL_STATE(941)] = 39840, + [SMALL_STATE(942)] = 39855, + [SMALL_STATE(943)] = 39870, + [SMALL_STATE(944)] = 39885, + [SMALL_STATE(945)] = 39908, + [SMALL_STATE(946)] = 39937, + [SMALL_STATE(947)] = 39952, + [SMALL_STATE(948)] = 39967, + [SMALL_STATE(949)] = 39982, + [SMALL_STATE(950)] = 40011, + [SMALL_STATE(951)] = 40040, + [SMALL_STATE(952)] = 40055, + [SMALL_STATE(953)] = 40070, + [SMALL_STATE(954)] = 40085, + [SMALL_STATE(955)] = 40100, + [SMALL_STATE(956)] = 40115, + [SMALL_STATE(957)] = 40130, + [SMALL_STATE(958)] = 40145, + [SMALL_STATE(959)] = 40171, + [SMALL_STATE(960)] = 40189, + [SMALL_STATE(961)] = 40215, + [SMALL_STATE(962)] = 40241, + [SMALL_STATE(963)] = 40267, + [SMALL_STATE(964)] = 40293, + [SMALL_STATE(965)] = 40315, + [SMALL_STATE(966)] = 40333, + [SMALL_STATE(967)] = 40359, + [SMALL_STATE(968)] = 40377, + [SMALL_STATE(969)] = 40403, + [SMALL_STATE(970)] = 40429, + [SMALL_STATE(971)] = 40447, + [SMALL_STATE(972)] = 40473, + [SMALL_STATE(973)] = 40499, + [SMALL_STATE(974)] = 40518, + [SMALL_STATE(975)] = 40539, + [SMALL_STATE(976)] = 40564, + [SMALL_STATE(977)] = 40587, + [SMALL_STATE(978)] = 40612, + [SMALL_STATE(979)] = 40635, + [SMALL_STATE(980)] = 40658, + [SMALL_STATE(981)] = 40681, + [SMALL_STATE(982)] = 40706, + [SMALL_STATE(983)] = 40727, + [SMALL_STATE(984)] = 40750, + [SMALL_STATE(985)] = 40775, + [SMALL_STATE(986)] = 40796, + [SMALL_STATE(987)] = 40819, + [SMALL_STATE(988)] = 40842, + [SMALL_STATE(989)] = 40860, + [SMALL_STATE(990)] = 40872, + [SMALL_STATE(991)] = 40892, + [SMALL_STATE(992)] = 40914, + [SMALL_STATE(993)] = 40932, + [SMALL_STATE(994)] = 40954, + [SMALL_STATE(995)] = 40974, + [SMALL_STATE(996)] = 40994, + [SMALL_STATE(997)] = 41010, + [SMALL_STATE(998)] = 41030, + [SMALL_STATE(999)] = 41050, + [SMALL_STATE(1000)] = 41070, + [SMALL_STATE(1001)] = 41090, + [SMALL_STATE(1002)] = 41112, + [SMALL_STATE(1003)] = 41124, + [SMALL_STATE(1004)] = 41144, + [SMALL_STATE(1005)] = 41162, + [SMALL_STATE(1006)] = 41182, + [SMALL_STATE(1007)] = 41202, + [SMALL_STATE(1008)] = 41214, + [SMALL_STATE(1009)] = 41226, + [SMALL_STATE(1010)] = 41243, + [SMALL_STATE(1011)] = 41258, + [SMALL_STATE(1012)] = 41277, + [SMALL_STATE(1013)] = 41288, + [SMALL_STATE(1014)] = 41299, + [SMALL_STATE(1015)] = 41318, + [SMALL_STATE(1016)] = 41329, + [SMALL_STATE(1017)] = 41340, + [SMALL_STATE(1018)] = 41351, + [SMALL_STATE(1019)] = 41370, + [SMALL_STATE(1020)] = 41389, + [SMALL_STATE(1021)] = 41406, + [SMALL_STATE(1022)] = 41421, + [SMALL_STATE(1023)] = 41432, + [SMALL_STATE(1024)] = 41443, + [SMALL_STATE(1025)] = 41454, + [SMALL_STATE(1026)] = 41469, + [SMALL_STATE(1027)] = 41488, + [SMALL_STATE(1028)] = 41507, + [SMALL_STATE(1029)] = 41526, + [SMALL_STATE(1030)] = 41543, + [SMALL_STATE(1031)] = 41554, + [SMALL_STATE(1032)] = 41565, + [SMALL_STATE(1033)] = 41576, + [SMALL_STATE(1034)] = 41593, + [SMALL_STATE(1035)] = 41604, + [SMALL_STATE(1036)] = 41619, + [SMALL_STATE(1037)] = 41638, + [SMALL_STATE(1038)] = 41653, + [SMALL_STATE(1039)] = 41672, + [SMALL_STATE(1040)] = 41691, + [SMALL_STATE(1041)] = 41702, + [SMALL_STATE(1042)] = 41719, + [SMALL_STATE(1043)] = 41734, + [SMALL_STATE(1044)] = 41745, + [SMALL_STATE(1045)] = 41756, + [SMALL_STATE(1046)] = 41771, + [SMALL_STATE(1047)] = 41782, + [SMALL_STATE(1048)] = 41799, + [SMALL_STATE(1049)] = 41818, + [SMALL_STATE(1050)] = 41835, + [SMALL_STATE(1051)] = 41852, + [SMALL_STATE(1052)] = 41869, + [SMALL_STATE(1053)] = 41880, + [SMALL_STATE(1054)] = 41897, + [SMALL_STATE(1055)] = 41916, + [SMALL_STATE(1056)] = 41927, + [SMALL_STATE(1057)] = 41946, + [SMALL_STATE(1058)] = 41963, + [SMALL_STATE(1059)] = 41974, + [SMALL_STATE(1060)] = 41993, + [SMALL_STATE(1061)] = 42012, + [SMALL_STATE(1062)] = 42028, + [SMALL_STATE(1063)] = 42044, + [SMALL_STATE(1064)] = 42056, + [SMALL_STATE(1065)] = 42072, + [SMALL_STATE(1066)] = 42088, + [SMALL_STATE(1067)] = 42104, + [SMALL_STATE(1068)] = 42120, + [SMALL_STATE(1069)] = 42136, + [SMALL_STATE(1070)] = 42150, + [SMALL_STATE(1071)] = 42166, + [SMALL_STATE(1072)] = 42182, + [SMALL_STATE(1073)] = 42198, + [SMALL_STATE(1074)] = 42210, + [SMALL_STATE(1075)] = 42226, + [SMALL_STATE(1076)] = 42240, + [SMALL_STATE(1077)] = 42256, + [SMALL_STATE(1078)] = 42272, + [SMALL_STATE(1079)] = 42288, + [SMALL_STATE(1080)] = 42304, + [SMALL_STATE(1081)] = 42318, + [SMALL_STATE(1082)] = 42334, + [SMALL_STATE(1083)] = 42350, + [SMALL_STATE(1084)] = 42366, + [SMALL_STATE(1085)] = 42382, + [SMALL_STATE(1086)] = 42398, + [SMALL_STATE(1087)] = 42412, + [SMALL_STATE(1088)] = 42428, + [SMALL_STATE(1089)] = 42444, + [SMALL_STATE(1090)] = 42460, + [SMALL_STATE(1091)] = 42476, + [SMALL_STATE(1092)] = 42492, + [SMALL_STATE(1093)] = 42508, + [SMALL_STATE(1094)] = 42524, + [SMALL_STATE(1095)] = 42540, + [SMALL_STATE(1096)] = 42556, + [SMALL_STATE(1097)] = 42572, + [SMALL_STATE(1098)] = 42588, + [SMALL_STATE(1099)] = 42604, + [SMALL_STATE(1100)] = 42620, + [SMALL_STATE(1101)] = 42636, + [SMALL_STATE(1102)] = 42652, + [SMALL_STATE(1103)] = 42668, + [SMALL_STATE(1104)] = 42684, + [SMALL_STATE(1105)] = 42700, + [SMALL_STATE(1106)] = 42716, + [SMALL_STATE(1107)] = 42732, + [SMALL_STATE(1108)] = 42748, + [SMALL_STATE(1109)] = 42764, + [SMALL_STATE(1110)] = 42780, + [SMALL_STATE(1111)] = 42796, + [SMALL_STATE(1112)] = 42812, + [SMALL_STATE(1113)] = 42826, + [SMALL_STATE(1114)] = 42842, + [SMALL_STATE(1115)] = 42856, + [SMALL_STATE(1116)] = 42872, + [SMALL_STATE(1117)] = 42888, + [SMALL_STATE(1118)] = 42902, + [SMALL_STATE(1119)] = 42916, + [SMALL_STATE(1120)] = 42930, + [SMALL_STATE(1121)] = 42944, + [SMALL_STATE(1122)] = 42958, + [SMALL_STATE(1123)] = 42972, + [SMALL_STATE(1124)] = 42988, + [SMALL_STATE(1125)] = 43004, + [SMALL_STATE(1126)] = 43018, + [SMALL_STATE(1127)] = 43034, + [SMALL_STATE(1128)] = 43046, + [SMALL_STATE(1129)] = 43062, + [SMALL_STATE(1130)] = 43078, + [SMALL_STATE(1131)] = 43094, + [SMALL_STATE(1132)] = 43110, + [SMALL_STATE(1133)] = 43126, + [SMALL_STATE(1134)] = 43142, + [SMALL_STATE(1135)] = 43158, + [SMALL_STATE(1136)] = 43174, + [SMALL_STATE(1137)] = 43190, + [SMALL_STATE(1138)] = 43206, + [SMALL_STATE(1139)] = 43220, + [SMALL_STATE(1140)] = 43236, + [SMALL_STATE(1141)] = 43252, + [SMALL_STATE(1142)] = 43268, + [SMALL_STATE(1143)] = 43284, + [SMALL_STATE(1144)] = 43300, + [SMALL_STATE(1145)] = 43314, + [SMALL_STATE(1146)] = 43330, + [SMALL_STATE(1147)] = 43346, + [SMALL_STATE(1148)] = 43360, + [SMALL_STATE(1149)] = 43372, + [SMALL_STATE(1150)] = 43388, + [SMALL_STATE(1151)] = 43402, + [SMALL_STATE(1152)] = 43418, + [SMALL_STATE(1153)] = 43432, + [SMALL_STATE(1154)] = 43444, + [SMALL_STATE(1155)] = 43460, + [SMALL_STATE(1156)] = 43476, + [SMALL_STATE(1157)] = 43492, + [SMALL_STATE(1158)] = 43504, + [SMALL_STATE(1159)] = 43520, + [SMALL_STATE(1160)] = 43533, + [SMALL_STATE(1161)] = 43542, + [SMALL_STATE(1162)] = 43553, + [SMALL_STATE(1163)] = 43564, + [SMALL_STATE(1164)] = 43577, + [SMALL_STATE(1165)] = 43586, + [SMALL_STATE(1166)] = 43599, + [SMALL_STATE(1167)] = 43612, + [SMALL_STATE(1168)] = 43625, + [SMALL_STATE(1169)] = 43638, + [SMALL_STATE(1170)] = 43651, + [SMALL_STATE(1171)] = 43660, + [SMALL_STATE(1172)] = 43669, + [SMALL_STATE(1173)] = 43682, + [SMALL_STATE(1174)] = 43695, + [SMALL_STATE(1175)] = 43704, + [SMALL_STATE(1176)] = 43713, + [SMALL_STATE(1177)] = 43724, + [SMALL_STATE(1178)] = 43733, + [SMALL_STATE(1179)] = 43742, + [SMALL_STATE(1180)] = 43751, + [SMALL_STATE(1181)] = 43760, + [SMALL_STATE(1182)] = 43769, + [SMALL_STATE(1183)] = 43778, + [SMALL_STATE(1184)] = 43791, + [SMALL_STATE(1185)] = 43802, + [SMALL_STATE(1186)] = 43811, + [SMALL_STATE(1187)] = 43820, + [SMALL_STATE(1188)] = 43833, + [SMALL_STATE(1189)] = 43844, + [SMALL_STATE(1190)] = 43853, + [SMALL_STATE(1191)] = 43866, + [SMALL_STATE(1192)] = 43879, + [SMALL_STATE(1193)] = 43892, + [SMALL_STATE(1194)] = 43901, + [SMALL_STATE(1195)] = 43914, + [SMALL_STATE(1196)] = 43925, + [SMALL_STATE(1197)] = 43938, + [SMALL_STATE(1198)] = 43947, + [SMALL_STATE(1199)] = 43956, + [SMALL_STATE(1200)] = 43967, + [SMALL_STATE(1201)] = 43978, + [SMALL_STATE(1202)] = 43991, + [SMALL_STATE(1203)] = 44002, + [SMALL_STATE(1204)] = 44015, + [SMALL_STATE(1205)] = 44028, + [SMALL_STATE(1206)] = 44037, + [SMALL_STATE(1207)] = 44050, + [SMALL_STATE(1208)] = 44063, + [SMALL_STATE(1209)] = 44076, + [SMALL_STATE(1210)] = 44089, + [SMALL_STATE(1211)] = 44098, + [SMALL_STATE(1212)] = 44107, + [SMALL_STATE(1213)] = 44120, + [SMALL_STATE(1214)] = 44129, + [SMALL_STATE(1215)] = 44140, + [SMALL_STATE(1216)] = 44153, + [SMALL_STATE(1217)] = 44162, + [SMALL_STATE(1218)] = 44175, + [SMALL_STATE(1219)] = 44188, + [SMALL_STATE(1220)] = 44201, + [SMALL_STATE(1221)] = 44214, + [SMALL_STATE(1222)] = 44223, + [SMALL_STATE(1223)] = 44236, + [SMALL_STATE(1224)] = 44247, + [SMALL_STATE(1225)] = 44258, + [SMALL_STATE(1226)] = 44271, + [SMALL_STATE(1227)] = 44284, + [SMALL_STATE(1228)] = 44297, + [SMALL_STATE(1229)] = 44310, + [SMALL_STATE(1230)] = 44323, + [SMALL_STATE(1231)] = 44336, + [SMALL_STATE(1232)] = 44349, + [SMALL_STATE(1233)] = 44362, + [SMALL_STATE(1234)] = 44375, + [SMALL_STATE(1235)] = 44388, + [SMALL_STATE(1236)] = 44399, + [SMALL_STATE(1237)] = 44412, + [SMALL_STATE(1238)] = 44425, + [SMALL_STATE(1239)] = 44438, + [SMALL_STATE(1240)] = 44451, + [SMALL_STATE(1241)] = 44464, + [SMALL_STATE(1242)] = 44477, + [SMALL_STATE(1243)] = 44490, + [SMALL_STATE(1244)] = 44503, + [SMALL_STATE(1245)] = 44516, + [SMALL_STATE(1246)] = 44529, + [SMALL_STATE(1247)] = 44538, + [SMALL_STATE(1248)] = 44551, + [SMALL_STATE(1249)] = 44564, + [SMALL_STATE(1250)] = 44577, + [SMALL_STATE(1251)] = 44588, + [SMALL_STATE(1252)] = 44601, + [SMALL_STATE(1253)] = 44610, + [SMALL_STATE(1254)] = 44619, + [SMALL_STATE(1255)] = 44632, + [SMALL_STATE(1256)] = 44645, + [SMALL_STATE(1257)] = 44656, + [SMALL_STATE(1258)] = 44669, + [SMALL_STATE(1259)] = 44678, + [SMALL_STATE(1260)] = 44687, + [SMALL_STATE(1261)] = 44700, + [SMALL_STATE(1262)] = 44709, + [SMALL_STATE(1263)] = 44722, + [SMALL_STATE(1264)] = 44735, + [SMALL_STATE(1265)] = 44748, + [SMALL_STATE(1266)] = 44761, + [SMALL_STATE(1267)] = 44774, + [SMALL_STATE(1268)] = 44785, + [SMALL_STATE(1269)] = 44798, + [SMALL_STATE(1270)] = 44811, + [SMALL_STATE(1271)] = 44824, + [SMALL_STATE(1272)] = 44833, + [SMALL_STATE(1273)] = 44846, + [SMALL_STATE(1274)] = 44859, + [SMALL_STATE(1275)] = 44872, + [SMALL_STATE(1276)] = 44881, + [SMALL_STATE(1277)] = 44890, + [SMALL_STATE(1278)] = 44901, + [SMALL_STATE(1279)] = 44912, + [SMALL_STATE(1280)] = 44921, + [SMALL_STATE(1281)] = 44934, + [SMALL_STATE(1282)] = 44947, + [SMALL_STATE(1283)] = 44960, + [SMALL_STATE(1284)] = 44969, + [SMALL_STATE(1285)] = 44978, + [SMALL_STATE(1286)] = 44987, + [SMALL_STATE(1287)] = 44996, + [SMALL_STATE(1288)] = 45005, + [SMALL_STATE(1289)] = 45018, + [SMALL_STATE(1290)] = 45031, + [SMALL_STATE(1291)] = 45044, + [SMALL_STATE(1292)] = 45057, + [SMALL_STATE(1293)] = 45066, + [SMALL_STATE(1294)] = 45075, + [SMALL_STATE(1295)] = 45088, + [SMALL_STATE(1296)] = 45101, + [SMALL_STATE(1297)] = 45114, + [SMALL_STATE(1298)] = 45127, + [SMALL_STATE(1299)] = 45140, + [SMALL_STATE(1300)] = 45153, + [SMALL_STATE(1301)] = 45166, + [SMALL_STATE(1302)] = 45179, + [SMALL_STATE(1303)] = 45192, + [SMALL_STATE(1304)] = 45201, + [SMALL_STATE(1305)] = 45214, + [SMALL_STATE(1306)] = 45227, + [SMALL_STATE(1307)] = 45240, + [SMALL_STATE(1308)] = 45249, + [SMALL_STATE(1309)] = 45262, + [SMALL_STATE(1310)] = 45275, + [SMALL_STATE(1311)] = 45288, + [SMALL_STATE(1312)] = 45297, + [SMALL_STATE(1313)] = 45310, + [SMALL_STATE(1314)] = 45323, + [SMALL_STATE(1315)] = 45336, + [SMALL_STATE(1316)] = 45349, + [SMALL_STATE(1317)] = 45362, + [SMALL_STATE(1318)] = 45375, + [SMALL_STATE(1319)] = 45388, + [SMALL_STATE(1320)] = 45401, + [SMALL_STATE(1321)] = 45414, + [SMALL_STATE(1322)] = 45427, + [SMALL_STATE(1323)] = 45440, + [SMALL_STATE(1324)] = 45449, + [SMALL_STATE(1325)] = 45462, + [SMALL_STATE(1326)] = 45475, + [SMALL_STATE(1327)] = 45488, + [SMALL_STATE(1328)] = 45501, + [SMALL_STATE(1329)] = 45514, + [SMALL_STATE(1330)] = 45527, + [SMALL_STATE(1331)] = 45540, + [SMALL_STATE(1332)] = 45553, + [SMALL_STATE(1333)] = 45564, + [SMALL_STATE(1334)] = 45577, + [SMALL_STATE(1335)] = 45586, + [SMALL_STATE(1336)] = 45599, + [SMALL_STATE(1337)] = 45612, + [SMALL_STATE(1338)] = 45625, + [SMALL_STATE(1339)] = 45638, + [SMALL_STATE(1340)] = 45651, + [SMALL_STATE(1341)] = 45660, + [SMALL_STATE(1342)] = 45669, + [SMALL_STATE(1343)] = 45682, + [SMALL_STATE(1344)] = 45695, + [SMALL_STATE(1345)] = 45704, + [SMALL_STATE(1346)] = 45717, + [SMALL_STATE(1347)] = 45730, + [SMALL_STATE(1348)] = 45743, + [SMALL_STATE(1349)] = 45754, + [SMALL_STATE(1350)] = 45767, + [SMALL_STATE(1351)] = 45780, + [SMALL_STATE(1352)] = 45790, + [SMALL_STATE(1353)] = 45798, + [SMALL_STATE(1354)] = 45808, + [SMALL_STATE(1355)] = 45818, + [SMALL_STATE(1356)] = 45828, + [SMALL_STATE(1357)] = 45838, + [SMALL_STATE(1358)] = 45848, + [SMALL_STATE(1359)] = 45858, + [SMALL_STATE(1360)] = 45866, + [SMALL_STATE(1361)] = 45876, + [SMALL_STATE(1362)] = 45886, + [SMALL_STATE(1363)] = 45896, + [SMALL_STATE(1364)] = 45906, + [SMALL_STATE(1365)] = 45914, + [SMALL_STATE(1366)] = 45924, + [SMALL_STATE(1367)] = 45934, + [SMALL_STATE(1368)] = 45942, + [SMALL_STATE(1369)] = 45952, + [SMALL_STATE(1370)] = 45960, + [SMALL_STATE(1371)] = 45970, + [SMALL_STATE(1372)] = 45978, + [SMALL_STATE(1373)] = 45986, + [SMALL_STATE(1374)] = 45994, + [SMALL_STATE(1375)] = 46002, + [SMALL_STATE(1376)] = 46012, + [SMALL_STATE(1377)] = 46022, + [SMALL_STATE(1378)] = 46030, + [SMALL_STATE(1379)] = 46040, + [SMALL_STATE(1380)] = 46048, + [SMALL_STATE(1381)] = 46056, + [SMALL_STATE(1382)] = 46066, + [SMALL_STATE(1383)] = 46076, + [SMALL_STATE(1384)] = 46084, + [SMALL_STATE(1385)] = 46094, + [SMALL_STATE(1386)] = 46104, + [SMALL_STATE(1387)] = 46114, + [SMALL_STATE(1388)] = 46122, + [SMALL_STATE(1389)] = 46132, + [SMALL_STATE(1390)] = 46140, + [SMALL_STATE(1391)] = 46150, + [SMALL_STATE(1392)] = 46158, + [SMALL_STATE(1393)] = 46166, + [SMALL_STATE(1394)] = 46174, + [SMALL_STATE(1395)] = 46182, + [SMALL_STATE(1396)] = 46190, + [SMALL_STATE(1397)] = 46200, + [SMALL_STATE(1398)] = 46208, + [SMALL_STATE(1399)] = 46218, + [SMALL_STATE(1400)] = 46226, + [SMALL_STATE(1401)] = 46234, + [SMALL_STATE(1402)] = 46244, + [SMALL_STATE(1403)] = 46252, + [SMALL_STATE(1404)] = 46262, + [SMALL_STATE(1405)] = 46272, + [SMALL_STATE(1406)] = 46280, + [SMALL_STATE(1407)] = 46290, + [SMALL_STATE(1408)] = 46298, + [SMALL_STATE(1409)] = 46306, + [SMALL_STATE(1410)] = 46316, + [SMALL_STATE(1411)] = 46326, + [SMALL_STATE(1412)] = 46334, + [SMALL_STATE(1413)] = 46344, + [SMALL_STATE(1414)] = 46352, + [SMALL_STATE(1415)] = 46362, + [SMALL_STATE(1416)] = 46372, + [SMALL_STATE(1417)] = 46382, + [SMALL_STATE(1418)] = 46390, + [SMALL_STATE(1419)] = 46398, + [SMALL_STATE(1420)] = 46408, + [SMALL_STATE(1421)] = 46418, + [SMALL_STATE(1422)] = 46428, + [SMALL_STATE(1423)] = 46438, + [SMALL_STATE(1424)] = 46448, + [SMALL_STATE(1425)] = 46456, + [SMALL_STATE(1426)] = 46464, + [SMALL_STATE(1427)] = 46474, + [SMALL_STATE(1428)] = 46484, + [SMALL_STATE(1429)] = 46494, + [SMALL_STATE(1430)] = 46504, + [SMALL_STATE(1431)] = 46514, + [SMALL_STATE(1432)] = 46524, + [SMALL_STATE(1433)] = 46534, + [SMALL_STATE(1434)] = 46544, + [SMALL_STATE(1435)] = 46554, + [SMALL_STATE(1436)] = 46564, + [SMALL_STATE(1437)] = 46574, + [SMALL_STATE(1438)] = 46582, + [SMALL_STATE(1439)] = 46592, + [SMALL_STATE(1440)] = 46602, + [SMALL_STATE(1441)] = 46612, + [SMALL_STATE(1442)] = 46622, + [SMALL_STATE(1443)] = 46632, + [SMALL_STATE(1444)] = 46642, + [SMALL_STATE(1445)] = 46652, + [SMALL_STATE(1446)] = 46662, + [SMALL_STATE(1447)] = 46672, + [SMALL_STATE(1448)] = 46680, + [SMALL_STATE(1449)] = 46690, + [SMALL_STATE(1450)] = 46698, + [SMALL_STATE(1451)] = 46706, + [SMALL_STATE(1452)] = 46716, + [SMALL_STATE(1453)] = 46726, + [SMALL_STATE(1454)] = 46736, + [SMALL_STATE(1455)] = 46744, + [SMALL_STATE(1456)] = 46754, + [SMALL_STATE(1457)] = 46764, + [SMALL_STATE(1458)] = 46774, + [SMALL_STATE(1459)] = 46784, + [SMALL_STATE(1460)] = 46792, + [SMALL_STATE(1461)] = 46802, + [SMALL_STATE(1462)] = 46810, + [SMALL_STATE(1463)] = 46820, + [SMALL_STATE(1464)] = 46830, + [SMALL_STATE(1465)] = 46840, + [SMALL_STATE(1466)] = 46850, + [SMALL_STATE(1467)] = 46860, + [SMALL_STATE(1468)] = 46870, + [SMALL_STATE(1469)] = 46880, + [SMALL_STATE(1470)] = 46890, + [SMALL_STATE(1471)] = 46898, + [SMALL_STATE(1472)] = 46908, + [SMALL_STATE(1473)] = 46918, + [SMALL_STATE(1474)] = 46926, + [SMALL_STATE(1475)] = 46934, + [SMALL_STATE(1476)] = 46944, + [SMALL_STATE(1477)] = 46954, + [SMALL_STATE(1478)] = 46964, + [SMALL_STATE(1479)] = 46974, + [SMALL_STATE(1480)] = 46984, + [SMALL_STATE(1481)] = 46994, + [SMALL_STATE(1482)] = 47002, + [SMALL_STATE(1483)] = 47010, + [SMALL_STATE(1484)] = 47020, + [SMALL_STATE(1485)] = 47028, + [SMALL_STATE(1486)] = 47038, + [SMALL_STATE(1487)] = 47048, + [SMALL_STATE(1488)] = 47058, + [SMALL_STATE(1489)] = 47068, + [SMALL_STATE(1490)] = 47075, + [SMALL_STATE(1491)] = 47082, + [SMALL_STATE(1492)] = 47089, + [SMALL_STATE(1493)] = 47096, + [SMALL_STATE(1494)] = 47103, + [SMALL_STATE(1495)] = 47110, + [SMALL_STATE(1496)] = 47117, + [SMALL_STATE(1497)] = 47124, + [SMALL_STATE(1498)] = 47131, + [SMALL_STATE(1499)] = 47138, + [SMALL_STATE(1500)] = 47145, + [SMALL_STATE(1501)] = 47152, + [SMALL_STATE(1502)] = 47159, + [SMALL_STATE(1503)] = 47166, + [SMALL_STATE(1504)] = 47173, + [SMALL_STATE(1505)] = 47180, + [SMALL_STATE(1506)] = 47187, + [SMALL_STATE(1507)] = 47194, + [SMALL_STATE(1508)] = 47201, + [SMALL_STATE(1509)] = 47208, + [SMALL_STATE(1510)] = 47215, + [SMALL_STATE(1511)] = 47222, + [SMALL_STATE(1512)] = 47229, + [SMALL_STATE(1513)] = 47236, + [SMALL_STATE(1514)] = 47243, + [SMALL_STATE(1515)] = 47250, + [SMALL_STATE(1516)] = 47257, + [SMALL_STATE(1517)] = 47264, + [SMALL_STATE(1518)] = 47271, + [SMALL_STATE(1519)] = 47278, + [SMALL_STATE(1520)] = 47285, + [SMALL_STATE(1521)] = 47292, + [SMALL_STATE(1522)] = 47299, + [SMALL_STATE(1523)] = 47306, + [SMALL_STATE(1524)] = 47313, + [SMALL_STATE(1525)] = 47320, + [SMALL_STATE(1526)] = 47327, + [SMALL_STATE(1527)] = 47334, + [SMALL_STATE(1528)] = 47341, + [SMALL_STATE(1529)] = 47348, + [SMALL_STATE(1530)] = 47355, + [SMALL_STATE(1531)] = 47362, + [SMALL_STATE(1532)] = 47369, + [SMALL_STATE(1533)] = 47376, + [SMALL_STATE(1534)] = 47383, + [SMALL_STATE(1535)] = 47390, + [SMALL_STATE(1536)] = 47397, + [SMALL_STATE(1537)] = 47404, + [SMALL_STATE(1538)] = 47411, + [SMALL_STATE(1539)] = 47418, + [SMALL_STATE(1540)] = 47425, + [SMALL_STATE(1541)] = 47432, + [SMALL_STATE(1542)] = 47439, + [SMALL_STATE(1543)] = 47446, + [SMALL_STATE(1544)] = 47453, + [SMALL_STATE(1545)] = 47460, + [SMALL_STATE(1546)] = 47467, + [SMALL_STATE(1547)] = 47474, + [SMALL_STATE(1548)] = 47481, + [SMALL_STATE(1549)] = 47488, + [SMALL_STATE(1550)] = 47495, + [SMALL_STATE(1551)] = 47502, + [SMALL_STATE(1552)] = 47509, + [SMALL_STATE(1553)] = 47516, + [SMALL_STATE(1554)] = 47523, + [SMALL_STATE(1555)] = 47530, + [SMALL_STATE(1556)] = 47537, + [SMALL_STATE(1557)] = 47544, + [SMALL_STATE(1558)] = 47551, + [SMALL_STATE(1559)] = 47558, + [SMALL_STATE(1560)] = 47565, + [SMALL_STATE(1561)] = 47572, + [SMALL_STATE(1562)] = 47579, + [SMALL_STATE(1563)] = 47586, + [SMALL_STATE(1564)] = 47593, + [SMALL_STATE(1565)] = 47600, + [SMALL_STATE(1566)] = 47607, + [SMALL_STATE(1567)] = 47614, + [SMALL_STATE(1568)] = 47621, + [SMALL_STATE(1569)] = 47628, + [SMALL_STATE(1570)] = 47635, + [SMALL_STATE(1571)] = 47642, + [SMALL_STATE(1572)] = 47649, + [SMALL_STATE(1573)] = 47656, + [SMALL_STATE(1574)] = 47663, + [SMALL_STATE(1575)] = 47670, + [SMALL_STATE(1576)] = 47677, + [SMALL_STATE(1577)] = 47684, + [SMALL_STATE(1578)] = 47691, + [SMALL_STATE(1579)] = 47698, + [SMALL_STATE(1580)] = 47705, + [SMALL_STATE(1581)] = 47712, + [SMALL_STATE(1582)] = 47719, + [SMALL_STATE(1583)] = 47726, + [SMALL_STATE(1584)] = 47733, + [SMALL_STATE(1585)] = 47740, + [SMALL_STATE(1586)] = 47747, + [SMALL_STATE(1587)] = 47754, + [SMALL_STATE(1588)] = 47761, + [SMALL_STATE(1589)] = 47768, + [SMALL_STATE(1590)] = 47775, + [SMALL_STATE(1591)] = 47782, + [SMALL_STATE(1592)] = 47789, + [SMALL_STATE(1593)] = 47796, + [SMALL_STATE(1594)] = 47803, + [SMALL_STATE(1595)] = 47810, + [SMALL_STATE(1596)] = 47817, + [SMALL_STATE(1597)] = 47824, + [SMALL_STATE(1598)] = 47831, + [SMALL_STATE(1599)] = 47838, + [SMALL_STATE(1600)] = 47845, + [SMALL_STATE(1601)] = 47852, + [SMALL_STATE(1602)] = 47859, + [SMALL_STATE(1603)] = 47866, + [SMALL_STATE(1604)] = 47873, + [SMALL_STATE(1605)] = 47880, + [SMALL_STATE(1606)] = 47887, + [SMALL_STATE(1607)] = 47894, + [SMALL_STATE(1608)] = 47901, + [SMALL_STATE(1609)] = 47908, + [SMALL_STATE(1610)] = 47915, + [SMALL_STATE(1611)] = 47922, + [SMALL_STATE(1612)] = 47929, + [SMALL_STATE(1613)] = 47936, + [SMALL_STATE(1614)] = 47943, + [SMALL_STATE(1615)] = 47950, + [SMALL_STATE(1616)] = 47957, + [SMALL_STATE(1617)] = 47964, + [SMALL_STATE(1618)] = 47971, + [SMALL_STATE(1619)] = 47978, + [SMALL_STATE(1620)] = 47985, + [SMALL_STATE(1621)] = 47992, + [SMALL_STATE(1622)] = 47999, + [SMALL_STATE(1623)] = 48006, + [SMALL_STATE(1624)] = 48013, + [SMALL_STATE(1625)] = 48020, + [SMALL_STATE(1626)] = 48027, + [SMALL_STATE(1627)] = 48034, + [SMALL_STATE(1628)] = 48041, + [SMALL_STATE(1629)] = 48048, + [SMALL_STATE(1630)] = 48055, + [SMALL_STATE(1631)] = 48062, + [SMALL_STATE(1632)] = 48069, + [SMALL_STATE(1633)] = 48076, + [SMALL_STATE(1634)] = 48083, + [SMALL_STATE(1635)] = 48090, + [SMALL_STATE(1636)] = 48097, + [SMALL_STATE(1637)] = 48104, + [SMALL_STATE(1638)] = 48111, + [SMALL_STATE(1639)] = 48118, + [SMALL_STATE(1640)] = 48125, + [SMALL_STATE(1641)] = 48132, + [SMALL_STATE(1642)] = 48139, + [SMALL_STATE(1643)] = 48146, + [SMALL_STATE(1644)] = 48153, + [SMALL_STATE(1645)] = 48160, + [SMALL_STATE(1646)] = 48167, + [SMALL_STATE(1647)] = 48174, + [SMALL_STATE(1648)] = 48181, + [SMALL_STATE(1649)] = 48188, + [SMALL_STATE(1650)] = 48195, + [SMALL_STATE(1651)] = 48202, + [SMALL_STATE(1652)] = 48209, + [SMALL_STATE(1653)] = 48216, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -68152,1743 +69826,1760 @@ 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(10), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(388), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1351), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(408), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 39), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 39), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), SHIFT(61), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 57), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 57), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 4), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 4), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 26), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 26), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 25), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 25), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 20), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 20), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 24), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 24), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(181), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(98), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1351), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(113), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(476), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(207), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(21), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(485), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(422), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(118), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1356), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(195), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(23), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(128), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(478), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1586), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(478), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(473), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(141), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(408), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1585), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1351), - [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(408), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(495), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1629), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1512), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 99), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 99), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 76), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 76), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 86), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 86), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 3), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 3), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 60), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 60), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 61), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 61), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 58), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 58), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 59), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 59), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 59), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 59), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 62), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 62), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 4, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 4, 0, 0), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 80), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 80), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 4, 0, 58), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 4, 0, 58), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 81), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 81), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 0), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 0), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 81), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 81), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 82), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 82), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 65), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 65), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 80), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 80), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 51), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 51), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 75), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 75), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 14), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 14), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 58), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 58), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 115), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 115), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 0), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 0), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 107), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 107), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 67), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 67), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 85), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 85), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 1, 0, 0), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 1, 0, 0), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 42), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 42), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 87), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 87), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 9), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 9), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 9), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 9), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 59), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 59), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 97), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 97), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 10), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 10), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 42), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 42), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 3, 0, 0), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 3, 0, 0), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 3, 0, 38), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 3, 0, 38), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 41), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 41), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 2), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 2), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 114), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 114), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 3, 0, 0), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 3, 0, 0), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 96), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 96), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 116), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 116), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 17), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 17), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 120), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 120), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 102), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 102), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 2, 0, 0), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 2, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 103), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 103), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 2, 0, 4), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 2, 0, 4), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 3), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 3), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 9), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 9), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 3), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 3), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 104), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 104), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 113), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 113), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 41), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 41), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 42), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 42), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 41), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 41), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 6, 0, 105), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 6, 0, 105), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 121), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 121), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 76), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 76), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(355), - [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(356), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1224), - [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(962), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1163), - [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(390), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 21), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 2), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 31), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 18), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 3), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 19), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 22), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 32), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 33), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 30), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 30), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 46), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 1), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 1), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 36), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 36), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 73), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 27), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 27), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 91), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 29), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 110), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 6), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 6), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 88), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 88), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 7), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 7), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 34), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 34), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 69), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 69), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 76), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 76), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 76), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 76), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 99), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 99), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 99), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 78), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 79), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2, 0, 0), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 101), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 100), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 99), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 76), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 68), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 27), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_specifier, 1, 0, 0), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_specifier, 1, 0, 0), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 32), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 22), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 19), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 3), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 23), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), REDUCE(sym_scoped_type_identifier, 3, 0, 32), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 12), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 13), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), REDUCE(sym_scoped_type_identifier, 3, 0, 22), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), REDUCE(sym_scoped_type_identifier, 3, 0, 19), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), REDUCE(sym_scoped_type_identifier, 2, 0, 3), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 15), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 77), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snapshot_type, 2, 0, 63), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 117), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), REDUCE(sym__pattern, 1, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 83), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 50), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 50), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 52), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 52), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 50), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 50), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 48), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 48), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 50), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 50), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 52), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 50), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 52), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 48), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 48), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 50), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 47), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 72), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 122), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 119), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 118), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 92), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 94), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 111), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 109), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 11), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), - [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 84), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 66), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 84), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 66), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 93), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 84), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 84), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 66), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), REDUCE(sym__pattern, 1, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 66), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 71), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 66), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_unit_type, 2, 0, 0), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 49), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 45), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 74), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 53), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 54), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 55), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 56), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 112), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1230), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 0), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 95), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(636), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 16), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 70), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(963), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(940), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 46), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 118), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 119), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern, 1, 0, 0), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 122), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 109), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 89), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 90), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 71), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 72), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 73), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 94), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 93), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 92), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 91), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 75), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 11), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 108), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nopanic, 1, 0, 0), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 110), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 111), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 47), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 4, 0, 106), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 67), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 43), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 44), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 98), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3569] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1370), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 39), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 39), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), SHIFT(61), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 26), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 26), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 78), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 78), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 25), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 25), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 20), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 20), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 4), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 4), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 57), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 57), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 24), + [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 24), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(7), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(152), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(107), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1370), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(115), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(461), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(176), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(22), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(495), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(442), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(121), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1376), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(180), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(21), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(123), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(390), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(494), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1610), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(494), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(493), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(142), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(420), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1609), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1370), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1492), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 121), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 121), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 81), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 81), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 51), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 51), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 17), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 17), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 83), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 83), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 6, 0, 106), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 6, 0, 106), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 82), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 82), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 82), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 82), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 82), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 82), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 67), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 67), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 108), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 108), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 65), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 65), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_impl, 5, 0, 2), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_impl, 5, 0, 2), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 0), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 0), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 42), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 42), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 4, 0, 58), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 4, 0, 58), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 4, 0, 0), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 4, 0, 0), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 104), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 104), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 81), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 81), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 86), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 86), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 62), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 62), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 87), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 87), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 59), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 59), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 3), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 3), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 59), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 59), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 58), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 58), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 61), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 61), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 60), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 60), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 59), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 59), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 58), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 58), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 75), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 75), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 14), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 14), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 42), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 42), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 41), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 41), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 76), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 76), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 103), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 103), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 3, 0, 38), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 3, 0, 38), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 0), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 9), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 9), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 122), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 122), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 88), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 88), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 100), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 100), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 105), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 105), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 3), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 3), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 2, 0, 4), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 2, 0, 4), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 98), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 98), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 97), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 97), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 117), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 117), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 2), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 2), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 41), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 41), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 114), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 114), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 42), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 42), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 41), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 41), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 9), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 9), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 10), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 10), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 116), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 116), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 115), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 115), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 76), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 76), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 1, 0, 0), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 1, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 9), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 9), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 3), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 3), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1357), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1465), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1174), + [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), + [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1171), + [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1619), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 2), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 18), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 21), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 31), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 19), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 3), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 22), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 32), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 46), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 111), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 33), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 30), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 30), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 92), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 73), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 29), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 1), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 1), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 27), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 27), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 36), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 36), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 89), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 89), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 69), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 69), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1357), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 79), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 80), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 0), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 100), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 100), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 100), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 102), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 101), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 76), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 100), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2, 0, 0), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 76), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 76), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 76), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 76), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 27), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 68), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 32), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 3), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 22), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 23), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 12), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), REDUCE(sym_scoped_type_identifier, 2, 0, 3), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 13), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 15), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), REDUCE(sym_scoped_type_identifier, 3, 0, 22), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), REDUCE(sym_scoped_type_identifier, 3, 0, 32), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), REDUCE(sym__pattern, 1, 0, 0), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 77), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 118), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snapshot_type, 2, 0, 63), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 84), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 50), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 50), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 48), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 52), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 48), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 52), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 50), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 50), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 52), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 50), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 48), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 50), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 48), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 52), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 50), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 50), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 93), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 95), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 72), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 112), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 11), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 119), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 110), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 120), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 47), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 123), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), REDUCE(sym__pattern, 1, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 66), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 66), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 85), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 66), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 66), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 66), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 85), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 85), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 85), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 71), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 94), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_unit_type, 2, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 49), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 55), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 56), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 54), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 113), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 53), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 45), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(605), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 96), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(962), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [3072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(934), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 74), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [3087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 0), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 16), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 70), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 110), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 111), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 112), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 119), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 46), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern, 1, 0, 0), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 120), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 47), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 123), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 11), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nopanic, 1, 0, 0), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 95), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 94), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 93), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 92), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 75), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 109), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 67), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 4, 0, 107), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 73), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 72), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 91), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 71), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 90), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 99), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 43), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 44), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3608] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), }; #ifdef __cplusplus